From eabf9bbc5431da87315e85094be1cab40390c927 Mon Sep 17 00:00:00 2001 From: Benjamin Mah Date: Thu, 2 May 2024 14:52:27 -0400 Subject: [PATCH 01/38] Created base script to construct dataset for backout commits --- scripts/backout_data_collection.py | 199 +++++++++++++++++++++++++++++ 1 file changed, 199 insertions(+) create mode 100644 scripts/backout_data_collection.py diff --git a/scripts/backout_data_collection.py b/scripts/backout_data_collection.py new file mode 100644 index 0000000000..51e416a94d --- /dev/null +++ b/scripts/backout_data_collection.py @@ -0,0 +1,199 @@ +import sys +import logging +import json +import os +from tqdm import tqdm + +sys.path.append('../bugbug') +from bugbug import repository, db, bugzilla + +logging.basicConfig(level=logging.INFO) +logger = logging.getLogger(__name__) + +def download_commits() -> None: + """ + Download the database of all commits. + + Args: + None + + Returns: + None + """ + + logger.info("Downloading commits database...") + assert db.download(repository.COMMITS_DB, support_files_too=True) + +def download_bugs() -> None: + """ + Download the database of all bugs. + + Args: + None + + Returns: + None + """ + + logger.info("Downloading bugs database...") + assert db.download(bugzilla.BUGS_DB) + +def is_bug_fixed(bug_id: int) -> bool: + """ + Check if a bug (given its ID) is resolved. + + Args: + bug_id (int): the ID of the bug from Bugzilla + + Returns: + bool: True if the bug is RESOLVED, False otherwise + """ + + bug_details = bugzilla.get([bug_id]) + bug = bug_details.get(bug_id, {}) + + if bug.get("resolution") == 'FIXED': + return True + + return False + +def filter_commits(count_limit: int) -> None: + """ + Filters the commits based on: + 1. if it is backing out another commit + 2. if the bug is RESOLVED + Saves to a .json file in ../data/raw_backout_data.json + + Args: + count_limit (int): limit of commits that are added to the json + + Returns: + None + + """ + filtered_list = [] + counter = 0 + + pbar = tqdm(total=count_limit, desc="Filtering commits") + for commit in repository.get_commits(include_no_bug=False, include_backouts=True, include_ignored=False): + if len(commit["backsout"]) > 0 and is_bug_fixed(commit["bug_id"]): + filtered_list.append(commit) + counter += 1 + pbar.update(1) + + if counter >= count_limit: + break + + json_data = json.dumps(filtered_list, indent=4) + directory_path = 'data' + file_path = f'{directory_path}/raw_backout_data.json' + + if not os.path.exists(directory_path): + os.makedirs(directory_path) + print(f"Directory {directory_path} created") + + with open(file_path, 'w') as file: + file.write(json_data) + + logger.info(f"Data successfully saved to {file_path}") + +def preprocess_commits(): + """ + Preprocess all commit hashes to create a dictionary mapping the first + 12 characters to the entire hash. + + Args: + None + + Returns: + commit_dict (dict): dictionary of commit hashes + + """ + commit_dict = {} + for commit in repository.get_commits(include_no_bug=False, include_backouts=True, include_ignored=False): + shortened_hash = commit['node'][:12] + commit_dict[shortened_hash] = commit['node'] + return commit_dict + + +def get_full_hash(shortened_hash: str, commit_dict) -> str: + """ + Given a shortened hash of 12 characters, search in the commit_dict for the full hash and return it. + + Args: + shortened_hash (str): 12 character long shortened hash of a commit + commit_dict (dict): Dictionary of shortened hashes to full hashes + Returns: + str: full 40 character long hash of commit, or None if not found + """ + + return commit_dict.get(shortened_hash) + +def find_full_hash(source_filepath: str, destination_filepath: str, commit_dict: dict) -> None: + """ + Convert the first 12 characters of the hash in backsout (list) to the full 40 character long hash using commit_dict. + + Args: + source_filepath (str): filepath to .json file containing raw backout data + destination_filepath (str): where to save the new .json file containing the full hashesh + commit_dict (dict): dictionary mapping shortened hashes to full hashes + Returns: + None + """ + with open(source_filepath, 'r') as file: + data = json.load(file) + + for commit in data: + for index, backout_commit in enumerate(commit['backsout']): + full_hash = get_full_hash(backout_commit, commit_dict) + + if full_hash: + commit['backsout'][index] = full_hash + + with open(destination_filepath, 'w') as file: + json.dump(data, file, indent=4) + logger.info(f"Updated data has been saved to {destination_filepath}") + return data + +def clean_dataset(source_filepath: str, destination_filepath: str): + """ + Given a source filepath to a .json file containing the full hashes, remove + unnecessary fields and save to destination_filepath. + + Args: + source_filepath (str): filepath to .json file containing full hash data + destination_filepath (str): where to save new .json file containing cleaned data + Returns: + None + """ + + with open(source_filepath, 'r') as file: + data = json.load(file) + + filtered_data = [] + + fields_to_keep = ['node', 'bug_id', 'desc', 'pushdate', 'backsout'] + + for commit in data: + filtered_commit = {key: commit[key] for key in fields_to_keep if key in commit} + filtered_data.append(filtered_commit) + + with open(destination_filepath, 'w') as file: + json.dump(filtered_data, file, indent=4) + + logger.info(f"Filtered data has been saved to {destination_filepath}") + + return + +if __name__ == "__main__": + # download commits and bugs + download_commits() + download_bugs() + + # filter commits based on backout and are fixed bugs, save to .json + filter_commits(count_limit=100) + commit_dict = preprocess_commits() + find_full_hash(source_filepath="data/raw_backout_data.json", destination_filepath="data/processed_backout_data.json", commit_dict=commit_dict) + clean_dataset(source_filepath="data/processed_backout_data.json", destination_filepath="data/cleaned_backout_data.json") + + From aaf83869c50c133fab74f5e2c8144bb85de4026c Mon Sep 17 00:00:00 2001 From: Benjamin Mah Date: Thu, 2 May 2024 15:21:12 -0400 Subject: [PATCH 02/38] Created new directory to store dataset, added comments to script --- dataset/cleaned_backout_data.json | 4505 ++ dataset/processed_backout_data.json | 101119 +++++++++++++++++++++++++ dataset/raw_backout_data.json | 101119 +++++++++++++++++++++++++ scripts/backout_data_collection.py | 36 +- 4 files changed, 206771 insertions(+), 8 deletions(-) create mode 100644 dataset/cleaned_backout_data.json create mode 100644 dataset/processed_backout_data.json create mode 100644 dataset/raw_backout_data.json diff --git a/dataset/cleaned_backout_data.json b/dataset/cleaned_backout_data.json new file mode 100644 index 0000000000..3ecb1fcfad --- /dev/null +++ b/dataset/cleaned_backout_data.json @@ -0,0 +1,4505 @@ +[ + { + "node": "3a2a9e0c5c633a413efbf2db5110a978f7ebf055", + "bug_id": 439110, + "desc": "Backed out changeset f201baf7bf04 (bug 439110), was causing unit-test failures", + "pushdate": "2008-06-18 23:00:40", + "backsout": [ + "f201baf7bf047e4180a09b6106f2a8846ae572ee" + ] + }, + { + "node": "294bf662e8c0a3e3a1bc74a9dbd6d4d499c30e7f", + "bug_id": 433373, + "desc": "Backed out changeset 5bffc31ff797 (bug 433373) -- first attempt didn't handle page scaling correctly.", + "pushdate": "2008-06-24 18:54:31", + "backsout": [ + "5bffc31ff797e687688309eda37f407a3e5e82d8" + ] + }, + { + "node": "4f1b1553985c88372878dffe93a79988a4f1c8a1", + "bug_id": 363706, + "desc": "Back out 0b57ada5d4b2 due to mochitest failures on at least Windows. (Bug 363706)", + "pushdate": "2008-07-02 05:02:11", + "backsout": [ + "0b57ada5d4b243b60ac0834131c56bbadf8b935d" + ] + }, + { + "node": "487bd2c4044a093a8f1e108c7c925d1b55e85975", + "bug_id": 363706, + "desc": "Back out 0b1995eab10f due to mochitest failures on at least Windows. (Bug 363706)", + "pushdate": "2008-07-02 05:02:11", + "backsout": [ + "0b1995eab10f9e451d0060ee41819b9edfea12d5" + ] + }, + { + "node": "847ff9bffc86ff91a8da3ea1b9f5b38bc335bce0", + "bug_id": 442949, + "desc": "Backed out changeset c9b5882bf6f6 per bug 442949.\nThis changeset is only being backed out because it depends on the sqlite upgrade.", + "pushdate": "2008-07-08 14:15:34", + "backsout": [ + "c9b5882bf6f69406c24d4c8a277122b53b207dcd" + ] + }, + { + "node": "00f39bafc70ebf3fb8ee8911ad097624cf2383a0", + "bug_id": 442949, + "desc": "Backed out changeset 1d72dd9072ab for Bug 442949 (Ts regression)", + "pushdate": "2008-07-08 14:15:34", + "backsout": [ + "1d72dd9072ab4f8693258fd4221266c030793c86" + ] + }, + { + "node": "6d3ecb00edf7a48850ff6ea170af781d6339b363", + "bug_id": 442949, + "desc": "Backed out changeset e741c9c886f7 for bug 442949 (Ts regression)", + "pushdate": "2008-07-08 14:15:34", + "backsout": [ + "e741c9c886f780d08c40b9d84e65bb7f496a0203" + ] + }, + { + "node": "ad98cff74097a54fc30245d5f7747d095834e68a", + "bug_id": 443220, + "desc": "Backed out changeset 12412df591a0 (bug 443220)", + "pushdate": "2008-07-08 22:34:54", + "backsout": [ + "12412df591a0b599c76c2a19e0251a7c46a419d9" + ] + }, + { + "node": "337a43c872960010037890048fccfc08e2af8a96", + "bug_id": 374754, + "desc": "Backed out changeset 5c009a853d70 for hitting a fatal JS_Assert during xpcshell unit tests (xpcom/unit/test_bug374754.js) on the DO_NEXT_OP(JSOP_INCNAME_LENGTH) line on !JS_THREADED_INTERP platforms (Windows).", + "pushdate": "2008-07-19 04:53:17", + "backsout": [ + "5c009a853d70d952b2b2c209df33c00a02efb400" + ] + }, + { + "node": "16708f23daf5fbf23e298eeb28d7693e42ec6d34", + "bug_id": 446621, + "desc": "Backout 6831521f03ac to fix Bug 446621 - Slowdown on AutoComplete - AwesomeBar. a=beltzner", + "pushdate": "2008-07-22 15:50:07", + "backsout": [ + "6831521f03ac63ba33b6804656f78c4ea6108355" + ] + }, + { + "node": "cab5a570f46e10259bcd9152bcd3fab535a35e5c", + "bug_id": 432599, + "desc": "Backout changesets d811aa4cf0cf and 96ca77c43cb9 from bug 432599", + "pushdate": "2008-07-29 23:05:50", + "backsout": [ + "d811aa4cf0cf2c0c23fb423ed23a452bd4f94cf0", + "96ca77c43cb9addf18588d138e910a5d201a1111" + ] + }, + { + "node": "3bd5b0f13df3cce01677022941d92e14747eca78", + "bug_id": 449422, + "desc": "Backed out changeset 7362e63c648e (relanding bug 449422)", + "pushdate": "2008-08-14 04:20:03", + "backsout": [ + "7362e63c648e" + ] + }, + { + "node": "93a88a69a3df3d36b4b4c28126cd38ebd04026b4", + "bug_id": 449168, + "desc": "Backed out changeset 4b2c67fe7e6b (relanding bug 449168)", + "pushdate": "2008-08-14 04:51:30", + "backsout": [ + "4b2c67fe7e6b" + ] + }, + { + "node": "afeaf72a5266b81ccdc006fe1d923aea93f88811", + "bug_id": 121341, + "desc": "Backed out changeset db55605b2a4c (relanding bug 121341)", + "pushdate": "2008-08-14 05:00:00", + "backsout": [ + "db55605b2a4c" + ] + }, + { + "node": "573c5b6e8ec057ba45cc91e88b5ec74403fda2c8", + "bug_id": 31290, + "desc": "Backed out changeset e92e18d52d71 due to the following test failures on Windows:\n*** 31290 ERROR TEST-UNEXPECTED-FAIL | /tests/dom/tests/mochitest/general/test_offsets.xul | svgbase bounding rect width - got 45, expected 0\n*** 31291 ERROR TEST-UNEXPECTED-FAIL | /tests/dom/tests/mochitest/general/test_offsets.xul | svgbase bounding rect height - got 20, expected 0\n*** 31292 ERROR TEST-UNEXPECTED-FAIL | /tests/dom/tests/mochitest/general/test_offsets.xul | svgbase bounding rect right - got 45, expected 0\n*** 31293 ERROR TEST-UNEXPECTED-FAIL | /tests/dom/tests/mochitest/general/test_offsets.xul | svgbase bounding rect bottom - got 20, expected 0\n*** 31306 ERROR TEST-UNEXPECTED-FAIL | /tests/dom/tests/mochitest/general/test_offsets.xul | svgrect bounding rect width - got 45, expected 0\n*** 31307 ERROR TEST-UNEXPECTED-FAIL | /tests/dom/tests/mochitest/general/test_offsets.xul | svgrect bounding rect height - got 20, expected 0\n*** 31308 ERROR TEST-UNEXPECTED-FAIL | /tests/dom/tests/mochitest/general/test_offsets.xul | svgrect bounding rect right - got 45, expected 0\n*** 31309 ERROR TEST-UNEXPECTED-FAIL | /tests/dom/tests/mochitest/general/test_offsets.xul | svgrect bounding rect bottom - got 20, expected 0", + "pushdate": "2008-08-19 16:22:27", + "backsout": [ + "e92e18d52d714ded67f557aed34aed09e1883f0e" + ] + }, + { + "node": "2c020a9f03c14446c2b28966511240cc2883bcc5", + "bug_id": 430061, + "desc": "Backed out changeset e63a23edb90c due to Rlk regression (bug 430061).", + "pushdate": "2008-08-19 21:43:06", + "backsout": [ + "e63a23edb90c92f0cd591e0507906f14978a1f4f" + ] + }, + { + "node": "c82226c56072c7c85c7d9e614fa1c84b65d42592", + "bug_id": 261074, + "desc": "Backed out changeset c0f5a0af84dd to try to fix windows orange (Bug 261074).", + "pushdate": "2008-08-19 22:46:59", + "backsout": [ + "c0f5a0af84dd0fe9602953dcfa00d088716fde4a" + ] + }, + { + "node": "aa14280d31fb3486a3371581ae6a04461738d1eb", + "bug_id": 356295, + "desc": "Backed out changeset 30d900751ca9 to fix unit test orange (Bug 356295)", + "pushdate": "2008-08-20 00:57:00", + "backsout": [ + "30d900751ca93a98ccc4fca46179e44d4d900935" + ] + }, + { + "node": "695ba8eac3dc1e4a5206ff29f25a36267bc2d3e0", + "bug_id": 442812, + "desc": "Backed out changeset 1e3d4775197a (bug 442812)", + "pushdate": "2008-08-20 05:59:47", + "backsout": [ + "1e3d4775197af65a4f9bcebf2280ad0d710b722a" + ] + }, + { + "node": "f65e7540fe97621babc413d15060df2cb3d86e81", + "bug_id": 442806, + "desc": "Backed out changeset ea551e6f0f40 (bug 442806)", + "pushdate": "2008-08-20 05:59:47", + "backsout": [ + "ea551e6f0f409d0afd550d69cfbdd8a8d816c336" + ] + }, + { + "node": "2053bab906dc548240c7d3e279af04ffcac48843", + "bug_id": 442803, + "desc": "Backed out changeset bbaf0d5fef61 (bug 442803)", + "pushdate": "2008-08-20 05:59:47", + "backsout": [ + "bbaf0d5fef61d03cb6fbb41f334eeccb6e48599f" + ] + }, + { + "node": "a9d2103187b145aec59e893a66ef3eec6efec569", + "bug_id": 436531, + "desc": "Backed out changeset 2e3d61018e3d (Bug 436531)", + "pushdate": "2008-08-20 07:43:30", + "backsout": [ + "2e3d61018e3d21e3fd7cd178f0636a68cdc25fd0" + ] + }, + { + "node": "e2f89ccef0e4b9e4f7cd72206a148692472b38dc", + "bug_id": 418051, + "desc": "Backed out changeset af00b3f27c64 (Bug 418051)", + "pushdate": "2008-08-20 08:16:26", + "backsout": [ + "af00b3f27c646294873083d5e319b109810318ee" + ] + }, + { + "node": "ada680794b55d8ff552d5c3d73811725fef56e08", + "bug_id": 419562, + "desc": "Backed out changeset 1c69f587516b (Bug 419562)", + "pushdate": "2008-08-20 09:43:02", + "backsout": [ + "1c69f587516be67e1adae3f7a2b913d13e9fb958" + ] + }, + { + "node": "cafe838a9b87c8a80a674a2aa3acb890d2d4d37c", + "bug_id": 367052, + "desc": "Backed out changeset f468ae1633d4 (bug 367052)", + "pushdate": "2008-08-20 10:48:44", + "backsout": [ + "f468ae1633d421c84960427ce3550176449b7832" + ] + }, + { + "node": "da0fa455f1af06307d92b7a5a953a3d24b2641da", + "bug_id": 446529, + "desc": "Backed out changeset d55aac0ec553, bug 446529 - Disable discretionary ligatures on Mac, due to reftest failures on mac\n\nREFTEST TEST-UNEXPECTED-FAIL | file:///builds/slave/trunk_darwin_mini01/build/layout/reftests/text/wordwrap-01.html |\nREFTEST TEST-UNEXPECTED-FAIL | file:///builds/slave/trunk_darwin_mini01/build/layout/reftests/text/wordwrap-03.html |", + "pushdate": "2008-08-20 14:44:22", + "backsout": [ + "d55aac0ec553a9c93c1e3a33c867a98f1fc23b39" + ] + }, + { + "node": "e376bc87ac4ac55653d08eae143ceeff73f0c2bf", + "bug_id": 442806, + "desc": "Backed out changeset ebafb9df6ce0 (bug 442806)", + "pushdate": "2008-08-25 06:12:07", + "backsout": [ + "ebafb9df6ce0aaf17bb68508ceded54ce15114c1" + ] + }, + { + "node": "5e208ee3e1cc379390bf83d2acd5aa2d2d28a40c", + "bug_id": 449027, + "desc": "Backed out changeset 47db77d641d4 from bug 449027", + "pushdate": "2008-08-28 09:58:46", + "backsout": [ + "47db77d641d43037314e0993cf18d6e41b1548d6" + ] + }, + { + "node": "f1bb365372c6d7f74e199deea15cc6c632c5d180", + "bug_id": 422792, + "desc": "Backed out changeset 6b496b906af4, bug 422792", + "pushdate": "2008-08-29 20:37:43", + "backsout": [ + "6b496b906af4fedb878b3e9d5c47347d0444bae3" + ] + }, + { + "node": "62e63419dfb3f79ca8825b93434e34ab626a3efd", + "bug_id": 454186, + "desc": "Backed out changeset 18b48ea2b188\nto fix Bug 454186\nSM crashes when try to download file [@ nsString::ToInteger - nsTreeBodyFrame::PaintProgressMeter]", + "pushdate": "2008-09-08 13:47:42", + "backsout": [ + "18b48ea2b18863bf780186313d185f1b30bf3646" + ] + }, + { + "node": "4b5063537a0f9c4a6dfeafe5bffcd4db54c82d08", + "bug_id": 454186, + "desc": "Backed out changeset 54215f2cbc66\nto fix Bug 454186\nSM crashes when try to download file [@ nsString::ToInteger - nsTreeBodyFrame::PaintProgressMeter]", + "pushdate": "2008-09-08 13:47:42", + "backsout": [ + "54215f2cbc66b64699a179a76ee3d553d3104192" + ] + }, + { + "node": "713e17a251656ca02e552f7131ae0aa3e547b384", + "bug_id": 454896, + "desc": "Backed out changeset 38140c8a8327 to see if it fixes Bug 454896 (sporadic RLk)", + "pushdate": "2008-09-12 01:03:43", + "backsout": [ + "38140c8a8327cd44bffab609c00a732d7de8085b" + ] + }, + { + "node": "9d9569916616f85f22b692a02041af3026eb43de", + "bug_id": 451918, + "desc": "Backed out changeset 6772511dc81a (bug 451918) to see if it fixes broken linux leak stats (bug 455095)", + "pushdate": "2008-09-12 23:57:52", + "backsout": [ + "6772511dc81a32de19fcf3c71f89b9a18ad49e28" + ] + }, + { + "node": "d793ccba25a5557255063ef27f3a3ab373cac258", + "bug_id": 444864, + "desc": "Backed out changeset f82532e1b6b5 due to reftest failures (b=444864,444260,449111)", + "pushdate": "2008-09-15 17:33:09", + "backsout": [ + "f82532e1b6b5d31661a0f07c1d1d28350b85dda2" + ] + }, + { + "node": "0879f08590a9fe2a8b207ce82135408d878310cf", + "bug_id": 325842, + "desc": "Back out changeset 493bbc89ca54 / Bug 325842", + "pushdate": "2008-09-18 11:10:27", + "backsout": [ + "493bbc89ca54a6e6dd1d8a7b2142e51adf350d9e" + ] + }, + { + "node": "406532c41fca52eb8570b727f8e8a5a614e5e84c", + "bug_id": 455836, + "desc": "Backed out changeset b3783fc5a9c9 (bug 455836) - TREE IS CLOSED!", + "pushdate": "2008-09-18 14:54:30", + "backsout": [ + "b3783fc5a9c9a8d2a4553d895bbda08cdb4d8bc0" + ] + }, + { + "node": "118ab5caf67dcf39de83014ca5e95b1a8cd62bdb", + "bug_id": 455791, + "desc": "backout f51aad9e6a88 due to intermittent talos ts failures b=455791", + "pushdate": "2008-09-19 03:04:07", + "backsout": [ + "f51aad9e6a88703c2d22f8fd525ecea06c96ab34" + ] + }, + { + "node": "7aac9d9d651b0610c41d22707111c54271e625ff", + "bug_id": 455403, + "desc": "Backed out changeset aab6b12f4a2b (Bug 455403) due to reftest failures from landing patches in the wrong order, and unexplained reftest hangs.", + "pushdate": "2008-09-19 23:05:30", + "backsout": [ + "aab6b12f4a2b3108f273db2b8fac226c2f0a983d" + ] + }, + { + "node": "783541270c298725bcc433342ad12069551148fa", + "bug_id": 452899, + "desc": "Backed out changeset fa8fbd81159d\nBug 452899 - Don't explicitly create the statement wrapper - storage does it for us; r=(dolske + sdwilsh)\nto try to fix leak", + "pushdate": "2008-09-20 17:43:00", + "backsout": [ + "fa8fbd81159d415304e12c3273f040416f4e7fd5" + ] + }, + { + "node": "01d095208bdfd2fb3a09b91b5055f02dae58f02a", + "bug_id": 403174, + "desc": "Backed out changeset 84bbd1f88fac (bug 403174)", + "pushdate": "2008-09-22 08:24:43", + "backsout": [ + "84bbd1f88fac83254a04effe3f78803097c98d2c" + ] + }, + { + "node": "2f9f1ea54be78fe8fe754bfbc235d7a369f730cf", + "bug_id": 453388, + "desc": "Backed out changeset e2614011f194 - Bug 453388 - the better solution is to allow static objects and link libjs.so with g++ so that _init and _fini run static constructors/destructors correctly backout r=crowder", + "pushdate": "2008-09-23 07:43:09", + "backsout": [ + "e2614011f194b8d65b4cc912356372624ef69209" + ] + }, + { + "node": "71d860a3a3006a0ea8b2d3dedfcec3810c64928c", + "bug_id": 453388, + "desc": "Backed out changeset fc4a8cc07c9f - bustage fix from the first patch for bug 453388 which is also being backed out", + "pushdate": "2008-09-23 07:43:09", + "backsout": [ + "fc4a8cc07c9f" + ] + }, + { + "node": "6e6ac7a9540d42b871819923f441fd6d057e7718", + "bug_id": 455813, + "desc": "Backed out changeset 9841b5e5cf10\nBug 455813 - Windows PGO builds fail when --disable-tests is set; r=ted.mielczarek", + "pushdate": "2008-09-24 05:18:25", + "backsout": [ + "9841b5e5cf10b3c329906cd5293938143c8c19b7" + ] + }, + { + "node": "04a7c91e0f31b21d076ac52037ad6313dbefe0bd", + "bug_id": 454781, + "desc": "Backed out changeset fa432b23baa5. (Backing out bug 454781 to investigate mochitest leaks)", + "pushdate": "2008-09-25 00:19:08", + "backsout": [ + "fa432b23baa573eb0798e7507510f9cac6983739" + ] + }, + { + "node": "c2efb31d59857d6d3f8458080d44dbad60f4f135", + "bug_id": 385263, + "desc": "backout 23e255271851 b=385263", + "pushdate": "2008-09-26 08:01:41", + "backsout": [ + "23e255271851120a69110eea09f9f95aa3d4040f" + ] + }, + { + "node": "f523d647bc5d8392a3bc2c312820694cc0f87291", + "bug_id": 417037, + "desc": "Backed out changeset b2d48e54c537 (bug 417037)\nWe have to backout bug 449443 because we have to backout bug 456910 because of\na Tp regression, which means we need to back this out :(", + "pushdate": "2008-09-26 19:56:06", + "backsout": [ + "b2d48e54c5373f880099f13bc87a6fb2d7ec5788" + ] + }, + { + "node": "f2f0728d979fabd8d40cab94a5d653ceab06e360", + "bug_id": 454997, + "desc": "Backout changeset 8fe1cd2d3c66 (bug 454997) because of regressions and crashes", + "pushdate": "2008-09-28 05:53:26", + "backsout": [ + "8fe1cd2d3c6699e10d3aecd2557a0885687021dc" + ] + }, + { + "node": "3db739625352ee5e378899dc583193a1c1ba0f25", + "bug_id": 382690, + "desc": "Backed out changeset 93928936b1ab bug 382690 due to check-in during string freeze.", + "pushdate": "2008-09-28 14:56:16", + "backsout": [ + "93928936b1abfd86368b1d86fb649d7679c4bfbb" + ] + }, + { + "node": "996d2802d3f2762122f9cb25a4b2302d2facbb8f", + "bug_id": 364315, + "desc": "Backed out changeset 961d90be2ba8 from bug 364315 due to random crashes in\ntests.", + "pushdate": "2008-09-30 12:09:36", + "backsout": [ + "961d90be2ba80d1ecafb00edc027908beca1e733" + ] + }, + { + "node": "4e7a2d27d63649d9b58a772f6f29903f2601d607", + "bug_id": 433616, + "desc": "Backed out changeset c1f6a55626be (bug 433616, part 2) because it probably caused a Windows XP performance regression.", + "pushdate": "2008-09-30 16:53:08", + "backsout": [ + "c1f6a55626be9cf9fb4b5b35a90444c7d17f35bd" + ] + }, + { + "node": "abf1f4529de2161662d54fbc398943b5d0eef15d", + "bug_id": 426932, + "desc": "Backed out changeset 38a48d485876 (bug 426932).", + "pushdate": "2008-09-30 19:25:44", + "backsout": [ + "38a48d48587618f7a96c879afc96184593c5d9ea" + ] + }, + { + "node": "507fca9fa64116a2bf6829c6b5f5fbf9414f40da", + "bug_id": 453723, + "desc": "Backed out changeset 74aad43f37a5 (bug 453723).", + "pushdate": "2008-09-30 19:25:44", + "backsout": [ + "74aad43f37a5370a6e19893ccb631af1c54853b5" + ] + }, + { + "node": "2eade6ea592b184c39b36f93951cf4335de3e24e", + "bug_id": 457194, + "desc": "Backed out changeset a9838a973cdd from bug 457194 due to failing mochitest", + "pushdate": "2008-10-01 15:41:18", + "backsout": [ + "a9838a973cdd044ae123f2ddfbed41d6a591120b" + ] + }, + { + "node": "115934f340f058345955b0458f60fae44e4e41c8", + "bug_id": 114649, + "desc": "Backed out changeset 6f3797124c84: Relanding: Fire resize events every 200ms during resizing, not just 200ms after resizing stops. (Bug 114649) r+sr=roc", + "pushdate": "2008-10-02 03:12:35", + "backsout": [ + "6f3797124c84db28a4845fd90767837b711f092f" + ] + }, + { + "node": "f9dccfb26ec9faa5399d84113fcbfd572ed90393", + "bug_id": 373701, + "desc": "Backed out changeset d07aa0d0712a: Relanding: Bug 373701. Make sure to properly cancel multipart image loads when they need canceling. r=joedrew, sr=biesi", + "pushdate": "2008-10-02 13:53:43", + "backsout": [ + "d07aa0d0712a" + ] + }, + { + "node": "5df4c3d437eeaa49e2121fca1eae9cdd52d876eb", + "bug_id": 433616, + "desc": "Backed out changeset 4e7a2d27d636: relanding Bug 433616 part 2. Implement loading of external resource documents. r=jst, sr=roc", + "pushdate": "2008-10-04 20:01:17", + "backsout": [ + "4e7a2d27d63649d9b58a772f6f29903f2601d607" + ] + }, + { + "node": "a8eb5fc88c015017c7eaa662a81d8631df00e382", + "bug_id": 455311, + "desc": "Backed out changeset 6357eb31cec6 (bug 455311) for causing performance regression bug 458065.", + "pushdate": "2008-10-06 02:56:35", + "backsout": [ + "6357eb31cec64741a90e209cb55af1159fb30f25" + ] + }, + { + "node": "6681dc7f1293b6e328450ab0df24f73b5a96f536", + "bug_id": 455990, + "desc": "Backed out changeset a8cfcc9b6d5c: relanding Bug 455990 - Close button on last open tab should be hidden. r=gavin", + "pushdate": "2008-10-06 03:45:11", + "backsout": [ + "a8cfcc9b6d5c" + ] + }, + { + "node": "e3b597862e2a2d0f6556f7a6a439e1b1ee487521", + "bug_id": 455311, + "desc": "Back out changeset a8eb5fc88c01: relanding bug 455311. Treat .url files as redirects. r+sr=biesi", + "pushdate": "2008-10-06 20:45:30", + "backsout": [ + "a8eb5fc88c015017c7eaa662a81d8631df00e382" + ] + }, + { + "node": "cfaa8db2c177f79ebc5392db50bc0d7cdcc97b6f", + "bug_id": 365467, + "desc": "Backed out changeset 893b2c3b521f (Bug 365467 Focus controller's initial window and element can get out of sync r+sr=jst)", + "pushdate": "2008-10-08 16:44:01", + "backsout": [ + "893b2c3b521fe8fd24da4abada4efe94220b370b" + ] + }, + { + "node": "1d8c68c2989e53ab13b883ce0e2023e049b9894e", + "bug_id": 394611, + "desc": "Backed out changeset 2f36cde1694c (bug 394611, due to leaks)", + "pushdate": "2008-10-11 04:42:26", + "backsout": [ + "2f36cde1694c7f19488a10cbb6f15e38f3f1f02e" + ] + }, + { + "node": "d8a6df699a2635c9bf3c02a97941a0a540844200", + "bug_id": 398928, + "desc": "Backed out changeset 151e51ec625e (bug 398928) because of unit test orange", + "pushdate": "2008-10-13 12:34:11", + "backsout": [ + "151e51ec625e910335112572d678bdc9fecd6ad8" + ] + }, + { + "node": "726c49f3ea91e36175a708bafe4607194eadd56b", + "bug_id": 411726, + "desc": "Backed out changeset 82af7163534f\n(Bug 411726 -- Time offset and zone code are set wrong for some locales, r=mrbkap)", + "pushdate": "2008-10-14 21:21:14", + "backsout": [ + "82af7163534f427dfd880c82d3582de8011d25f0" + ] + }, + { + "node": "fdb6f474fc26c902aaeae57c9a2c39c37de65819", + "bug_id": 459780, + "desc": "Backed out changeset f678aac23eae from bug 459780 because it caused the regression in bug 460643.", + "pushdate": "2008-10-20 01:26:21", + "backsout": [ + "f678aac23eaead01ecc2794fd3253ca16356a759" + ] + }, + { + "node": "6db7098c04e46b24fc7731203602e19a3921c588", + "bug_id": 461410, + "desc": "Backed out changeset affcc1c08bc0 (deCOM frame enumerator) due to regression from it or bug 461410.", + "pushdate": "2008-10-28 06:59:42", + "backsout": [ + "affcc1c08bc0659efcc34c62edf3e1424b80a7dc" + ] + }, + { + "node": "b13e55f6cfda45d7fef4b6621e7681a7532edf2c", + "bug_id": 461410, + "desc": "Backed out changeset eda9709dc586 (deCOM frame enumerator) due to regression from it or bug 461410.", + "pushdate": "2008-10-28 06:59:42", + "backsout": [ + "eda9709dc586d8eb86eb9adb131a6999f6c13119" + ] + }, + { + "node": "66c23339bd12aca0833a922b63d10477ea5b224b", + "bug_id": 461212, + "desc": "Backed out changeset d4c9a0776667 (deCOM nsILineEnumerator) due to regression from it or bug 461212", + "pushdate": "2008-10-28 06:59:42", + "backsout": [ + "d4c9a0776667d05b8a1f62ec693c995ef4e327b3" + ] + }, + { + "node": "0370470de0650dabd61aac4d282eb60d1b7aa014", + "bug_id": 322475, + "desc": "Backed out changeset d7338fec7266 (from bug 322475, which made us construct all our image loaders at frame construction time) because of issues with propagation of backgrounds to the canvas (bug 460796).", + "pushdate": "2008-10-28 22:52:00", + "backsout": [ + "d7338fec726672f07714c7bfc57c765961a4d984" + ] + }, + { + "node": "01e2b22db875bc378c6668f160a7ef4630806295", + "bug_id": 322475, + "desc": "Backed out changeset 7f708623bf59 (from bug 322475, which made us construct all our image loaders at frame construction time) because of issues with propagation of backgrounds to the canvas (bug 460796).", + "pushdate": "2008-10-28 22:52:00", + "backsout": [ + "7f708623bf5973c81d07f80c8e0f405fcecfd6a9" + ] + }, + { + "node": "80654a9e4692b8cc671683911c2e53240be3df1c", + "bug_id": 322475, + "desc": "Backed out changeset 23eebebb8b48 (from bug 322475, which made us construct all our image loaders at frame construction time) because of issues with propagation of backgrounds to the canvas (bug 460796).", + "pushdate": "2008-10-28 22:52:00", + "backsout": [ + "23eebebb8b48ba5281f21e1da4d9873f4e9de918" + ] + }, + { + "node": "a935c0b1617856bc62d2aa0f2d12b3e109f831d8", + "bug_id": 456662, + "desc": "back out changeset 47259b642835, b=456662", + "pushdate": "2008-10-28 23:59:08", + "backsout": [ + "47259b6428353b03a48afcb9abd7a8690e8cb5d4" + ] + }, + { + "node": "429bfa1c5dea5601da90aba52524b302a1472ab9", + "bug_id": 454561, + "desc": "Backed out changeset b0d41235146a\nBug 454561 disable tracing when JavaScript-Debugger is enabled [ @ jsd_lock ]\nthis isn't the correct fix\nr=graydon", + "pushdate": "2008-10-31 11:54:34", + "backsout": [ + "b0d41235146aadb5a4bc0b86f61fa8e404e55dbb" + ] + }, + { + "node": "cf6c01973a893ff010964216f3e4d75b1bd12347", + "bug_id": 462050, + "desc": "Backed out changeset 84a9e53373c7\nBackout of bug 462050. We are going to try to reland this later to get reliable\nperformance numbers.", + "pushdate": "2008-11-01 00:43:02", + "backsout": [ + "84a9e53373c72d2ee0f6fc41eecc14813376b84c" + ] + }, + { + "node": "8b08744c500c3b7cb1929f2ab2a5b015f3b89eee", + "bug_id": 461422, + "desc": "Backed out changeset 157abfbcb96e (bug 461422) tree is closed", + "pushdate": "2008-11-03 22:30:47", + "backsout": [ + "157abfbcb96efce46c4cc7bfaae220f8a52a1509" + ] + }, + { + "node": "1830e12fe251edd7afb8671795bd127bebd70004", + "bug_id": 462986, + "desc": "Backed out changeset fbae114d6133 from bug 462986 due to test failures", + "pushdate": "2008-11-04 12:03:56", + "backsout": [ + "fbae114d613355dd05cb1926ad6291159ed2530f" + ] + }, + { + "node": "0d823e9893ad2dc95c4e402b280c01804c543721", + "bug_id": 436304, + "desc": "Backed out changeset 9b96bcff860b from bug 436304 - Implement All Tabs panel\nwith previews and search.", + "pushdate": "2008-11-04 14:21:32", + "backsout": [ + "9b96bcff860b407c869735835675a5a96c5376e7" + ] + }, + { + "node": "1a2fefd12905bbc6aae0b495c005959593b11fce", + "bug_id": 460811, + "desc": "Back out changeset b83d3c8ac166 (bug 460811) to try to fix bustage", + "pushdate": "2008-11-04 23:48:43", + "backsout": [ + "b83d3c8ac166e5f92f36fa44df498e74efd41832" + ] + }, + { + "node": "b5cba763fe6da4cd635d05a00ac63a13e62a3371", + "bug_id": 460811, + "desc": "Back out changeset b83d3c8ac166 (bug 460811) to try to fix bustage ... re-adding removed files", + "pushdate": "2008-11-05 00:04:07", + "backsout": [ + "b83d3c8ac166e5f92f36fa44df498e74efd41832" + ] + }, + { + "node": "5b1425e110372a469590cb5e2eeb641b321f7bc0", + "bug_id": 407110, + "desc": "Backed out changeset 10c21d116e5d from bug 407110 to investigate Ts\nregression.", + "pushdate": "2008-11-07 10:15:13", + "backsout": [ + "10c21d116e5dc358a9a11f38d50f79f429a87055" + ] + }, + { + "node": "9a2cbd5d3984c5ac673cef6fcebe32b89c5ae5ef", + "bug_id": 462973, + "desc": "Backed out changeset 4df50933e7cb from bug 462973 to investigate Ts\nregression.", + "pushdate": "2008-11-07 10:55:58", + "backsout": [ + "4df50933e7cb75bb212cfaaf6c19a765a1b5f4d0" + ] + }, + { + "node": "83c8769d5fd9358dad12acf73440372f4a0e9651", + "bug_id": 455057, + "desc": "Backed out changeset 673d1ba18849 from bug 455057 as the likely cause of the\nVista Ts regression", + "pushdate": "2008-11-07 15:21:44", + "backsout": [ + "673d1ba1884979e00447b0fe273c971a6ba5763a" + ] + }, + { + "node": "05c20a65b1df77e59275266e9a70cf3109344b45", + "bug_id": 458851, + "desc": "Backed out changeset d4fe79372140 (bug 458851) due to persistent orange on TraceMonkey tinderboxes.", + "pushdate": "2008-11-08 09:06:43", + "backsout": [ + "d4fe79372140ce13b145097d0c5c380b84eefb0a" + ] + }, + { + "node": "0a765c5ce37d5a6e9f6a9518e3b5df6d1d187530", + "bug_id": 454561, + "desc": "Backed out changeset b0d41235146a\nBug 454561 disable tracing when JavaScript-Debugger is enabled [ @ jsd_lock ]\nthis isn't the correct fix\nr=graydon", + "pushdate": "2008-11-08 09:06:43", + "backsout": [ + "b0d41235146aadb5a4bc0b86f61fa8e404e55dbb" + ] + }, + { + "node": "827edbbc90885ef4742de54252ced8ffbe0b82aa", + "bug_id": 462774, + "desc": "Backed out changeset ec9a1864d1fb from bug 462774, drop JSON.jsm due to OSX\nburning", + "pushdate": "2008-11-14 12:36:21", + "backsout": [ + "ec9a1864d1fbb4b2b4aec31f702004b7f588f8b8" + ] + }, + { + "node": "e10a0f54b14ea85629a77bf6ec0cb7f0e671efbf", + "bug_id": 462878, + "desc": "Backed out changeset 72088d2498c3 from bug 462878 as it was causing\nmochitests to crash", + "pushdate": "2008-11-14 14:51:28", + "backsout": [ + "72088d2498c330f87df142efaa9780e179943d12" + ] + }, + { + "node": "d0c342436fa89f4d72c4ff14e98115a640f52b4e", + "bug_id": 421885, + "desc": "Backed out changeset e4690fcf6f7c, due to reftest failures on linux (421885-1.xml and 403181-1.xml)", + "pushdate": "2008-11-14 21:17:30", + "backsout": [ + "e4690fcf6f7c741c62bb7793bc36afd0b81b1c9e" + ] + }, + { + "node": "75a38b047225e75426cc7ed74b1ab2e45e5ad513", + "bug_id": 453157, + "desc": "Backed out changeset 8329a91db67d - bug 453157, CLOSED TREE", + "pushdate": "2008-11-20 23:18:55", + "backsout": [ + "8329a91db67db793cd4b392318ba55ec3a4e2d77" + ] + }, + { + "node": "1f6bac1d9ed0bef5a0c9af637b63c5a905004de3", + "bug_id": 463384, + "desc": "Backed out changeset 4b5e00c182be from bug 463384 due to it causing bug 465883", + "pushdate": "2008-11-20 23:59:44", + "backsout": [ + "4b5e00c182beb9fef71dcc710258ca76bd94a323" + ] + }, + { + "node": "25a79f857a12b49dc3cf819331cb0457fdafa8db", + "bug_id": 453157, + "desc": "Backed out changeset c54f1957d564 - bug 453157 - build system changes caused mouchi test failures. CLOSED TREE", + "pushdate": "2008-11-21 23:13:52", + "backsout": [ + "c54f1957d56426d1c6e06c51d03dac01b1f116e1" + ] + }, + { + "node": "51249e968f249def386436609c6f2950197e2061", + "bug_id": 453157, + "desc": "Backed out changeset 700ae4e59496 - bug 453157 caused talos oranges. CLOSED TREE", + "pushdate": "2008-11-24 10:37:44", + "backsout": [ + "700ae4e594966339b34ef0467c82997293d32def" + ] + }, + { + "node": "21d4cb73f6fe401968c9f1f10da7ed1cb72e40db", + "bug_id": 435474, + "desc": "Backed out changeset 87f6ae0c4324 (bug 435474) for orange.", + "pushdate": "2008-11-27 21:18:19", + "backsout": [ + "87f6ae0c4324ce0d1b6133fbe6405e8d3baa6934" + ] + }, + { + "node": "ec6ae3ecb8815f3e272e5acf74321173a53ee171", + "bug_id": 453865, + "desc": "Backed out changeset 17842a2d0c7f (bug 453865) due to test failures", + "pushdate": "2008-11-27 22:23:09", + "backsout": [ + "17842a2d0c7f6b7f4dea7e7eb0119e1a8363f62b" + ] + }, + { + "node": "1b45760df6eefe25863b23b93cafc5bc73b6a559", + "bug_id": 561566, + "desc": "Backed out changeset 037f635ced9f (bug 561566)", + "pushdate": "2008-11-28 04:35:30", + "backsout": [ + "037f635ced9f8885ca36bf33edca1d436a1041b4" + ] + }, + { + "node": "3957258880e7d6f4a8a3c7b4aff5475666cbd3b1", + "bug_id": 457215, + "desc": "Backed out changeset 527249758771 (bug 457215) to investigate a performance regression (bug 467102)", + "pushdate": "2008-11-28 19:08:08", + "backsout": [ + "52724975877131b7607539dfd73d25c5bf7c5247" + ] + }, + { + "node": "a6d8a0bcac507df8008225e2683664f29145f395", + "bug_id": 460629, + "desc": "Backed out changeset 0586ee185c87 (bug 460629) to investigate possible performance regression (bug 467102)", + "pushdate": "2008-11-28 19:08:08", + "backsout": [ + "0586ee185c87bf8e109d390d93ddc5df09ca7100" + ] + }, + { + "node": "a3f9376ede1ea7fd6c56c4cb4e6f192267a97683", + "bug_id": 460520, + "desc": "Backed out changeset 6d9d920759cb (bug 460520) to investigate a performance regression (bug 467102)", + "pushdate": "2008-11-28 19:08:08", + "backsout": [ + "6d9d920759cbb115209f7aaf908515683f209e45" + ] + }, + { + "node": "de15a638ac3c89a392ecd313c3562e275e4f3f31", + "bug_id": 407725, + "desc": "Backed out changeset fdd5e4e34241 (bug 407725) to possibly fix random failures of browser/base/content/test/browser_customize.js", + "pushdate": "2008-11-28 23:22:07", + "backsout": [ + "fdd5e4e34241c888c97af7427bd8b15bf6d83446" + ] + }, + { + "node": "5d192e3eee829d162556c9ba7391222c32967154", + "bug_id": 464362, + "desc": "Backed out changeset 30adfe786ffa (bug 464362) in an attempt to fix red on tinderbox.", + "pushdate": "2008-11-29 00:15:56", + "backsout": [ + "30adfe786ffaf746040facfc35f1220f7e221415" + ] + }, + { + "node": "6dc4b85cd8a70d847b884dd841cccbbea3a25277", + "bug_id": 458397, + "desc": "Backed out changeset a4495a0cf2ff (bug 458397) to investigate Txul regression (bug 467102)", + "pushdate": "2008-11-29 01:07:07", + "backsout": [ + "a4495a0cf2ffb3f358b0f149b4a11c19bf5eb426" + ] + }, + { + "node": "09ec08895dea4dfdd86671846bacc89efd1c1114", + "bug_id": 427750, + "desc": "Backed out changeset 96956634349c, bug 427750 - Require python >= 2.4 to build Mozilla (and >=2.5 on Windows). Apparently scratchbox only ships with 2.3 by default.", + "pushdate": "2008-12-02 19:17:03", + "backsout": [ + "96956634349c34be4469035052ee2dcfe6b1853b" + ] + }, + { + "node": "b4b8f7a7212b6cf9a1cb5d84cc5f656d7be4970b", + "bug_id": 466486, + "desc": "Backed out changeset f71446b6fc7e: bug 466486- directories are getting skipped, causing things like xpcshell not to be built", + "pushdate": "2008-12-02 22:18:45", + "backsout": [ + "f71446b6fc7e115a4b81d078c1d27f315c48ecdb" + ] + }, + { + "node": "c0e30a87ce6381e10e3948f0877bd07f180e5caf", + "bug_id": 455381, + "desc": "backout changeset ce8fbd7d222e from bug 455381 to fix windows unit test bustage", + "pushdate": "2008-12-03 23:51:55", + "backsout": [ + "ce8fbd7d222e0a07dc0d9d9585dfe532732830c3" + ] + }, + { + "node": "212de1e1a1048edc5d3976b83694d0533a6c9b87", + "bug_id": 302561, + "desc": "Backed out changeset 7b553bbed53d (bug 302561) due to chrome test crash.", + "pushdate": "2008-12-04 17:57:59", + "backsout": [ + "7b553bbed53d49d4d4dbe486818866542396a5b3" + ] + }, + { + "node": "024fa1c26e347b5281a1cb57854f6eff6687dc90", + "bug_id": 335531, + "desc": "Backed out changeset 78d662c2c878 (Bug 335531) on suspicion of causing mochitest failures in test_bug399284.html on linux & windows unittest boxes.", + "pushdate": "2008-12-05 19:53:14", + "backsout": [ + "78d662c2c8785e04d47f04a584c654830ba20993" + ] + }, + { + "node": "6c07d6a8cd3344d35263acd501806ce01c661c2f", + "bug_id": 466582, + "desc": "Backed out changeset b6f762fde736 (bug 466582) for unit test orange.", + "pushdate": "2008-12-08 23:53:23", + "backsout": [ + "b6f762fde736dbbfec42b91a39c3d363ffc80310" + ] + }, + { + "node": "5af0a48a20d48baf754d6b71831334134effc6aa", + "bug_id": 432938, + "desc": "Backed out changeset 3744204c1576 (bug 432938) due to orange", + "pushdate": "2008-12-08 23:53:23", + "backsout": [ + "3744204c15769a48972e8376324afc78faf4ebfc" + ] + }, + { + "node": "3ce0936aef4054e10469b2af018aa2779f25de57", + "bug_id": 466104, + "desc": "Backed out changeset 957a4fed14af (bug 466104) due to leaks", + "pushdate": "2008-12-09 07:13:47", + "backsout": [ + "957a4fed14af1edfccedb05131ac3385f0d84881" + ] + }, + { + "node": "57c92d052aca6c275b7a08ed52cf7a084d664526", + "bug_id": 463887, + "desc": "Backed out changeset 00563815af18 (bug 463887) because it caused orange.", + "pushdate": "2008-12-12 01:27:07", + "backsout": [ + "00563815af185abbb0c0191666d07415697b11da" + ] + }, + { + "node": "c39b5108ca5184cafb529908608991022e2c63ae", + "bug_id": 468824, + "desc": "Backed out changeset 12f97a5bc3b6 (bug 468824) for causing failed unit test because of differences between config/system-headers and js/src/config/system-headers", + "pushdate": "2008-12-12 02:21:01", + "backsout": [ + "12f97a5bc3b6158d56ccae8d60cc81eae909c4f9" + ] + }, + { + "node": "3cbb1961f1f7047554228cbae0629112ffeaf5f5", + "bug_id": 460926, + "desc": "Backed out changeset 71c3a9d14712 - Bug 460926 - due to crash regression, bug 468845", + "pushdate": "2008-12-15 14:21:49", + "backsout": [ + "71c3a9d147120c5abe9dceb6aaa39991cdfce6d4" + ] + }, + { + "node": "44ef5053568e07019c19149684eae85c1b8a64e4", + "bug_id": 469809, + "desc": "Backed out changeset 0c0bf7bd8e7b for bug 469809", + "pushdate": "2008-12-16 19:54:02", + "backsout": [ + "0c0bf7bd8e7bebe4807bddb81c311d0a120db087" + ] + }, + { + "node": "eceb4663cfd926c4541e094756c1c0bc29500401", + "bug_id": 463806, + "desc": "Backed out changeset 98ea743c9156 (Bug 463806) due to crashes on OS X 10.4 talos boxes.", + "pushdate": "2008-12-17 21:03:07", + "backsout": [ + "98ea743c9156328763a87df55ce5f82e786df338" + ] + }, + { + "node": "e0740bbd7f753add0a5973e031f7388c2c87a2a1", + "bug_id": 470769, + "desc": "Backed out changeset 441f119f1a0c (Bug 470769) due to failures in layout/style/test/test_bug365932.html", + "pushdate": "2008-12-23 16:12:28", + "backsout": [ + "441f119f1a0c0ded15ad4c4e9b563befd64497cc" + ] + }, + { + "node": "f506b00d99f4bfcd16df58ff86c0e435ae3bbcc0", + "bug_id": 453157, + "desc": "Backed out changeset 7184e014cd05 - the patch for bug 453157 bursted tgfx test on Windows.", + "pushdate": "2008-12-26 01:26:36", + "backsout": [ + "7184e014cd05187008c3c579b66e79799e423710" + ] + }, + { + "node": "0928c4fc27901f10216e5ac2509530bea0c62c3b", + "bug_id": 467862, + "desc": "Backed out changeset 73be1c836d7f (bug 467862) to see if that fixes Windows bustage (bug 471097)", + "pushdate": "2008-12-26 03:30:08", + "backsout": [ + "73be1c836d7f066f200ad4565d74bbc9354d2689" + ] + }, + { + "node": "bac73f9f2d2b28630201fe2a2511b3a5bce0f68e", + "bug_id": 462004, + "desc": "Backed out changeset 55e23c647137 (bug 462004) so the backout for bug 467862 to solve bug 471097 can actually build", + "pushdate": "2008-12-26 03:52:55", + "backsout": [ + "55e23c6471379101a0e8a8e1f1f0e0b39b26c711" + ] + }, + { + "node": "de8572d5add0ea788427cc233df093a3e893d76d", + "bug_id": 466224, + "desc": "Backed out changeset e0cce6a738c9 (Bug 466224 - Make quickstubs call nsINode/nsINodeList methods) for failing mochitest", + "pushdate": "2009-01-01 02:43:25", + "backsout": [ + "e0cce6a738c9e2e69f5e4fc8a0bff2f0d71f2e91" + ] + }, + { + "node": "4a377a57eb8ef906c2381bc07212154f5323a402", + "bug_id": 441359, + "desc": "Backed out changeset e31d0d3c28fd (bug 441359)", + "pushdate": "2009-01-05 09:29:44", + "backsout": [ + "e31d0d3c28fd85fd96ae7194d13ec437927cf30a" + ] + }, + { + "node": "e3bab6e6bfc24812be67c4952811ffcd341f37a1", + "bug_id": 437366, + "desc": "Backed out changeset f87b46d44d22 (bug 437366)", + "pushdate": "2009-01-05 22:05:44", + "backsout": [ + "f87b46d44d22cfac0a7a075837827323b341aee6" + ] + }, + { + "node": "0f85bea9dea38a4923d328f57b6ab00d5d751669", + "bug_id": 453157, + "desc": "Backed out changeset adbe8e4b21dc due to tinderbox failures/timeouts (453157).", + "pushdate": "2009-01-08 04:49:11", + "backsout": [ + "adbe8e4b21dcd4dd78d505bf1026d2b02984f636" + ] + }, + { + "node": "d77eef73aeb6917ae4edb654a15fbdf8c9321bc8", + "bug_id": 464838, + "desc": "Backed out changeset b73e063a3f99 (bug 464838)", + "pushdate": "2009-01-08 19:59:07", + "backsout": [ + "b73e063a3f99066828df567b3f73308a6965f837" + ] + }, + { + "node": "48b1dea326bb61ab862b363b4223404e242b2e88", + "bug_id": 469613, + "desc": "Backed out changeset fe759e3fd895 from bug 469613 due to mochitest failures", + "pushdate": "2009-01-09 13:47:34", + "backsout": [ + "fe759e3fd8950cc6c3525b435ef1a389fffc9047" + ] + }, + { + "node": "864061941ee1bd4ae34deec261b8440e4a3a720d", + "bug_id": 396185, + "desc": "Backed out changeset 4c4df6ed1b41 - Bug 396185 - Make nsIFrame not inherit from nsISupports due to mochitest failures... these appear to be crashes in nsGenericHTMLElement::GetEditorInternal.", + "pushdate": "2009-01-09 16:36:02", + "backsout": [ + "4c4df6ed1b41131568d4659d62908214e8c81b7b" + ] + }, + { + "node": "a7489d8375cf34005f915e5bc93f997ae239ed11", + "bug_id": 471685, + "desc": "Backed out changeset 4de172f0d8b8 (bug 471685) with a CLOSED TREE", + "pushdate": "2009-01-09 21:19:50", + "backsout": [ + "4de172f0d8b8018f9a73494979798d6c7fd0f566" + ] + }, + { + "node": "f8a05a8b28eb977cf4a1a2e032e06489fead4d26", + "bug_id": 471685, + "desc": "Backed out changeset c569a8f91c0e (bug 471685) with a CLOSED TREE", + "pushdate": "2009-01-09 21:19:50", + "backsout": [ + "c569a8f91c0ee93e0a1976903b9f7b17070d441e" + ] + }, + { + "node": "e1da61348ddaee37776ea497c30e517b718caa6b", + "bug_id": 469558, + "desc": "Backed out changeset 8f347bf50a53 due to x86-64 build bustage, and the fact that the committed patch didn't match the reviewed patch in an important way (bug 469558)", + "pushdate": "2009-01-13 15:22:11", + "backsout": [ + "8f347bf50a53e16f8aa8e08f14ee92b10cff749f" + ] + }, + { + "node": "c573ff777cc4311b0b57bb909fd1eeac274e9e5f", + "bug_id": 471126, + "desc": "Back out changeset 9fd8740decb8 (Fix for bug 471126 (leak content nodes (and sometimes dom windows) after clicking on nytimes.com articles).) to try to fix orange.", + "pushdate": "2009-01-14 14:13:59", + "backsout": [ + "9fd8740decb8c166955527a0c3cd199de45f0cd9" + ] + }, + { + "node": "d7c6fc72e3cd032ee4c24f903d58730336372dd3", + "bug_id": 473837, + "desc": "Backout 6c571dc80a99, bug 473837", + "pushdate": "2009-01-16 19:16:17", + "backsout": [ + "6c571dc80a993be1b40e6a89cfad2892669d0982" + ] + }, + { + "node": "f5436f305f3a8917c651c798be17d63aa051cdaa", + "bug_id": 462188, + "desc": "Backed out changeset 9b832d90d637 (bug 462188) due to 7 test failures on Linux and 1 on Windows (0 on Mac).", + "pushdate": "2009-01-16 23:01:46", + "backsout": [ + "9b832d90d637d21c08ea8be077ebee04181e6037" + ] + }, + { + "node": "79043b10f34c01764ab4e9a542fdd48257d0e369", + "bug_id": 473721, + "desc": "Backed out changeset 562d8990f33a - with the fix for bug 473721 this workaround is no longer necessary.", + "pushdate": "2009-01-19 01:17:02", + "backsout": [ + "562d8990f33a007ffeb1f55faac701d95948b189" + ] + }, + { + "node": "6f2d2ef53d758d199d16ddb88ca982ecd6e67845", + "bug_id": 468645, + "desc": "Backed out changeset 6849ce51dfef (patch 3 from bug 468645) to fix bug 472353.", + "pushdate": "2009-01-20 21:59:23", + "backsout": [ + "6849ce51dfef0df9838e72af1acdd8a9f407a373" + ] + }, + { + "node": "929d0451c9b5ac985511f01d48d8347a5a788276", + "bug_id": 470971, + "desc": "Backed out changeset 700bca4b693f due to reftest failure (bug 470971)", + "pushdate": "2009-01-21 00:00:44", + "backsout": [ + "700bca4b693f4e21805bc035f36e5b66ae9fdf60" + ] + }, + { + "node": "3b4b3555239203608307ebb31e790e9345ac145c", + "bug_id": 269538, + "desc": "Backed out changeset 525e42406396, bug 269538 (jscpucfg-ectomy) due to Windows TUnit bustage.", + "pushdate": "2009-01-21 22:35:10", + "backsout": [ + "525e4240639636002dc72e6f3df213b1801d8312" + ] + }, + { + "node": "835e35dd544217fb4247d8060836be95497c9b59", + "bug_id": 466410, + "desc": "Backed out changeset e6566d187edd (bug 466410) on suspicion of causing linux reftest failures in 'ogg-video/basic-1.html' and 'ogg-video/zoomed-1.html'", + "pushdate": "2009-01-22 06:37:50", + "backsout": [ + "e6566d187edd0a16c6a630719f2cc49bb4fe7b73" + ] + }, + { + "node": "d27fe7afe11e276037b99a04b77481c687cd8241", + "bug_id": 464954, + "desc": "Backed out changeset 9fc993ac4427 (Bug 464954: Update Access-Control implementation to latest draft and fix some bugs. r/sr=bz) to fix orange.", + "pushdate": "2009-01-22 13:53:44", + "backsout": [ + "9fc993ac4427fd27314961058a0b708b7e8bb0cc" + ] + }, + { + "node": "dffc4413419a5c0b6a88fb51ef81a37bc6c814fe", + "bug_id": 464676, + "desc": "Back out changeset 32dc89bc34ad (Fix for bug 464676 (Cycle collector sometimes unlinks live cycles). r=bent, sr=jst.) to fix orange.", + "pushdate": "2009-01-23 16:06:05", + "backsout": [ + "32dc89bc34ad32b33cbaa6d03617540db6fa2ce7" + ] + }, + { + "node": "173e57cbce97ad7ed4710aacf6486fba023ddbc7", + "bug_id": 462106, + "desc": "Backed out changeset 97907892496f (Bug 462106 - Clear the data copied to clipboard inside the private browsing mode after leaving it; r,sr=roc a=blocking-firefox3.1+) to fix orange.", + "pushdate": "2009-01-24 13:28:32", + "backsout": [ + "97907892496fe9fe3533056e2c82ff6b5cbfa563" + ] + }, + { + "node": "6718f7e66778dc26dadec571c108b29b37df0822", + "bug_id": 464676, + "desc": "Back out changeset e919f0c1dfa9 (Fix for bug 464676 (Cycle collector sometimes unlinks live cycles). r=bent, sr=jst.) to try to fix red on leak tinderboxes.", + "pushdate": "2009-01-24 22:14:11", + "backsout": [ + "e919f0c1dfa9eff51063f3ba1df87e117cc76178" + ] + }, + { + "node": "4d6ed97f82f3c86991c11b90f7f8aabc19f05094", + "bug_id": 464676, + "desc": "Backed out changeset 81428de4b5dc (Fix for bug 464676 (Cycle collector sometimes unlinks live cycles). r=bent, sr=jst.).", + "pushdate": "2009-01-26 08:11:21", + "backsout": [ + "81428de4b5dc5de515d03ed6a3abd5b63f50fdd0" + ] + }, + { + "node": "73bfcdaa1a516a2c25ca7d9f6106ba30a3ca11c5", + "bug_id": 474801, + "desc": "Backed out changeset 6657640cbbb2 - the patch from the bug 474801 caused leak and crash test failures", + "pushdate": "2009-01-27 21:40:57", + "backsout": [ + "6657640cbbb202218a8a87fe0a37e20568b8a219" + ] + }, + { + "node": "2bed5117722e6f63ebf50ec02562946c129bed3f", + "bug_id": 462027, + "desc": "Backed out changeset 17663da1b840 (bug 462027).", + "pushdate": "2009-01-27 21:40:57", + "backsout": [ + "17663da1b840384852133b3b97f6fc0298682d91" + ] + }, + { + "node": "6e5e50fe7ca61ddf885122b938f825af08c81ee2", + "bug_id": 24106, + "desc": "Backed out changeset 05cbbc9f1ae2, which backed out bug 24106 (so this is re-landing 24106).", + "pushdate": "2009-01-27 21:40:57", + "backsout": [ + "05cbbc9f1ae27bc382dad2032c26df0341d1d1db" + ] + }, + { + "node": "799a55cfae002c1a1b0e8a6a089b3b3c007f0668", + "bug_id": 474771, + "desc": "Backed out changeset d50d3681b94e (attempted re-landing of 474771).", + "pushdate": "2009-01-28 18:59:34", + "backsout": [ + "d50d3681b94e" + ] + }, + { + "node": "0cbd3800749f3bffc26297d2307262908464c554", + "bug_id": 475128, + "desc": "Backed out changeset 24917a339f2e (bug 475128) because it didn't patch the IsRoot check nsRuleNode::Sweep, which it needs to.", + "pushdate": "2009-01-29 22:37:28", + "backsout": [ + "24917a339f2e1e6dbe955e5d318d2a6be975abc5" + ] + }, + { + "node": "6efc982bb051993be0ab7d97a8efc25745dbb945", + "bug_id": 451352, + "desc": "Backout changeset 8dd2e82503cd (bug 451352), it broke password manager.", + "pushdate": "2009-01-30 20:02:08", + "backsout": [ + "8dd2e82503cd3d6759178d1066193c07559251c3" + ] + }, + { + "node": "6a6d6d76ebc8fad447f77cf8d537dea380361855", + "bug_id": 469625, + "desc": "Backed out changeset 7246c4dcf997 (bug 469625) due to trace-test.js failures.", + "pushdate": "2009-01-31 19:45:42", + "backsout": [ + "7246c4dcf99709f0fe1e0aefbf812e701f1961ad" + ] + }, + { + "node": "143ac6c35cfacf6ec31a1cb8bce9d295d3889aaf", + "bug_id": 460515, + "desc": "Backed out changeset 7c7ec4bd36a6 (bug 460515 - Remove assumption that xpcshell etc in same directory as app executable) because it's broken on OS X.", + "pushdate": "2009-02-04 20:43:14", + "backsout": [ + "7c7ec4bd36a6aae629950758362b7c589b0e4564" + ] + }, + { + "node": "674246a64ed25f818e72b1982cc20168502c2988", + "bug_id": 474655, + "desc": "Backed out changeset eec3076f3bab (Bug 474655, Warn when nsIDOMCSSStyleDeclaration::GetPropertyCSSValue is called) because we trigger the warning too much ourselves (Bug 475311)", + "pushdate": "2009-02-04 21:25:12", + "backsout": [ + "eec3076f3bab68a031a39a4b01617a3e4c97834b" + ] + }, + { + "node": "c5044341110e9e79210a7547b1a3e75f01b6e58a", + "bug_id": 476345, + "desc": "Backed out changeset d9eff1fb5e60 (bug 476345) due to Windows bustage.", + "pushdate": "2009-02-04 22:39:56", + "backsout": [ + "d9eff1fb5e6034d114cfae7757b4af4542d31f28" + ] + }, + { + "node": "c1dabe868c329e83fc95183ba931d0da48e7d865", + "bug_id": 445087, + "desc": "Backed out changeset d679ac3a8de0 (Bug 445087. Add extra pixel on each side of the glyph's black box returned by GetGlyphOutlineW, to avoid clipping ClearType pixels. r=vlad) to fix orange.", + "pushdate": "2009-02-05 14:35:14", + "backsout": [ + "d679ac3a8de0c6de7339056d80c7d0470b7c0a95" + ] + }, + { + "node": "1dabc169a3c4f6afea7acec07e2fe983bdce6186", + "bug_id": 476643, + "desc": "Backed out changeset 64d5b7cdeb69 - bug 476643 because of Windows bustage (js_LeaveTrace is not a friend API)", + "pushdate": "2009-02-06 01:20:20", + "backsout": [ + "64d5b7cdeb698e8fc8543ff863680d22fce7748c" + ] + }, + { + "node": "27d46c33caddcf8b00b874230d539e283e9ddfa2", + "bug_id": 460882, + "desc": "Backed out changeset 423eea03fb54 (Bug 460882) for being one of the two changesets that's causing chrome and a11y tests not to start.", + "pushdate": "2009-02-07 04:58:06", + "backsout": [ + "423eea03fb546ce9c44c47b091d92068c8462eb7" + ] + }, + { + "node": "7a4f890c862d61c7d8d26f656a1f438e81c6c9d5", + "bug_id": 320954, + "desc": "Backed out changeset c8d43645a578 (bug 320954) for burning leak tests", + "pushdate": "2009-02-07 22:40:16", + "backsout": [ + "c8d43645a578b3e2d933328ed3088cbd4d98d371" + ] + }, + { + "node": "7581b9caf300976be72d4be0a74041533a586396", + "bug_id": 469831, + "desc": "Backed out changeset 92a47ed3d54e - Michael Ventnor \u2014 Bug 469831 - need gtk2 drawing code for test plugin - due to mochitest leak failures (crash?)", + "pushdate": "2009-02-10 00:37:27", + "backsout": [ + "92a47ed3d54e2e388b7fb4360a476fdc765d75d7" + ] + }, + { + "node": "4bb932755d5c4d2a79ce867b256e95cbb3118fcd", + "bug_id": 475522, + "desc": "Backout changeset 4767c92771e6 from bug 475522 because of burning tree", + "pushdate": "2009-02-12 14:37:38", + "backsout": [ + "4767c92771e658f69cc9d908b2fd147f9b0d37bc" + ] + }, + { + "node": "8dccd5c59ad200b7187886fd95d6847b11d03607", + "bug_id": 474536, + "desc": "Backed out changeset 4bd7dd7645c2 (Bug 474536)", + "pushdate": "2009-02-19 20:38:52", + "backsout": [ + "4bd7dd7645c209ec5065bab824994739587a7e51" + ] + }, + { + "node": "0590dccbad048faa84af827bb1eaefe978e95260", + "bug_id": 322475, + "desc": "Backed out changeset fde0b361f25e (bug 322475, main patch) due to Mac talos startup failures and hitting the NS_ABORT_IF_FALSE in SetupBackgroundClip, which may be related.", + "pushdate": "2009-02-19 21:52:07", + "backsout": [ + "fde0b361f25eb13e1b18cab08150e8d3f7a34272" + ] + }, + { + "node": "6e008e161a0fed680d40e4f811254f51ece7b7bf", + "bug_id": 474749, + "desc": "Backed out changeset 690209fc5b6b (bug 474749) due to unit test failures.", + "pushdate": "2009-02-22 06:44:40", + "backsout": [ + "690209fc5b6b4d2816f4d02b592c1ed0739a5cf5" + ] + }, + { + "node": "0e56b82242f20ff27016b2816acf79363ce9190e", + "bug_id": 479543, + "desc": "Backed out changeset f8926cd4a7b2 (bug 479543) since it breaks unit tests in\ndebug builds.", + "pushdate": "2009-02-23 22:35:40", + "backsout": [ + "f8926cd4a7b24a307d61d80dced150183ffd30de" + ] + }, + { + "node": "87097563da9eb475bae4354e8b4953530d70ab25", + "bug_id": 476245, + "desc": "Backed out changeset a328b5ae57e0 (bug 476245) for causing failures of test_videocontrols.html across platforms (although Linux hasn't cycled yet).", + "pushdate": "2009-02-24 21:39:20", + "backsout": [ + "a328b5ae57e0062d856efe7489d224d4f3df88cf" + ] + }, + { + "node": "596366a3c3413b7b303f75f0beb8e2ebb36ca3a9", + "bug_id": 479521, + "desc": "Backed out changeset 4130ff1e52f3 (bug 479521) due to test failures.", + "pushdate": "2009-02-24 23:38:22", + "backsout": [ + "4130ff1e52f30d3cd309448fc2b3cb825d5ae300" + ] + }, + { + "node": "34ee950622aa5c2f92b3143421fee9eef6952c5a", + "bug_id": 24968, + "desc": "Back out a2b6a4c57a05 (bug 24968). Cross-platform orange.", + "pushdate": "2009-02-25 09:05:38", + "backsout": [ + "a2b6a4c57a0557c922bef92bc96c388441192384" + ] + }, + { + "node": "939103e7a4abcecf6035ba8ff205410c958e4ec1", + "bug_id": 479393, + "desc": "Backed out changeset 209a7cc3150e (Bug 479393)", + "pushdate": "2009-02-26 05:51:42", + "backsout": [ + "209a7cc3150ef1ab3208a0702c426af9eb3185c6" + ] + }, + { + "node": "c395bb2cf30ab1144bc0e41da4e3accd44209589", + "bug_id": 479499, + "desc": "Backed out changeset fdbe218cdcc7 - Causing crashtest hangs on linux. Tracked by bug 479499.", + "pushdate": "2009-03-03 14:47:16", + "backsout": [ + "fdbe218cdcc70e324f22e689e697fce690abeb6c" + ] + }, + { + "node": "f8b100b574f316c48f77427708315ac7921e00a4", + "bug_id": 480700, + "desc": "Backed out changeset 5befb6301e9b for bug 480700 - the patch broke 32-bit linux build.", + "pushdate": "2009-03-09 18:47:08", + "backsout": [ + "5befb6301e9bfb47fd23ef695cfd1bc2017bdda8" + ] + }, + { + "node": "14bc4dbf10cb18b41e6a7e2f79039e6cd0eb71ea", + "bug_id": 480267, + "desc": "Backed out changeset 635b1c8783a6 - bug 480267 - because it seems to have\ncaused a reftest failure.", + "pushdate": "2009-03-10 16:26:18", + "backsout": [ + "635b1c8783a6dabfa80aab6b55d3815ea41606cc" + ] + }, + { + "node": "44cd744842422ca215443df7c86c7490686773ef", + "bug_id": 481881, + "desc": "backout dac7c3176b33 from bug 481881", + "pushdate": "2009-03-11 04:09:25", + "backsout": [ + "dac7c3176b331762557a4c3d74e32840cb002fe0" + ] + }, + { + "node": "ad96e3d1ab56c30857baab534d1b353d121dc61f", + "bug_id": 463256, + "desc": "Backed out changeset 113bda3be8df (bug 463256) due to test failures on Mac", + "pushdate": "2009-03-12 10:10:39", + "backsout": [ + "113bda3be8df2698fdd52a65b54c7d24b2eda2be" + ] + }, + { + "node": "73379b9ca6ce67e1c061de3b7f450f3f613f2915", + "bug_id": 464800, + "desc": "Backed out changeset 69322c1764ff (bug 464800) due to test failures on Mac", + "pushdate": "2009-03-12 10:10:39", + "backsout": [ + "69322c1764ffd21bd5756e54a4068fcb4c4ac077" + ] + }, + { + "node": "fbd0299ee9becb64574199c7c2ba727bf1a0055f", + "bug_id": 482800, + "desc": "Backout changeset 5e0cc374593c for bug 482800.", + "pushdate": "2009-03-13 01:56:58", + "backsout": [ + "5e0cc374593c24989fb28dd1e98022373204b8ca" + ] + }, + { + "node": "6ed065a2a0d82c1ecf4d7e15b8fbbca18075bb0d", + "bug_id": 437325, + "desc": "Backed out changeset 57de81309176 - bug 437325 - due to mochitest leaks on tinderbox", + "pushdate": "2009-03-13 20:34:49", + "backsout": [ + "57de813091765f87edb63835fda7e72b6de9df5b" + ] + }, + { + "node": "96fb69f98cc2c3ad734d89428918adfcf945a885", + "bug_id": 457065, + "desc": "Backed out changeset 10b781704400 (bug 457065).", + "pushdate": "2009-03-16 22:50:44", + "backsout": [ + "10b781704400c1b969761a460d787de171f5cb73" + ] + }, + { + "node": "33c68c49af9dc25355f3855452fc043c2c84b4d2", + "bug_id": 482659, + "desc": "Backed out changeset 55d159b75f41 from bug 482659.", + "pushdate": "2009-03-17 11:09:29", + "backsout": [ + "55d159b75f41141d92ad9bb2c52780d082ed11a0" + ] + }, + { + "node": "830772ae7bf41b96b9ad77c2ce55215d2f1d93cf", + "bug_id": 479110, + "desc": "Backed out changeset e71cb3993380 (bug 479110).", + "pushdate": "2009-03-18 06:58:56", + "backsout": [ + "e71cb3993380e6f98caffee8be67a3fff87adea0" + ] + }, + { + "node": "0424abce8965b1c95c1a6ff6a893bf21b43d6253", + "bug_id": 483634, + "desc": "Back out changeset 699fc684188c from bug 483634 due to unit test failures", + "pushdate": "2009-03-19 04:56:56", + "backsout": [ + "699fc684188c2ebba72ce592b644a12e3f02c6ff" + ] + }, + { + "node": "100e73c6c9e8b3315fb8b9eaec85dbb9b8b3040a", + "bug_id": 484764, + "desc": "Backed out changeset 83944488fbe6 (Preparation for fix for bug 484764 (Set up DOM prototype chains from PostCreateProto instead of PostCreate)).", + "pushdate": "2009-03-24 13:47:26", + "backsout": [ + "83944488fbe65335798cfc0e1f724e845beca785" + ] + }, + { + "node": "124a3d626d1e059fc0c13ff7549df8e2a69e6b34", + "bug_id": 437325, + "desc": "Backed out changeset e117c22cc1d1 - the landed patch for bug 437325 has a shutdown leak.", + "pushdate": "2009-03-24 17:50:03", + "backsout": [ + "e117c22cc1d1a33f058191484ea339556c5ee654" + ] + }, + { + "node": "a43288e59420590e1df46280dace88f4db30dbbe", + "bug_id": 484764, + "desc": "Backed out changeset 94673272aeab from bug 484764: Set up DOM prototype chain\nfrom nsDOMClassInfo::PostCreateProto.", + "pushdate": "2009-03-26 14:54:57", + "backsout": [ + "94673272aeab8bab601581b74567472e2985484d" + ] + }, + { + "node": "cc7213e51266945396c0f03f6bdff7e804e087b6", + "bug_id": 483980, + "desc": "Backed out changeset 2d1f7c7c7a2b (bug 483980)", + "pushdate": "2009-03-27 22:34:53", + "backsout": [ + "2d1f7c7c7a2b51459482072435cc6572f4ea7dec" + ] + }, + { + "node": "711c24ec63bd94e0c7d1c7993cc341ab60ec5b7e", + "bug_id": 485178, + "desc": "Backed out changeset 0b36bddcefe4 for bug 485178 to fix compiletaion errors on some platforms.", + "pushdate": "2009-03-29 20:42:33", + "backsout": [ + "0b36bddcefe45e07c2b4ead1f001062c9f1a4890" + ] + }, + { + "node": "b39c0c0674fb5f8f3cab177d0f25dae8096fcde3", + "bug_id": 427633, + "desc": "backout changeset 459c8e138144 \u2013 test for Bug 427633, due to failures on OS X", + "pushdate": "2009-03-30 22:59:52", + "backsout": [ + "459c8e138144c00e3b90d309a3284e18d7cf809e" + ] + }, + { + "node": "70cd538fd48aa091def4ad7c5df003283988b487", + "bug_id": 485390, + "desc": "Backed out changeset f66fabdbc090 (bug 485390) - the problem is not in utils.lockFile, and you shouldn't really need to hold the file descriptor", + "pushdate": "2009-03-31 14:39:36", + "backsout": [ + "f66fabdbc090034cab166dd4d823ba082c0466ed" + ] + }, + { + "node": "54dda9955a7fdc7f5dd468ce8ea06c3fa004f617", + "bug_id": 395668, + "desc": "Backed out changeset 5263468b1d60 (bug 395668) due to unit test timeouts in test_tooltip.xul and test_tooltip_noautohide.xul", + "pushdate": "2009-04-02 18:06:14", + "backsout": [ + "5263468b1d60cce3af4feba31a8a2d380f7b7c13" + ] + }, + { + "node": "b025b0c6e3806754edac056176b8132b80b37c08", + "bug_id": 481926, + "desc": "Backed out changeset 6f3c2171bbb2:\nBug 481926 - Rewrite color management component. r=joe,ted sr=vlad", + "pushdate": "2009-04-03 20:29:59", + "backsout": [ + "6f3c2171bbb22238f1e2dd13c7f748ac6e62145b" + ] + }, + { + "node": "a55a5e3c4276ff60142187e0e6c230032323337c", + "bug_id": 484693, + "desc": "Backed out changeset b512be855093 (bug 484693). See bug for details.", + "pushdate": "2009-04-06 01:25:14", + "backsout": [ + "b512be855093b30f1a232035e856387964dc13c4" + ] + }, + { + "node": "6eca563de031cb584b8a86fdd74238c3357fd198", + "bug_id": 484693, + "desc": "Backout changeset 143e997c858e (bug 484693) because it caused crashes on Mac tinderboxen.", + "pushdate": "2009-04-08 04:43:16", + "backsout": [ + "143e997c858e116553451c2b7566d1679db3bccb" + ] + }, + { + "node": "3c7cd3a8f785ec9a09fb4b5244f1c095f26c6fc1", + "bug_id": 484448, + "desc": "Backed out changeset 0ea22856b5d9 (bug 484448).", + "pushdate": "2009-04-08 19:58:02", + "backsout": [ + "0ea22856b5d9e25e2b687e3fb6f3da557274f42a" + ] + }, + { + "node": "f12b13dbd0530765cb71c97e5c80a1da2af14038", + "bug_id": 483552, + "desc": "Backed out changeset 510bd328a29d (bug 483552) due to landing on orange tree.", + "pushdate": "2009-04-09 16:04:18", + "backsout": [ + "510bd328a29d5025f7137d9f03506a41e693bc42" + ] + }, + { + "node": "781e16e5112d9d75ea5c5045c35d27ed20c462ba", + "bug_id": 486933, + "desc": "Backed out changeset 86c8e18f20eb (bug 486933) due to landing on orange tree.", + "pushdate": "2009-04-09 16:04:18", + "backsout": [ + "86c8e18f20eb21fd20cd63e7fbb69203365a900d" + ] + }, + { + "node": "a3185147886829944da575f05300b2f5599db234", + "bug_id": 485563, + "desc": "Backed out changeset 0233d2bb8a07 (bug 485563) on suspicion of causing intermittent leak orange.", + "pushdate": "2009-04-09 16:04:18", + "backsout": [ + "0233d2bb8a0787ca9e26180f8ec0258ee5b5a050" + ] + }, + { + "node": "2d6fa1ee649a41e608968c51ff46c2a002ef1d23", + "bug_id": 419612, + "desc": "Backed out changeset 17abd3beeabf (bug 419612) on suspicion of causing intermittent leak orange.", + "pushdate": "2009-04-09 16:04:18", + "backsout": [ + "17abd3beeabfc5a00a44e5f2157017300c94920b" + ] + }, + { + "node": "1a29fad0c1bbab453c89bf79dec70018e96eff0a", + "bug_id": 481598, + "desc": "Backed out changeset b1237eca3670 (bug 481598) on suspicion of causing intermittent leak orange.", + "pushdate": "2009-04-09 16:04:18", + "backsout": [ + "b1237eca36703defb4b7b1e3a42b843b523b4dfc" + ] + }, + { + "node": "fca91e13946daba978e4a7f5d394abbfac8aeec3", + "bug_id": 486821, + "desc": "Backed out changeset 716fc2e4f7d3 (bug 486821) on suspicion of causing intermittent leak orange.", + "pushdate": "2009-04-09 16:04:18", + "backsout": [ + "716fc2e4f7d393f1f54a7602485549600beb128e" + ] + }, + { + "node": "686e89bbc76494c130f48b5fb11cbabd9b6c3ae4", + "bug_id": 473732, + "desc": "Backed out changeset 50940a1eb1e9 (bug 473732) because it causes Linux unit\ntest orange.", + "pushdate": "2009-04-09 18:48:24", + "backsout": [ + "50940a1eb1e93bb1c788e79959bb5478ca62becd" + ] + }, + { + "node": "c0542ed38b98aebddcfdc1ee39bbd6774cfeb04e", + "bug_id": 487719, + "desc": "Backed out changeset dde29bfff639 (bug 487719)", + "pushdate": "2009-04-13 08:30:54", + "backsout": [ + "dde29bfff639502f81f585b3f83c584343132a81" + ] + }, + { + "node": "86fdfc20dccb81d978f338c850e5a028aad4e850", + "bug_id": 475317, + "desc": "Backed out changeset dddef115ddd2 (bug 475317)", + "pushdate": "2009-04-13 08:30:54", + "backsout": [ + "dddef115ddd26123f998caf97afc9affd635f8ce" + ] + }, + { + "node": "f82e3ab11e63ed737b47fcdc7ec9369931e4cb10", + "bug_id": 475318, + "desc": "Backed out changeset 1e38c7369a3d (bug 475318)", + "pushdate": "2009-04-13 08:30:54", + "backsout": [ + "1e38c7369a3d5d36b494f8827758fe0d1c34ef9f" + ] + }, + { + "node": "e9a0a746f0fa37a354e71dc69d4810d49e736b1f", + "bug_id": 477014, + "desc": "Backed out changeset 524ab31ef073 (bug 477014) in an attempt to fix the unit test orange on Mac.", + "pushdate": "2009-04-13 19:35:35", + "backsout": [ + "524ab31ef073f6c265a2e8b6657794bae66619e1" + ] + }, + { + "node": "d7567548bc8f4af71f62079afafb1e00f20c5405", + "bug_id": 487631, + "desc": "Backed out changeset 05fd6a9c8ff7 (bug 487631) on suspicion of causing Windows unit test orange in CLOSED TREE.", + "pushdate": "2009-04-13 21:50:07", + "backsout": [ + "05fd6a9c8ff7172fec210ebf36518785cc9853f0" + ] + }, + { + "node": "1e9079e22c18aadb40ebe1eba26c2cbf531bcfc2", + "bug_id": 487845, + "desc": "Backed out changeset 4c157cfe2289 (bug 487845).", + "pushdate": "2009-04-15 21:40:40", + "backsout": [ + "4c157cfe22891e402bbbdac575c1483713e97200" + ] + }, + { + "node": "c221393049dcc32dfa4a15f763372da262a6f888", + "bug_id": 480301, + "desc": "Backed out changeset f97f196dcb58 - bug 480301 needs more work", + "pushdate": "2009-04-16 00:13:30", + "backsout": [ + "f97f196dcb58542c4f2e242b0fa525e7f4242214" + ] + }, + { + "node": "64d7df1fe160a1e8f595e1d936c179699eba21ce", + "bug_id": 488203, + "desc": "Backed out changeset e8c23c42db7f (bug 488203) to see whether it causes the leak.", + "pushdate": "2009-04-18 15:37:12", + "backsout": [ + "e8c23c42db7f0165c370b45094780502d5d66936" + ] + }, + { + "node": "062ea62f9bda22be55d94c71dc98e780d91342e6", + "bug_id": 488203, + "desc": "Backed out changeset 64d7df1fe160 (re-landing 488203).", + "pushdate": "2009-04-18 15:37:12", + "backsout": [ + "64d7df1fe160a1e8f595e1d936c179699eba21ce" + ] + }, + { + "node": "4273c0708552544e8a0317e84c02e515b0a02476", + "bug_id": 488203, + "desc": "Backed out changeset 062ea62f9bda (backed out bug 488203 again).", + "pushdate": "2009-04-18 15:37:12", + "backsout": [ + "062ea62f9bda22be55d94c71dc98e780d91342e6" + ] + }, + { + "node": "5bd1161481752fa00ec6154dddf36fa239dd0dcc", + "bug_id": 487204, + "desc": "Backed out changeset d1a4ee3d0c59 (bug 487204, due to possible leak).", + "pushdate": "2009-04-18 15:37:12", + "backsout": [ + "d1a4ee3d0c595c2697bd586697d399d337e09c2a" + ] + }, + { + "node": "324bb9dc8372bc9353711fffa97ecaa9c61eef31", + "bug_id": 487204, + "desc": "Backed out changeset 5bd116148175 (attempting to re-land bug 487204).", + "pushdate": "2009-04-18 15:37:12", + "backsout": [ + "5bd1161481752fa00ec6154dddf36fa239dd0dcc" + ] + }, + { + "node": "9c63c15b92b5b606f14fc7b07f51d9edf91cd6bd", + "bug_id": 487204, + "desc": "Backed out changeset 324bb9dc8372 (bug 487204 is implicated in top site failures).", + "pushdate": "2009-04-18 15:37:12", + "backsout": [ + "324bb9dc8372bc9353711fffa97ecaa9c61eef31" + ] + }, + { + "node": "c0a409243f7b5262a069d05a91a70f160c4e55c8", + "bug_id": 488414, + "desc": "Backed out changeset f4662701526b (bug 488414) to fix !JS_THREADSAFE compilation errors", + "pushdate": "2009-04-20 18:44:02", + "backsout": [ + "f4662701526b6c7d3402fdd8021b576a295218ec" + ] + }, + { + "node": "f58de2414f51ac92548b9b52e2ee85abc9b35456", + "bug_id": 67752, + "desc": "Backed out changeset 6a452e522e07 - Boris Zbarsky \u2013 Bug 67752. Implement interruptible reflow. r=roc,dbaron - because of apparent Tp hangs.", + "pushdate": "2009-04-22 03:13:36", + "backsout": [ + "6a452e522e0775c1993c41085fb2851acd3aaf5b" + ] + }, + { + "node": "1a1611bb10630cda771042ef8089b7b6060c3f55", + "bug_id": 489585, + "desc": "Backed out changeset 88f76db49467 (bug 489585) due to test failures on OS X", + "pushdate": "2009-04-23 07:16:09", + "backsout": [ + "88f76db49467b87ce93ed43653b5855d19e6bcc9" + ] + }, + { + "node": "a0e5385d86c43e251b192f74e88de4b35753172f", + "bug_id": 487250, + "desc": "Backed out changeset 69f84bd26700 (bug 487250) to fix browser_privatebrowsing_searchbar.js failure", + "pushdate": "2009-04-23 09:48:27", + "backsout": [ + "69f84bd267008c385528fcb71c8fa9c842d6bde6" + ] + }, + { + "node": "0cb354f894d1ca1c72edf04893250e2d2513021c", + "bug_id": 490879, + "desc": "Backout revision 12536e9936b2 (bug 490879) because of unknown potential problems for Thunderbird 3.next", + "pushdate": "2009-05-03 18:02:56", + "backsout": [ + "12536e9936b2c43538eb5803937d5314ec3c4cf8" + ] + }, + { + "node": "38512deaca7e5ca4fcd39ca9c60f2640fa3ad773", + "bug_id": 491013, + "desc": "Backed out changeset 6534f8b9aa74 (bug 491013, assert on startup).", + "pushdate": "2009-05-05 18:41:02", + "backsout": [ + "6534f8b9aa74ba67ee31dc87e5250eeeb3c185aa" + ] + }, + { + "node": "f2151b06463e21d8546b27ffaf382a68c6314251", + "bug_id": 491834, + "desc": "Backed out changeset 7df4317278f5, bug 491834.", + "pushdate": "2009-05-07 13:25:33", + "backsout": [ + "7df4317278f56284fa394c0681a542f74275ce3c" + ] + }, + { + "node": "d525ab89ac0229543a0c14d0cfe1bd1ead465090", + "bug_id": 480080, + "desc": "Backed out changeset 9f9b05760fff, bug 480080, to see if it fixes orange", + "pushdate": "2009-05-08 17:43:16", + "backsout": [ + "9f9b05760fffaf3a5ec11c1ad4fd51514a4e7aa3" + ] + }, + { + "node": "c60c37d487cae83cbcbb7db59b1b867d6eba27e2", + "bug_id": 490833, + "desc": "Backed out changeset b6f09258a505 (bug 490833).", + "pushdate": "2009-05-09 02:58:20", + "backsout": [ + "b6f09258a505f54e81d64221d35b096d68e7a844" + ] + }, + { + "node": "88df6943633f8f75d3df5460ae720d860f4307a1", + "bug_id": 489864, + "desc": "Backed out changeset add33a95e3ef to fix talos crashes. b=489864", + "pushdate": "2009-05-11 20:41:08", + "backsout": [ + "add33a95e3ef643243db7d287251cacbadecf515" + ] + }, + { + "node": "29692abf4c295b6018f546a3a68e6309bf57cafd", + "bug_id": 492037, + "desc": "Backed out changeset 888aff8f57d2. Bug 492037", + "pushdate": "2009-05-13 00:05:00", + "backsout": [ + "888aff8f57d2309ea008b3aa86f865f4a1775948" + ] + }, + { + "node": "9a308a1a5a9436005c74d7209fbe1e84dc836283", + "bug_id": 492664, + "desc": "Backed out changeset c8a74fe0f9af (bug 492664).", + "pushdate": "2009-05-13 03:21:33", + "backsout": [ + "c8a74fe0f9af820db21be004f0aaabea1c085b8b" + ] + }, + { + "node": "3415a6e08696e5c501a8dc98e69cae825c33247d", + "bug_id": 492483, + "desc": "Backed out changeset 3e3d2d8cc70f (bug 492483 - fixing !JS_THREADSAFE build failure.) to try to fix Tshutdown regression.", + "pushdate": "2009-05-15 14:40:55", + "backsout": [ + "3e3d2d8cc70f30d55765cf414c69977ec1c2f266" + ] + }, + { + "node": "0f55d91d7724eccced6bc37570f08ec59c6c7ec0", + "bug_id": 490592, + "desc": "Backed out changeset 5e867032abe5 (Fix for bug 490592 (Possible to GC way too much during shutdown due to XUL and XBL prototypes).) to try to fix Tshutdown regression.", + "pushdate": "2009-05-15 14:40:55", + "backsout": [ + "5e867032abe58fde99cb01a689dc456eb47c98ea" + ] + }, + { + "node": "e720085bf9ba7617e54c9e64888e6fa91830268d", + "bug_id": 488042, + "desc": "Backed out changeset 7ff6eeaad3d1, bug 488042", + "pushdate": "2009-05-16 06:06:11", + "backsout": [ + "7ff6eeaad3d16a34be7d2cf3a0cb685693fde65f" + ] + }, + { + "node": "fb7f8956aff514c965cbe93b858369fe02d48cc9", + "bug_id": 475737, + "desc": "Backed out changeset 0c8d4f846be8 (Fix for bug 475737 (Windows stay alive too long because nsJSContext doesn't unlink correctly).) to try to fix Tshutdown regression.", + "pushdate": "2009-05-16 14:18:37", + "backsout": [ + "0c8d4f846be88e2b6c7c0ca131e51b4876c83bbd" + ] + }, + { + "node": "6e86393b03ad1e2e801dfc1b26d81f39a3087f4e", + "bug_id": 488181, + "desc": "Backed out changeset accd95d7ba9d. [OS/2] fix build break following bug 488181", + "pushdate": "2009-05-17 01:11:47", + "backsout": [ + "accd95d7ba9d1a85a2fbc2dfe3a0d8a3f9492018" + ] + }, + { + "node": "687daa472dd409cc7a175a7cf8fbe5b056296734", + "bug_id": 488181, + "desc": "Backed out changeset 7cd22106e8d9. Simplify code for exposing plugin file names vs. full path. b=488181", + "pushdate": "2009-05-17 01:11:47", + "backsout": [ + "7cd22106e8d9784eed2acc3c063f716ffaf2605e" + ] + }, + { + "node": "e3b0b664e5ddfc425fd84409b6dc8678508a4487", + "bug_id": 486974, + "desc": "Backed out changeset d88e6b8fab83 (bug 486974) due to reftest parsing issues.", + "pushdate": "2009-05-18 16:32:46", + "backsout": [ + "d88e6b8fab83f1f7fbbec25484a74e10cefbac7f" + ] + }, + { + "node": "6fecf8267e038e5e6709c46c8c37035539e1c220", + "bug_id": 493560, + "desc": "Backed out changeset 4480c18255f2 (bug 493560)", + "pushdate": "2009-05-19 20:47:31", + "backsout": [ + "4480c18255f27af5832ca804bec4dae58bdb8561" + ] + }, + { + "node": "e54a1c608d8cb0e3a801b9928c6b8bb7b7080cca", + "bug_id": 493560, + "desc": "Backed out changeset dd3d70e5849e (bug 493560)", + "pushdate": "2009-05-19 20:47:31", + "backsout": [ + "dd3d70e5849edf509953ab09422c6f49fec969d8" + ] + }, + { + "node": "c4cea7365f4e9199f0da846b74fee206d42b4c91", + "bug_id": 493657, + "desc": "Backed out changeset cec8ee353407 (bug 493657).", + "pushdate": "2009-05-20 16:22:49", + "backsout": [ + "cec8ee353407eb98805af87a926b19746139784b" + ] + }, + { + "node": "8f6c242a75ffee31f467c7d81fea114d226a4fd8", + "bug_id": 493657, + "desc": "Backed out changeset c4cea7365f4e (re-landing 493657).", + "pushdate": "2009-05-20 16:22:49", + "backsout": [ + "c4cea7365f4e9199f0da846b74fee206d42b4c91" + ] + }, + { + "node": "a18035c7c3d2016c4b347d5a6e4109f402125b80", + "bug_id": 493657, + "desc": "Backed out changeset 8f6c242a75ff (backing out bug 493657 again).", + "pushdate": "2009-05-20 16:22:49", + "backsout": [ + "8f6c242a75ffee31f467c7d81fea114d226a4fd8" + ] + }, + { + "node": "288e71bdc98a83a5b891129aa9ef4bf329f53866", + "bug_id": 480205, + "desc": "Backed out changeset 1abeb6c87131 (Bug 480205 - Implement a wrapper for exposing chrome objects to content (aka COWs)) due to mochitest failures and leaks.", + "pushdate": "2009-05-21 10:58:20", + "backsout": [ + "1abeb6c87131ef99f9a4b84ff3d0c6ddb3ba1e2a" + ] + }, + { + "node": "10908cb7ea5b38e13b19eb0f1d71cdc713054d4d", + "bug_id": 326628, + "desc": "Backed out changeset eea9639048b8, bug 326628 main patch, due to regression bug 494899", + "pushdate": "2009-05-27 13:28:12", + "backsout": [ + "eea9639048b867e81504e14b46515a1f07bfaef9" + ] + }, + { + "node": "4156a420a7325be68b97f67bf1d7b3fdb07bdc07", + "bug_id": 326628, + "desc": "Backed out changeset 1aaacee9b2d0, bug 326628 string removal due to regression bug 494899", + "pushdate": "2009-05-27 13:28:12", + "backsout": [ + "1aaacee9b2d0b18915088807125c0103767c358b" + ] + }, + { + "node": "a0154ac712c96a49c13a43bae52c8fa00dc75aa4", + "bug_id": 487980, + "desc": "Backed out changeset c41b9f3a9d83 - bug 487980 due to backing out 326628, due to regression bug 494899", + "pushdate": "2009-05-27 13:28:12", + "backsout": [ + "c41b9f3a9d83a8f9194b5103f22454642e46cf21" + ] + }, + { + "node": "30aa3539cedca522384c7a574ecfab59902cb40b", + "bug_id": 481406, + "desc": "Backed out changeset ddd616e58309 from bug 481406 due to tinderbox shortlog\nspam", + "pushdate": "2009-05-28 11:20:17", + "backsout": [ + "ddd616e583093f3079a7a6c29f55ef39bdf27fff" + ] + }, + { + "node": "f5e133f0c13282882e632df0129993dbeb36b51b", + "bug_id": 496482, + "desc": "Backed out changeset 17664f5cab40 (bug 496482, also backing out the bug that introduced this bug).", + "pushdate": "2009-06-05 08:41:32", + "backsout": [ + "17664f5cab40ca0cb7b807ae1e5b02898ba7371e" + ] + }, + { + "node": "47ae3c6dcf9ee2b9783fa4e2f9642965b035294a", + "bug_id": 495958, + "desc": "Backed out changeset 2ad658e9f42a (bug 495958, re-opened).", + "pushdate": "2009-06-05 08:41:32", + "backsout": [ + "2ad658e9f42ad5e92d0fe3439c464c21f1d32ce3" + ] + }, + { + "node": "6bced1a34c8f04226e23cc7021fe4fe6ebf68c92", + "bug_id": 482681, + "desc": "Backed out changeset 04f5a3303ebf, bug 482681 due to test failures", + "pushdate": "2009-06-11 11:15:19", + "backsout": [ + "04f5a3303ebf0c3c67c4872f028b4838eea84a68" + ] + }, + { + "node": "97e7f0da28d6c7c4e311a49eefd8c218ca563b7d", + "bug_id": 483980, + "desc": "Backed out changeset d891a7418d95 (bug 483980)", + "pushdate": "2009-06-11 23:08:59", + "backsout": [ + "d891a7418d9514991182f2a9df9e360ebd0848db" + ] + }, + { + "node": "06027b3d50d99bb1d03ed761fb8c6e99597b718f", + "bug_id": 119061, + "desc": "Backed out changeset f3fcd36fcbd1 (bug 119061) for linux orange.", + "pushdate": "2009-06-11 23:58:06", + "backsout": [ + "f3fcd36fcbd190362e1869607d5387e23a892a51" + ] + }, + { + "node": "f0b1b5b7ae6269b70c953d939a9231beb7c53472", + "bug_id": 493723, + "desc": "Backed out changeset 2928cc356e14 of bug 493723 to fix screen reader bustage", + "pushdate": "2009-06-12 14:32:48", + "backsout": [ + "2928cc356e14d01ffe4670a9657c5e7cc90970e4" + ] + }, + { + "node": "be99fcdb6addb56c5bd73d9b18fda04490ac7eda", + "bug_id": 450930, + "desc": "backout 06a7d2def034 and 58c89ce9719d as possible cause of failure in test_bug450930.xhtml", + "pushdate": "2009-06-15 06:41:26", + "backsout": [ + "06a7d2def034ecb21b9fb5658dcc1fe090e1b586" + ] + }, + { + "node": "72f6372d784a147d2335c0371aca0602ae0678d7", + "bug_id": 493701, + "desc": "Back out 7d502207183d (Bug 493701), it really did cause the windows dhtml regression", + "pushdate": "2009-06-16 12:44:37", + "backsout": [ + "7d502207183da020cfe9071055394ce9dc9df77d" + ] + }, + { + "node": "f9c14b122aa2ead4b62b6c3329c28d014cf711a3", + "bug_id": 474369, + "desc": "Back out b8e531a6c961 (Bug 474369), it really did cause the windows dhtml regression", + "pushdate": "2009-06-16 12:44:37", + "backsout": [ + "b8e531a6c961d7e4814efb7a0bb24c3ebfd3aacd" + ] + }, + { + "node": "83ba7296195e738749ce695f89d242ea98d4bcc6", + "bug_id": 490085, + "desc": "Backed out changeset d546bd2c46a4 (bug 490085) because it's broken (and thunderbird's test caught it)", + "pushdate": "2009-06-17 20:45:30", + "backsout": [ + "d546bd2c46a4271215bbae1cbe87fdc6975afe21" + ] + }, + { + "node": "78f649cdd7f81ab9a45d60a6daecb16f44aa4d26", + "bug_id": 498899, + "desc": "Backed out changeset 7ab1be136cfa - that patch for bug 498899 has a bug.", + "pushdate": "2009-06-19 13:23:15", + "backsout": [ + "7ab1be136cfa78376328f6de33f80d110a62149f" + ] + }, + { + "node": "1e873ec2be87523bc8b5a77e581859eef40a6151", + "bug_id": 488148, + "desc": "Backed out changeset 0997bcc75daf (bug 488148). Silly me - this patch is wrong!", + "pushdate": "2009-06-19 19:22:34", + "backsout": [ + "0997bcc75daf217886ccf010cdb0b37dc3e30b26" + ] + }, + { + "node": "3ffbe0634669f82d3b3b6a3f81b3080058575301", + "bug_id": 499777, + "desc": "Backed out c8297c309ab3 (Fix for bug 499777 (Cannot convert WrappedNative to function (NS_ERROR_XPC_CANT_CONVERT_WN_TO_FUN)). r/sr=mrbkap.) to fix orange.", + "pushdate": "2009-06-23 14:47:03", + "backsout": [ + "c8297c309ab3a9de623027c7f975c7da29a2a5d3" + ] + }, + { + "node": "a8fafd6b563eefb05f2c5bbef81312a075343ccb", + "bug_id": 499664, + "desc": "Backed out changeset 55a8910d8436 (no consensus whether patch should be applied, bug 499664).", + "pushdate": "2009-06-30 19:21:13", + "backsout": [ + "55a8910d8436234482f6d000f5d008dc65c34ac9" + ] + }, + { + "node": "dd5b7ac3f7d3e1ed9ae4410dcf0ece1ec6b4ca85", + "bug_id": 498143, + "desc": "backout a2d8f3384b3c due to mochitest failures b=498143", + "pushdate": "2009-07-09 03:36:29", + "backsout": [ + "a2d8f3384b3ca6aa22eaf843b624d53a580a4034" + ] + }, + { + "node": "9d7f4b459a18e821fa66f17d8d61f94a69ab748e", + "bug_id": 503990, + "desc": "Backed out changeset c5433450795f (Bug 503990: make isStmt() table-driven).", + "pushdate": "2009-07-14 09:23:52", + "backsout": [ + "c5433450795f1f6f4b560b82938f8bf217f6e6c2" + ] + }, + { + "node": "6b7b67ed41b913e9871c41dd956ad81e97783155", + "bug_id": 503463, + "desc": "Backed out changeset 2073d5aae8b6 (Avoid integer math for GC trigger factor calculation in allocation path (bug 503463)).", + "pushdate": "2009-07-14 09:50:08", + "backsout": [ + "2073d5aae8b6d4fd5ae00b8c560f1ba44a2d5da4" + ] + }, + { + "node": "17a10b614f99d9486cc5e3f14585a49216ef1f45", + "bug_id": 503718, + "desc": "Backed out changeset 705ef05105e8 for causing bug 503718 on OS X", + "pushdate": "2009-07-15 11:14:22", + "backsout": [ + "705ef05105e82731347566a66da9151961fbf240" + ] + }, + { + "node": "980e61b2e20b207ff3d0e2c63b1c6953d5be9a84", + "bug_id": 503718, + "desc": "Backed out changeset b6d407af386f for causing bug 503718 on Windows", + "pushdate": "2009-07-15 11:14:22", + "backsout": [ + "b6d407af386fac51cbc7c511aafc01c28f9f9aba" + ] + }, + { + "node": "191ef763e892a81b56685717adad3788fad266fd", + "bug_id": 503942, + "desc": "Backed out changeset ebea850caba8 (Bug 503942) for causing timeouts of dom/tests/mochitest/geolocation/test_allowCurrent.html and test_allowWatch.html", + "pushdate": "2009-07-15 23:52:59", + "backsout": [ + "ebea850caba803942ef77addabd73a0dd9ce9087" + ] + }, + { + "node": "c0d86da168885b0cd20af7eefacb33c5e330e128", + "bug_id": 503597, + "desc": "Backed out changeset 6e11834d07c9 (Bug 503597) until x86_64 Linux tinderboxes (bug 505215) and maybe other tinderboxes (bug 505203, bug 505204) are updated.", + "pushdate": "2009-07-20 12:58:59", + "backsout": [ + "6e11834d07c9e5eb2d5d0370119b072ba14b060f" + ] + }, + { + "node": "080ff82bff5ed421cc1e4f2c65bda3aab190fcca", + "bug_id": 504705, + "desc": "Backed out changeset 692e8a1325f8 (bug 504705). Crashes with TMFLAGS=full on browser startup.", + "pushdate": "2009-07-21 04:58:00", + "backsout": [ + "692e8a1325f8ed8744de4020523bf9e7ff0f1785" + ] + }, + { + "node": "d75d6cd530413239b644ed14ef8ec76d010ecd56", + "bug_id": 501232, + "desc": "Backed out changeset 8877e1f8645b (bug 501232).", + "pushdate": "2009-07-21 04:58:00", + "backsout": [ + "8877e1f8645b8e2d0ee5e91ac593fdead31d841b" + ] + }, + { + "node": "e81b6512fc4ae2668a847bcbd136b81145934aa6", + "bug_id": 448375, + "desc": "Backed out changeset 6722800f261e - bug 448375 because it broke at least x86-64... turns out we do actually use DBUS bits from within libxul.so, and the fix for that bug may be quite a bit more complicated.", + "pushdate": "2009-07-23 17:45:58", + "backsout": [ + "6722800f261ef0787bd1a767c6e3cd8e9a70c3db" + ] + }, + { + "node": "2772a410e518ffa9ef8aba6cfcb235f75c92297a", + "bug_id": 506116, + "desc": "Backed out changeset 870f451d8385 from bug 506116", + "pushdate": "2009-07-28 07:41:27", + "backsout": [ + "870f451d8385af4fdeee958e7b1067bbf69b96da" + ] + }, + { + "node": "069d94d0d7ef237e07669cc9399444bf08a5a5a5", + "bug_id": 495176, + "desc": "Backed out changeset 9d5e247b5052 to see whether bug 495176 might be causing\nthe WinXP Txul regression.", + "pushdate": "2009-07-28 18:39:06", + "backsout": [ + "9d5e247b505267fe6d1aaf9ae0db8a30c20d808b" + ] + }, + { + "node": "78b2c479870c73c5da37cdcf1b012061c60be326", + "bug_id": 495176, + "desc": "Backed out changeset b55e7e3c0bfb to see whether bug 495176 might be causing the WinXP Txul regression", + "pushdate": "2009-07-28 18:39:06", + "backsout": [ + "b55e7e3c0bfb2f1e09c54d41e64f6069e9987890" + ] + }, + { + "node": "0468583f64f4ba451040840369df0dd03ce35e75", + "bug_id": 496823, + "desc": "Backed out changeset 622a29736f33 to see whether bug 496823 causes the WinXP Txul regression.", + "pushdate": "2009-07-28 18:39:06", + "backsout": [ + "622a29736f33891b79d0187dabe1d0ea2ef4615b" + ] + }, + { + "node": "c1ab8650e0cee5e6e3592bdce8d8103fd16bea1a", + "bug_id": 505988, + "desc": "Backed out changeset 03c40c5a2d4b (bug 505988) to fix password manager test orange.", + "pushdate": "2009-07-30 15:03:51", + "backsout": [ + "03c40c5a2d4be8a6cf2e7fa37050e78ff064ac3c" + ] + }, + { + "node": "60b97c3496c4517e74445b2e741629f9d5373e95", + "bug_id": 504422, + "desc": "Backed out changeset 06433d3dafd9 (bug 504422) because the patch is wrong.", + "pushdate": "2009-07-30 17:34:32", + "backsout": [ + "06433d3dafd932539aa3c64d404e4ed04208da52" + ] + }, + { + "node": "236a7507a0f1e0127782daff0d5cb2d2683e5f69", + "bug_id": 504384, + "desc": "Backed out changeset 246b44df7dd3 (bug 504384).\nThis fix was wrong.", + "pushdate": "2009-07-30 17:34:32", + "backsout": [ + "246b44df7dd37aba850e536fdae31221f8de424b" + ] + }, + { + "node": "6fa97a14dde15f0c89160cc15a4e7ba928ea55f2", + "bug_id": 504311, + "desc": "Backed out changeset 8506b25206cf (bug 504311) because the test added uses enablePrivilege which hangs tinderbox asking for privileges.", + "pushdate": "2009-07-30 20:17:53", + "backsout": [ + "8506b25206cf63f5da2f4c4d7902c5140e2724e5" + ] + }, + { + "node": "c6cab4ce7379c19306d34d7e923a59ea538cd62a", + "bug_id": 499655, + "desc": "Backed out changeset 358af1196dc2 (bug 499655) until we get bug 507487 sorted out.", + "pushdate": "2009-07-31 16:41:01", + "backsout": [ + "358af1196dc2b298080cbe73efc9d5570153876e" + ] + }, + { + "node": "d556710b95a87c8f2d69e085c1d399d36886d25c", + "bug_id": 506812, + "desc": "Backed out changeset ad9a4a3a5409, bug 506812. CLOSED TREE", + "pushdate": "2009-07-31 20:50:50", + "backsout": [ + "ad9a4a3a54095479c020f18fc6c57d65dd4b28f6" + ] + }, + { + "node": "8e2681f2fcba3a5d56f421d28e6ee0a9a5f4658f", + "bug_id": 506812, + "desc": "Backed out changeset 4318f781ab87 to investigate Ts changes, b=506812 CLOSED TREE", + "pushdate": "2009-07-31 20:54:50", + "backsout": [ + "4318f781ab87deddf9d4f6f9bca7501567323bf2" + ] + }, + { + "node": "1708ccd0ffe4a65523cadc76d5e94c1f83cbd5ba", + "bug_id": 501608, + "desc": "Backed out changeset 8cd49a8cbb88 (bug 501608) on suspicion of causing lots of mochitest-browser-chrome timeouts and leaks (bug 507698).", + "pushdate": "2009-07-31 21:54:27", + "backsout": [ + "8cd49a8cbb88c1316079b79b7a10b5b135fb4e9a" + ] + }, + { + "node": "850b96d836c46b5c3aa67c7b9207e22ffc1f0822", + "bug_id": 507605, + "desc": "Backed out changeset 6a5f22ccbe0e (no bug) to see if it is the cause of the mozilla-browser-chrome orange (bug 507605 and bug 507698)", + "pushdate": "2009-08-01 02:38:15", + "backsout": [ + "6a5f22ccbe0e" + ] + }, + { + "node": "94e882183752b48c85bf046e13908bfe26a72ffe", + "bug_id": 125282, + "desc": "Backed out changeset 8366e5cc9f57 (bug 125282) because of four windows unit test oranges in a row (all timed out when running mochitest-plain)", + "pushdate": "2009-08-02 10:41:59", + "backsout": [ + "8366e5cc9f57cbcb1168385cdd38b7da124e95a4" + ] + }, + { + "node": "7fb86c108ae7981111030e5520593c10859d3562", + "bug_id": 502288, + "desc": "Backed out changeset 25462849adcc (bug 502288) to get some talos cycles for the tracemonkey merge without this patch in.", + "pushdate": "2009-08-03 19:12:58", + "backsout": [ + "25462849adcc87648a7fa7fc362b34dd3931a82b" + ] + }, + { + "node": "c29765db7521970a25767c46a0876f12ef39e1ee", + "bug_id": 459114, + "desc": "Backed out changeset 9ddc25fb2246 - bug 459114 - helper function to provide a clean profile directory for xpcshell tests. r=sdwilsh - for test failures", + "pushdate": "2009-08-05 19:36:30", + "backsout": [ + "9ddc25fb224655f0300f78c8fe9c8ebbd4a70488" + ] + }, + { + "node": "227c1358d161e4ec2745b8cb9f777d6ad9695d92", + "bug_id": 505718, + "desc": "Backed out changeset bae405b94b96 (testing to see if it affected bug 505718, bug 508767) to re-enable leaked url dump for unit test boxes.", + "pushdate": "2009-08-07 15:23:53", + "backsout": [ + "bae405b94b961ea90c8793b05e19992ffe7bed48" + ] + }, + { + "node": "b3631e1453f29a5020a393b960b1eb851a770279", + "bug_id": 429954, + "desc": "Backed out changeset b52fa2372a3a, bug 429954 because of test_popup_preventdefault_chrome.xul orange.", + "pushdate": "2009-08-12 23:44:06", + "backsout": [ + "b52fa2372a3aa6c622ab865987fa7d6e6f6354ea" + ] + }, + { + "node": "157b3aa1100f993e37b419c048e30c9d2b61b26f", + "bug_id": 510193, + "desc": "Backed out changeset a17cbb14793f (bug 510193) which caused trace-test.js to fail (spuriously) on x86.", + "pushdate": "2009-08-13 21:38:45", + "backsout": [ + "a17cbb14793f5db1218a2634a185715bf720c477" + ] + }, + { + "node": "6c04c1cdedcb5489ee4e2ea3871e574efbfefb65", + "bug_id": 494927, + "desc": "Backed out changeset 43fdf17e10a3, bug 494927, because of a 2.5% Mac Txul regression", + "pushdate": "2009-08-14 04:53:30", + "backsout": [ + "43fdf17e10a33aa10bee5fcbcb289e023c403802" + ] + }, + { + "node": "a6fa91f76877b834d4e7db0d5b847a9353156e3e", + "bug_id": 378528, + "desc": "Backed out changeset 21ad4f1ce214 - Ted Mielczarek \u2013 bug 378528 - crash reporter should allow resubmission of pending reports, due to leaks", + "pushdate": "2009-08-17 18:45:00", + "backsout": [ + "21ad4f1ce2145b76592c958153009bf35f66a442" + ] + }, + { + "node": "ae162a38f56ed5090f6b3b3ebf92d0ff13cff9b1", + "bug_id": 502307, + "desc": "Backed out changeset 405a715a4d81 from bug 502307 due to test failures", + "pushdate": "2009-08-19 09:38:41", + "backsout": [ + "405a715a4d8148131ccdc89a1dcd799bf96b0fe0" + ] + }, + { + "node": "36d3597620c7b8392cfb99cc056dcbd2caea2de4", + "bug_id": 482935, + "desc": "Backed out changeset 3a829715fd39 (Bug 482935) on suspicion of causing mochitest-plain leaks.", + "pushdate": "2009-08-20 19:23:10", + "backsout": [ + "3a829715fd3983cadb48d9de83b78bf85daffd2e" + ] + }, + { + "node": "85899e12310f9eb9be0db8ec7fd421c238c40a26", + "bug_id": 445765, + "desc": "Backed out changeset 6b686281f9ac (Bug 445765) for causing a 3% Txul (Twinopen) regression on Linux.", + "pushdate": "2009-08-23 15:07:40", + "backsout": [ + "6b686281f9acdf3af782754eb1bac0966eea0851" + ] + }, + { + "node": "201784b33fc94a3a55139cc7dc8684e66aee803c", + "bug_id": 488249, + "desc": "Backed out changeset eb32cbfba7f5 (bug 488249 followup) to fix test orange.", + "pushdate": "2009-08-25 00:52:50", + "backsout": [ + "eb32cbfba7f58425d354abb870ce697465bed3c2" + ] + }, + { + "node": "7687616b2a35d841691da03b55eb482965eb1548", + "bug_id": 488249, + "desc": "Backed out changeset 59ae87416f96 (bug 488249 followup) to fix test orange.", + "pushdate": "2009-08-25 00:52:50", + "backsout": [ + "59ae87416f96691b00ea478036eb2ef04546eb18" + ] + }, + { + "node": "2e8b6f1bf670fc64652d0f82cd140fc339b96daf", + "bug_id": 488249, + "desc": "Backed out changeset 4aa19414e651 (bug 488249) to fix test orange.", + "pushdate": "2009-08-25 00:52:50", + "backsout": [ + "4aa19414e651669fa16f4c4a5ac53567f8f471c9" + ] + }, + { + "node": "b5c5bf855c53870a43f0681f68012ce2bf362366", + "bug_id": 474536, + "desc": "Backed out changeset 6ee269c6c118 (test for bug 474536) because it hangs on Tinderbox", + "pushdate": "2009-09-02 17:35:49", + "backsout": [ + "6ee269c6c118762de6d21b86025c2792290750f6" + ] + }, + { + "node": "941346617e4fa0946dea86a611917d7362765d10", + "bug_id": 510920, + "desc": "Backed out changeset e8c01867056a, breakpad update b=510920", + "pushdate": "2009-09-04 04:02:57", + "backsout": [ + "e8c01867056a2dea44260030f35f743f73c7e272" + ] + }, + { + "node": "845b66a2eb91290ec6ef4a5cf2c2ec587b5c8ca3", + "bug_id": 514891, + "desc": "Backed out changeset b652e12fc7e3 because of bug 514891", + "pushdate": "2009-09-07 12:18:27", + "backsout": [ + "b652e12fc7e3a68a2a0aca08f6515477be3d32c5" + ] + }, + { + "node": "ce62745a7c9c72cd51034b9f9710af3d2e45d038", + "bug_id": 514891, + "desc": "Backed out changeset 83ba2c6e25eb because of bug 514891", + "pushdate": "2009-09-07 12:18:27", + "backsout": [ + "83ba2c6e25eb1fb9f3962eebeb4e041176133fb9" + ] + }, + { + "node": "c1e5dcec20dd02e3de3d6f785408840aaa91b48d", + "bug_id": 506812, + "desc": "Back out changeset 845b625b5eb5. b=506812", + "pushdate": "2009-09-09 13:59:18", + "backsout": [ + "845b625b5eb532b65346e0ca5f3e199d8fbfe13e" + ] + }, + { + "node": "6119349e864e7d27faf80076cb7ceb790a846fc5", + "bug_id": 514803, + "desc": "Backout ffcfaed61bed: Taras Glek \u2013 Bug 514803 - Fix for new Date().toLocaleString() triggers \"An error occured throwing an exception\". Moved more charset files to jar r=bsmedberg\n\nThis caused an unexplained Ts improvement and obj-c exceptions during Ts.", + "pushdate": "2009-09-14 20:55:06", + "backsout": [ + "ffcfaed61bedaeed17963c98015d8beb53d39e9b" + ] + }, + { + "node": "71e1c4bdc3c8c9be8e849c871e294dc8a11c8be7", + "bug_id": 497495, + "desc": "Backed out changeset a3f33def2dca (bug 497495 part 4)", + "pushdate": "2009-09-15 00:27:03", + "backsout": [ + "a3f33def2dca968d2b335c55c2daf92a10499282" + ] + }, + { + "node": "dc2598d08078bade237e66b83bf0b29ebc6b7db7", + "bug_id": 504516, + "desc": "Backed out changeset 48c039f7ac4f (bug 504516).", + "pushdate": "2009-09-16 23:16:27", + "backsout": [ + "48c039f7ac4f41126099492743718e83095baea0" + ] + }, + { + "node": "0ae65841fcf88595e023f93b86451f5fd341824e", + "bug_id": 471214, + "desc": "Back out changeset aff171a8c4f0 (bug 471214).", + "pushdate": "2009-09-16 23:16:27", + "backsout": [ + "aff171a8c4f0009224cb87eb97b47372318bc493" + ] + }, + { + "node": "3a8acec844913490ca457c9daa16663cbaf5a411", + "bug_id": 504516, + "desc": "Backed out changeset dc2598d08078 (re-landing bug 504516).", + "pushdate": "2009-09-16 23:16:27", + "backsout": [ + "dc2598d08078bade237e66b83bf0b29ebc6b7db7" + ] + }, + { + "node": "cda3d0eefedd79d3741d474678ab396d56c56ba1", + "bug_id": 515290, + "desc": "Backed out changeset 5c7fbeed8f96 (bug 515290, accidentally committed unrelated changes with the bug).", + "pushdate": "2009-09-16 23:16:27", + "backsout": [ + "5c7fbeed8f96bc2a23341f5ed895e72253b6654b" + ] + }, + { + "node": "68b5e9772b4cd613caad675815d949a7528526a8", + "bug_id": 494165, + "desc": "Backed out changeset e5f6affc4c88 for breaking Mochitest\nBug 494165 - Support --total-chunks, --this-chunk, --chunk-by-dir, and --shuffle arguments to runtests.py. r=ted", + "pushdate": "2009-09-21 13:10:14", + "backsout": [ + "e5f6affc4c8868f65c61c9dafb4540c88991e463" + ] + }, + { + "node": "80f8fb6eb86e72f39cd3f6ff0f6af48329e8b380", + "bug_id": 517804, + "desc": "Backed out changeset 7799cfb99362 (Bug 517804 - Flush reflows and invalidations during viewWillDraw) because it caused a ts_shutdown regression.", + "pushdate": "2009-09-22 20:54:29", + "backsout": [ + "7799cfb993623e112a2555d6de0c4a45d29c1c90" + ] + }, + { + "node": "75a5fcf1a393cfccab3141f4774307d4b05c31fd", + "bug_id": 512865, + "desc": "Backed out changeset cb4f078cc8cb (bug 512865)\n\nWas causing crashes on the leak test box.", + "pushdate": "2009-09-25 03:36:19", + "backsout": [ + "cb4f078cc8cb1b9f136986e7716305099dec8a47" + ] + }, + { + "node": "687f2a1f5ad278bbc52e6e4ff3ef829d18339ef0", + "bug_id": 500431, + "desc": "Backed out changeset eafee0100926 (bug 500431) due to Tinderbox orangeness", + "pushdate": "2009-09-26 03:38:06", + "backsout": [ + "eafee0100926764290cd41a5564f00df140315f1" + ] + }, + { + "node": "873dd3e379db6061c9f0cb4c0c401fb0bc656421", + "bug_id": 500431, + "desc": "Backed out changeset 8abad92fd850 (bug 500431) due to Tinderbox orangeness", + "pushdate": "2009-09-26 03:38:06", + "backsout": [ + "8abad92fd850559cfb11adfb1077371e8eca110d" + ] + }, + { + "node": "31b6f6e8a56d0074eb82807a47162054b6fd522d", + "bug_id": 500431, + "desc": "Backed out changeset 3f508cfdfa36 (bug 500431) due to tinderbox orangeness", + "pushdate": "2009-09-26 03:38:06", + "backsout": [ + "3f508cfdfa36efe22be8c40415a24bbe28b35356" + ] + }, + { + "node": "0f39d12ba50518f25c340f088103ba6f1c607b26", + "bug_id": 500431, + "desc": "Backed out changeset 2fbd2420ef8b (bug 500431) due to Tinderbox orangeness.", + "pushdate": "2009-09-26 03:38:06", + "backsout": [ + "2fbd2420ef8b793672ccc6a9fd3cb65b2b9c9340" + ] + }, + { + "node": "2c67a109e6265c64b3126c111de59482018242f0", + "bug_id": 518448, + "desc": "Backed out changeset f5ea964eb493. (Brendan Eich \u2014 High-level CSE for shape guards (518448, r=jorendorff).", + "pushdate": "2009-09-26 15:23:09", + "backsout": [ + "f5ea964eb493458189bb2ff20cfff74a04e3e4d0" + ] + }, + { + "node": "744a11942d04650232e02df7954db4dc5452ef79", + "bug_id": 506812, + "desc": "Backed out changeset 65aff8912e7c. b=506812", + "pushdate": "2009-09-27 07:10:24", + "backsout": [ + "65aff8912e7c92d424ce046c976a29ced1266f99" + ] + }, + { + "node": "08c4c88536854e24ec9cc9bc14f5d148e39bc661", + "bug_id": 506812, + "desc": "Backed out changeset 76c570389975. b=506812", + "pushdate": "2009-09-27 09:55:57", + "backsout": [ + "76c570389975acff5eac2dc5d7c443f09d666dd9" + ] + }, + { + "node": "7eab054403ff5dc04f3ce061125a32049476041a", + "bug_id": 517604, + "desc": "Backed out changeset 467f14a11325 (bug 517604)", + "pushdate": "2009-10-01 00:04:41", + "backsout": [ + "467f14a11325660510a69ec0f2240f7bd685cc0e" + ] + }, + { + "node": "2144fdf97e50c3a09502d25f593785a66b237102", + "bug_id": 518940, + "desc": "Backed out changeset e22b5d4e8ce9 (bug 518940) on suspicion of causing Linux orange.", + "pushdate": "2009-10-01 03:19:04", + "backsout": [ + "e22b5d4e8ce934f01713a8c51357564a79147e7a" + ] + }, + { + "node": "fb9d4a6b8330adff5022ccdaeb52285f3d95a693", + "bug_id": 518991, + "desc": "Backed out changeset 58c5864cb9c6 (Bug 518991) due to linux orange (test failure in test_bug408328.html & 9240-byte leak)", + "pushdate": "2009-10-01 06:43:45", + "backsout": [ + "58c5864cb9c6614dbcb3a652f2112f8a189cb3f0" + ] + }, + { + "node": "f0bf246917580c878b38181ad1ed519b2a181934", + "bug_id": 517199, + "desc": "Backed out changeset 31682547b6f1 - bug 517199 has shown persistent failure on Windows tinderboxes.", + "pushdate": "2009-10-07 06:47:58", + "backsout": [ + "31682547b6f1367b15f8dc2206310160ea72a3f7" + ] + }, + { + "node": "0416997adea8dea5e38e9ff5ed802fd1d29857b3", + "bug_id": 517199, + "desc": "Backed out changeset 19b4c1cacdb8 - everything related to bug 517199.", + "pushdate": "2009-10-07 06:47:58", + "backsout": [ + "19b4c1cacdb8566e50754fa077448f82f5fdb333" + ] + }, + { + "node": "5f550d67ae78e4db972d23f5132d3d304996cdc3", + "bug_id": 517196, + "desc": "Backed out changeset 542fa9413bd0, fix for bug 517196 (The JSClass of wrappers shouldn't change when morphing from slim to XPCWrappedNative), to try to fix orange.", + "pushdate": "2009-10-08 20:42:17", + "backsout": [ + "542fa9413bd08e153155cee686a99e445d32b6c8" + ] + }, + { + "node": "8d2de8ddfa3b79064d583a93d239153849decef6", + "bug_id": 456646, + "desc": "Backed out changeset 8c4658f8f0dc, bug 456646 (Cocoa print dialog) - we can do better.", + "pushdate": "2009-10-09 07:14:00", + "backsout": [ + "8c4658f8f0dc147ef1d39486bb18b7557174deb6" + ] + }, + { + "node": "505a2a075e1125d4e22bd39de319aba6b75fd275", + "bug_id": 516013, + "desc": "Backed out changeset 5f03363ae12d (Bug 516013) due to xpcshell test failure (test_LightweightThemeManager) caused by exception thrown from the code added in that changeset.", + "pushdate": "2009-10-09 20:32:36", + "backsout": [ + "5f03363ae12d29d35a2a6b5d416e7facd3d39cab" + ] + }, + { + "node": "b40bf2ef14a7abd4780f5e27b3f1b6a6eeaf2040", + "bug_id": 489925, + "desc": "Backed out changeset c5fe17b1caa9 (bug 489925)", + "pushdate": "2009-10-13 20:51:31", + "backsout": [ + "c5fe17b1caa9260622d530c0bc881cd5ce365a93" + ] + }, + { + "node": "86a6cd7011186bb5f48d02df639989627ce159bc", + "bug_id": 511761, + "desc": "Backed out changeset 89f53914ecd9 (bug 511761)", + "pushdate": "2009-10-14 19:44:25", + "backsout": [ + "89f53914ecd9ef406178ba6d8cdbde8db65610bf" + ] + }, + { + "node": "c0af5f72e7a8c6ad41dfa35b404487eb98bde2a8", + "bug_id": 521880, + "desc": "Backed out changeset 1a747dd43904 (bug 521880).", + "pushdate": "2009-10-16 17:35:08", + "backsout": [ + "1a747dd439049f11fcdc9fb0abfff4530e72f88c" + ] + }, + { + "node": "39b3dbc393bf8996d58e6b2289d6d15622c5175c", + "bug_id": 505315, + "desc": "Backed out changeset 487b81c753c0 - landing of bug 505315 caused talos crashes across platforms.", + "pushdate": "2009-10-16 17:35:08", + "backsout": [ + "487b81c753c0cb8080343beb4013424d6fe162df" + ] + }, + { + "node": "ef149d6975fba3847d8fa31a0913b8669e39bfd7", + "bug_id": 519843, + "desc": "Backed out changeset 9992a4a638e2 due to Tp regression (was bug 519843)", + "pushdate": "2009-10-21 14:58:16", + "backsout": [ + "9992a4a638e2598850d67f02672c038cb624513a" + ] + }, + { + "node": "f702deeb07be290c488489585cb969ee202ff537", + "bug_id": 517109, + "desc": "Backed out changeset 899023a9fbb0 due to Ts regression (was bug 517109)", + "pushdate": "2009-10-21 14:59:50", + "backsout": [ + "899023a9fbb058ef5a75986a393d8298a8cbd9bf" + ] + }, + { + "node": "e3f00dd9617b2918b6ee116026914972eef95a61", + "bug_id": 300904, + "desc": "Backed out changeset 3ee95c194798, bug 300904 (tracking rects) in order to investigate the Mac DHTML performance regression.", + "pushdate": "2009-10-21 15:10:31", + "backsout": [ + "3ee95c194798dfee926d4485165dfa650a0a27fc" + ] + }, + { + "node": "9e086fa7728869c161e37deefacb75ddcda34f65", + "bug_id": 523934, + "desc": "Backed out changeset 1aea70ef6f63 (temporary debugging code for bug 523934).", + "pushdate": "2009-10-23 14:47:50", + "backsout": [ + "1aea70ef6f63b5a55b8f80de9c3d6367305987be" + ] + }, + { + "node": "2909091fb254aa31b11cdfb4f4e9a25ab4253d85", + "bug_id": 524346, + "desc": "Backed out changeset 14c76164f4c2 - patch for bug 524346 caused test fails", + "pushdate": "2009-10-29 21:11:42", + "backsout": [ + "14c76164f4c27bd969eec08f31f36f0101fff59f" + ] + }, + { + "node": "fdc781e5774d92e5cd542b878ef2d33eceb00f4f", + "bug_id": 515211, + "desc": "Backed out changeset 109b74e8e902 due to tinderbox bustage (was bug 515211)", + "pushdate": "2009-10-30 18:15:48", + "backsout": [ + "109b74e8e90201e3061449731e10fd502fb32a27" + ] + }, + { + "node": "6258b513a554c5098972f89716461dd5460f09c2", + "bug_id": 526178, + "desc": "Backed out changeset 2fa27d8cd3d2 (bug 526178) to fix browser-chrome orange.", + "pushdate": "2009-11-05 01:42:46", + "backsout": [ + "2fa27d8cd3d20fbad807a7f9fc4a9b2728d8b8f4" + ] + }, + { + "node": "811e1602f0ab7f1c533ad8e1e54f756b9b8eab08", + "bug_id": 526789, + "desc": "Backed out changeset a696d331ebf7 (bug 526789) for test failures", + "pushdate": "2009-11-10 03:48:53", + "backsout": [ + "a696d331ebf79713e699db5675c7edc6bdf1a4e0" + ] + }, + { + "node": "e8f791a62494b867be1757d44fe4e045afd406d6", + "bug_id": 525221, + "desc": "Backed out changeset 3e1290bba902 - Bug 525221 which was committed accidentally.", + "pushdate": "2009-11-10 14:54:29", + "backsout": [ + "3e1290bba9029798016d7106237fea5850f8840c" + ] + }, + { + "node": "eb6ad91709a7d298f32e70dbee18e9babc4a420a", + "bug_id": 528776, + "desc": "Backed out changeset fa212b6a9d72 to see if it caused bug 528776", + "pushdate": "2009-11-18 08:23:36", + "backsout": [ + "fa212b6a9d72832a0c76ddf50c2bf4096570c264" + ] + }, + { + "node": "ac278013c79942a704e998304c58067803d41e2d", + "bug_id": 478047, + "desc": "Backed out changeset 975b36c50d33; bug 478047's fix was misguided and contra ES5, and moving to ES5 semantics at this late date in the release cycle seems unwise. We'll move from old and busted directly to ES5 shortly after 3.6 so as to provide maximum time for ironing out incompatibilities in the wild. r=gal", + "pushdate": "2009-11-19 10:58:47", + "backsout": [ + "975b36c50d33c8de608e798fcde43043db10bf68" + ] + }, + { + "node": "6432560e430e1db22fe038e4450a4912221837f4", + "bug_id": 495392, + "desc": "Back out changeset c9c35333436b / Bug 495392 due to build bustage", + "pushdate": "2009-11-24 22:31:04", + "backsout": [ + "c9c35333436bbc7b67f0414ee039d1b26d598f8c" + ] + }, + { + "node": "e101dddbc4324f9ef356207c1bcf8a65b184f5ff", + "bug_id": 424558, + "desc": "Backed out changeset b774250f04d3 - the landed patch for bug 424558 has regressed.", + "pushdate": "2009-12-01 18:15:12", + "backsout": [ + "b774250f04d3cfe7a8caeaca641ade1c95edb18a" + ] + }, + { + "node": "fb34a7163a43fbf79f8d1a460804452df4cf86c7", + "bug_id": 530507, + "desc": "Backed out changeset c696751593d6. Tolerate race condition or broken resolve hook (530507, r=jorendorff).", + "pushdate": "2009-12-01 18:15:12", + "backsout": [ + "c696751593d6056cdc40e31d4c5604338ec1d0a6" + ] + }, + { + "node": "ee7bfc1923adbc60e9223103e88b3d14286137d7", + "bug_id": 473228, + "desc": "Backed out changeset c03ebf340688. Bye-bye middle-deletes and their O(n^2) worst case complexity; hello dictionary-mode scopes (473228, r=jorendorff).", + "pushdate": "2009-12-01 18:15:12", + "backsout": [ + "c03ebf340688227093e8fece0634afc31813919b" + ] + }, + { + "node": "1da324b951822655298a68e7ed122531ce36d59d", + "bug_id": 525356, + "desc": "Backed out changeset a93d705bb969 (bug 525356).", + "pushdate": "2009-12-01 23:07:52", + "backsout": [ + "a93d705bb969573e1298e95bee43281822d20880" + ] + }, + { + "node": "8e986811ab388f741166aa7b34e2caa0f8088cd4", + "bug_id": 526601, + "desc": "Backed out changeset e9f64cd044f3 (bug 526601)", + "pushdate": "2009-12-01 23:07:52", + "backsout": [ + "e9f64cd044f3af6a40f6fac1f4d377890b92badc" + ] + }, + { + "node": "78faeda5e9702c28f7ac40bdd2ec5bc2cce13c85", + "bug_id": 496019, + "desc": "Backed out changeset f91a016416d1 (bug 496019)", + "pushdate": "2009-12-01 23:07:52", + "backsout": [ + "f91a016416d11272380828cc0b20c97a7c8cf851" + ] + }, + { + "node": "0af1f99d2cb05b4412464758b7f3b16ca0586ceb", + "bug_id": 524745, + "desc": "Back out 7856366bcd76 (Bug 524745 - \"Session restore sets focus to minimized windows\") to fix orange, also doesn't have approval yet.", + "pushdate": "2009-12-03 11:27:44", + "backsout": [ + "7856366bcd7639c1fbef1c9c2f311a7d3fff9bb0" + ] + }, + { + "node": "4bbe26190c7dc6dad0c1c3440a9064b92a2a8bd7", + "bug_id": 525047, + "desc": "Back out revision dbdbe3ad0234 from bug 525047 - every leak test box that's clobbered since it landed has failed, not finding the first thing it tries to import from automationutils", + "pushdate": "2009-12-16 04:36:11", + "backsout": [ + "dbdbe3ad0234dd583e5e79e790d68d5eaa29b7a4" + ] + }, + { + "node": "31067e0bf8bf4d1f532db455e07e710b4a1ac657", + "bug_id": 532542, + "desc": "Backed out changeset a6d5fda15815 for bug 532542 due to a test failure.", + "pushdate": "2009-12-16 08:22:45", + "backsout": [ + "a6d5fda1581505489181e12dea7de232aa854b43" + ] + }, + { + "node": "ada564e50e86a6285a5a6773cadf7b2f5bc16885", + "bug_id": 533688, + "desc": "Backed out changeset 08e208698ef0: Bug 533688 (Firefox 3.6 failed to start with AT-SPI2 0.1.3) because of consistent orange on Mac/Linux:\n\n1001 ERROR TEST-UNEXPECTED-FAIL | chrome://mochikit/content/a11y/accessible/test_events_doc.html | Test timed out.\n1011 ERROR TEST-UNEXPECTED-FAIL | chrome://mochikit/content/a11y/accessible/test_events_draganddrop.html | [SimpleTest/SimpleTest.js, window.onerror] An error occurred - nsIAccessibleEvent is not defined at chrome://mochikit/content/a11y/accessible/events.js:766\nand subsequent errors and leaks", + "pushdate": "2009-12-16 15:33:14", + "backsout": [ + "08e208698ef06722b65e7bd79c09bb9440481584" + ] + }, + { + "node": "382b527f32a5a15af9d5387b5061a67e03b40145", + "bug_id": 474500, + "desc": "Backed out changeset 94561cb0f0bd, bug 474500 because of static-analysis bustage.", + "pushdate": "2009-12-21 15:00:07", + "backsout": [ + "94561cb0f0bd8890f86cbdfb782f8426a32af5b7" + ] + }, + { + "node": "f32e7f33b01530d2dba7594c3899a1922da92f3c", + "bug_id": 531585, + "desc": "Backout revisions fa5326c011b8, 8b22441911b0, and cfa10b01b1f6 (bug 531585) on suspicion of causing random orange bug 536382.", + "pushdate": "2009-12-22 20:49:25", + "backsout": [ + "fa5326c011b8d22f132d59d191b8f3316be5dda9", + "cfa10b01b1f657b7ac20ccaef5a666ffc334881c", + "8b22441911b036039ea3927cb2859ac4d67ae8b5" + ] + }, + { + "node": "03bec0d8715431e0ce811be9d7fe98e37c970978", + "bug_id": 535004, + "desc": "Backed out changeset 2752efeb2fdd (Bug 535004: Check if we've fired an unload event before calling OnPageShow, in DocumentViewerImpl::LoadComplete) because the NS_ABORT_IF_FALSE that it added is firing in reftest and crashtest, at least on Linux.", + "pushdate": "2009-12-24 04:06:14", + "backsout": [ + "2752efeb2fddf68d810ccc9194b9fa24b0b45088" + ] + }, + { + "node": "a7e65c58693ee91a2756dcf0f5effd79237b5297", + "bug_id": 529597, + "desc": "Backed out changeset 06e4ea15db72 (bug 529597) because of test_bug_405924.html failure", + "pushdate": "2009-12-29 12:35:10", + "backsout": [ + "06e4ea15db723b87686b2c9095c9418c8d7bccdc" + ] + }, + { + "node": "ba2968f7fe46a45b9805a3c133aa1a052d18c964", + "bug_id": 530374, + "desc": "backout changeset dfc79d02e945, bug 530374 due to build failure", + "pushdate": "2009-12-31 00:07:12", + "backsout": [ + "dfc79d02e945f241872e0b1009fc09b581c398a3" + ] + }, + { + "node": "387da540301942dae8f4385322ff1a611f4449e8", + "bug_id": 396367, + "desc": "Backed out changeset 640bf652618a (bug 396367)", + "pushdate": "2010-01-02 02:30:58", + "backsout": [ + "640bf652618a494751c80f5df9077d0833109a31" + ] + }, + { + "node": "35fec83dd2c53414d021c2bbae436f5b4d30b7d7", + "bug_id": 396367, + "desc": "Backed out changeset 63d4a49fbec1 (bug 396367)", + "pushdate": "2010-01-02 02:30:58", + "backsout": [ + "63d4a49fbec16b375f4a6cd72978d27573413eb1" + ] + }, + { + "node": "ee9b5d13cbaf7f63bf6d757629d4f745f1e84350", + "bug_id": 324278, + "desc": "Backed out changeset 3862a7e48e79 due to tinderbox failures on js1_5/GC/regress-324278.js.", + "pushdate": "2010-01-11 16:41:31", + "backsout": [ + "3862a7e48e79354ba53cb9c966114810ea6095a3" + ] + }, + { + "node": "2332266baf4de6387cd6572e5de9ff391e9f19d8", + "bug_id": 539165, + "desc": "Backed out changeset 4b725bb53baa from bug 539165 due to reftest failure", + "pushdate": "2010-01-13 00:28:11", + "backsout": [ + "4b725bb53baada5ccecf0c37c51042f821413743" + ] + }, + { + "node": "974d9ffda7b6ae093fa49de036c60a7780af4e8e", + "bug_id": 461291, + "desc": "Backed out changeset bde448aad47c, bug 461291, due to SunSpider and DHTML performance regression.", + "pushdate": "2010-01-13 19:56:38", + "backsout": [ + "bde448aad47ccb0215415f3cdc8abc58cb7d8638" + ] + }, + { + "node": "1ef1d73eb050f79d35b528150c425022ee61f0ba", + "bug_id": 461291, + "desc": "Backed out changeset bde448aad47c, bug 461291, due to SunSpider and DHTML performance regression.", + "pushdate": "2010-01-13 19:56:38", + "backsout": [ + "bde448aad47ccb0215415f3cdc8abc58cb7d8638" + ] + }, + { + "node": "ffab97de1041b4ef62a31b104dd399033c7c773d", + "bug_id": 521377, + "desc": "Backout 76cdc8296409 and 9baa220b27c0 (Bug 521377 - 'NPRuntime: Segfault when NPP_GetValue_NPPVpluginScriptableNPObject returns a null actor') to try fo fix orange.", + "pushdate": "2010-01-19 12:01:49", + "backsout": [ + "76cdc829640917cfeddfb7324c761ea9609560fe" + ] + }, + { + "node": "b7008e0642660abcb74fccec100c3cbd45edc6bb", + "bug_id": 541739, + "desc": "Backed out changeset 4d7bde383df5 from bug 541739 due to test failures", + "pushdate": "2010-01-27 03:05:52", + "backsout": [ + "4d7bde383df56ee5910b7aa18a6a59f7461e377c" + ] + }, + { + "node": "6d50455cabaa3c695ad6e23200782d0790d6d59d", + "bug_id": 543034, + "desc": "Backed out changeset dc7a04be6904 on suspicion of causing bug 543034.", + "pushdate": "2010-01-30 03:08:18", + "backsout": [ + "dc7a04be6904be41a95c33d70ba5908c3b8a2fc0" + ] + }, + { + "node": "aefe5d2d14d87caa20f4ee572888fc01d46e0a2d", + "bug_id": 540910, + "desc": "backout ebca6061298f as an immediate flush should not be necessary b=540910", + "pushdate": "2010-02-02 06:01:17", + "backsout": [ + "ebca6061298fdd3c51bb10e097c4fa943162a82c" + ] + }, + { + "node": "a8d05daa31921404c46e258857f0e9c4513382ae", + "bug_id": 355548, + "desc": "backout 4dc8bdb7af6d due to 355548-2 reftest failure", + "pushdate": "2010-02-02 07:30:20", + "backsout": [ + "4dc8bdb7af6da21a247874bc54b1349d154a4738" + ] + }, + { + "node": "e03e9d4315d8b99f9135ea3e971c74a6eda8ef30", + "bug_id": 542263, + "desc": "Backed out changeset 8006ad2d0c06 (tests for bug 542263), since its test 'test_GCrace.html' failed on OSX in its first cycle.", + "pushdate": "2010-02-03 02:59:54", + "backsout": [ + "8006ad2d0c066e0ec0f6810bfedfb1a93d487e56" + ] + }, + { + "node": "29795c58dd72f74e5cde8365503544a8e851a8f8", + "bug_id": 542263, + "desc": "Backed out changeset c502a1a0900a (patch for bug 542263), since its test 'test_GCrace.html' failed on OSX in its first cycle.", + "pushdate": "2010-02-03 02:59:54", + "backsout": [ + "c502a1a0900af4ae6f4db3f21ecad87f7738c79b" + ] + }, + { + "node": "56a02566af5364f799d5fb319e26e43d9f2b318c", + "bug_id": 543034, + "desc": "Backed out changeset 0949b169357b (possible workaround for Bug 543034), since it didn't help.", + "pushdate": "2010-02-03 03:33:23", + "backsout": [ + "0949b169357bddaaabb90b68d8fdd151407a9114" + ] + }, + { + "node": "6b2bbb23d53a0767158a7ebebb8a179e8a612956", + "bug_id": 398289, + "desc": "Backed out changeset 8c2e7ae5cceb because of test_bug398289.html failure", + "pushdate": "2010-02-04 16:18:05", + "backsout": [ + "8c2e7ae5cceba14fe8c491d3ac0a03be3fa29d68" + ] + }, + { + "node": "609a51758b08110dd0fe738a88c95783d6fea658", + "bug_id": 544505, + "desc": "Backed out changeset db1f6446efda (flip pref, bug 544505), which is intended only for 1.9.3a1 and not to stay on trunk.", + "pushdate": "2010-02-05 19:37:29", + "backsout": [ + "db1f6446efda7f9bd61ef05337ffb10c1a74d9ca" + ] + }, + { + "node": "edbd3823dceb5ddb8cb16722fb98f34d571787e5", + "bug_id": 543111, + "desc": "Backed out changeset df90f0171ba7 (bug 543111)", + "pushdate": "2010-02-09 19:35:07", + "backsout": [ + "df90f0171ba7d51f932769131d4d0992b6debaa9" + ] + }, + { + "node": "83adba23046790d0de32384c4c12cf5974cb839e", + "bug_id": 540692, + "desc": "Backed out changeset 0ddf975663a0 (Bug 540692: Blocklist vksaver.dll) to test the theory that it is the cause of number 1 topcrash bug 545195.", + "pushdate": "2010-02-11 05:54:10", + "backsout": [ + "0ddf975663a00d272f07e689799aa18c3133ed87" + ] + }, + { + "node": "9ce73c19f74a239c5deda19cdaed34ce7c627058", + "bug_id": 517097, + "desc": "Backed out changeset fe08cc555248 - bug 517097 - make enabling debug symbols more sane because it added -fno-inline to opt builds and a 50% perf regression", + "pushdate": "2010-02-11 22:17:32", + "backsout": [ + "fe08cc55524896c2d51697c1f7fdb7d7d5bab0b6" + ] + }, + { + "node": "4e883e25a86ca9a2cf9d18294c04e25c2f1830e4", + "bug_id": 545593, + "desc": "Backed out changeset 93c7b23284b8 (Bug 545593) for causing Md oth failures on linux.", + "pushdate": "2010-02-12 22:36:40", + "backsout": [ + "93c7b23284b828d28423bfcf0f9f8f59b6f625c6" + ] + }, + { + "node": "8098e1f09e779ef5234a73446b487a80705598b3", + "bug_id": 543764, + "desc": "Backed out changeset 4d8d4fd97c4f - bug 543764, because of deadlocks.", + "pushdate": "2010-02-18 15:27:52", + "backsout": [ + "4d8d4fd97c4ffd5a0776bb3c6a15b3c4d281f533" + ] + }, + { + "node": "f17dbc97dae0154c797e0b35e79ed887533efa34", + "bug_id": 520659, + "desc": "Backed out changeset 2c60006b6c1f (bug 520659) because of resulting orange.", + "pushdate": "2010-02-22 23:33:54", + "backsout": [ + "2c60006b6c1fedd09095b3153dd6415765f478ff" + ] + }, + { + "node": "639c6e42ee38ee67252f2400fe15d900a936b256", + "bug_id": 193911, + "desc": "Backed out changeset bb9e847a02c8 (bug 193911) due to performance regressions.", + "pushdate": "2010-02-24 01:11:56", + "backsout": [ + "bb9e847a02c8775f7ec1ead5f4b9cc93413c4522" + ] + }, + { + "node": "1fe0f3ad7b08a85ca25cec112e138b8ff6cf41b9", + "bug_id": 538463, + "desc": "Backed out changeset b9700adc3951 - the landing for the bug 538463 had wrong changes", + "pushdate": "2010-02-24 20:41:25", + "backsout": [ + "b9700adc3951772b747de841adcaa97efda50e3e" + ] + }, + { + "node": "636964f611b3e4f72815f9f9306f26303c816816", + "bug_id": 507089, + "desc": "Backed out changeset 3c673457c90b for bug 507089 due to mysterious Windows bustage.", + "pushdate": "2010-02-24 20:41:25", + "backsout": [ + "3c673457c90be7687423746c61bb79fddfb58a4e" + ] + }, + { + "node": "7594db5d213a7364f6bd375064eacbc3b80a53ad", + "bug_id": 532208, + "desc": "Backed out changeset e4a7ea0bb90f bug 532208 - asynchronous stream delivery because write events were being dispatched in odd re-entrant states and NPP_DestroyStream was being delivered before all the stream data was delivered.", + "pushdate": "2010-02-25 11:05:10", + "backsout": [ + "e4a7ea0bb90f194343f128880d45f99be27860a7" + ] + }, + { + "node": "3fa8aa3c951ce7b1c604cc764ff2f85536a88a6e", + "bug_id": 548217, + "desc": "Backed out changeset 77dc38d8196e - bug 548217 because even though this patch is correct, it exposes a bug in the OOPP code which got backed out.", + "pushdate": "2010-02-25 11:59:26", + "backsout": [ + "77dc38d8196e827f0099ce97b1abffd9de408644" + ] + }, + { + "node": "840e6ea115dbc3f4fccc1c78101426bc45013a98", + "bug_id": 548217, + "desc": "Backed out changeset f829f942873d - bug 548217 because of topcrash bug 549112", + "pushdate": "2010-02-27 22:44:12", + "backsout": [ + "f829f942873d897d26a8c88f65db2c38ed3b13c9" + ] + }, + { + "node": "81b2e55ea5b454ac88c2894961709a984eaa572c", + "bug_id": 547333, + "desc": "Backed out changeset e9ab6e4d121d (Bug 547333 followup) due to debug mochitest orange.", + "pushdate": "2010-03-02 16:30:18", + "backsout": [ + "e9ab6e4d121d97c2f8be97229e05ac3c53d43091" + ] + }, + { + "node": "44ef1e2129706317a17b29e7ff8bdb04b2424342", + "bug_id": 503832, + "desc": "Backed out changeset 2da8ac54d264 (followup to bug 503832)", + "pushdate": "2010-03-09 14:37:10", + "backsout": [ + "2da8ac54d264738d4a40d1d26c7bd6c7e37572ee" + ] + }, + { + "node": "d11772a5043cbc951328ba53c188f1c7fcc7e73b", + "bug_id": 550882, + "desc": "Backed out changeset c7c0db9074c7 (bug 550882) on suspicion of causing a Tsspider regression.", + "pushdate": "2010-03-09 14:37:10", + "backsout": [ + "c7c0db9074c70f9d5ed3966fa1bb2283800a69b4" + ] + }, + { + "node": "eaf1574b10b627e935444b631df4e9db2e4db496", + "bug_id": 503832, + "desc": "Backed out changeset dc835fb21c0c (bug 503832) on suspicion of causing a Tsspider regression.", + "pushdate": "2010-03-09 14:37:10", + "backsout": [ + "dc835fb21c0c9bc4eb03c956c76963d8947396c8" + ] + }, + { + "node": "76a071c6dfd0e74dd1f672eaa2394a037eb5afec", + "bug_id": 550882, + "desc": "Backed out changeset f0239b3789d9 (bug 550882) because it causes a Tsspider regression.", + "pushdate": "2010-03-11 06:00:37", + "backsout": [ + "f0239b3789d997dc94989c0ae67c4566c979a8c5" + ] + }, + { + "node": "55f6e18f71cd0906e457317f45f4bdf14f28ec53", + "bug_id": 538187, + "desc": "Backed out changeset d906e4dd1e49, bug 538187 - CSS changes for :-moz-window-inactive pseudoclass because of test_righttoleft.xul test failures.", + "pushdate": "2010-03-17 19:06:03", + "backsout": [ + "d906e4dd1e4957d46aaad39dfbd6f64990ca52dd" + ] + }, + { + "node": "11d4bebe3514ef47021734d052468df2ed7315ff", + "bug_id": 508482, + "desc": "Backed out changeset e17c076aceea, bug 508482 (:-moz-window-inactive pseudoclass) because of test_righttoleft.xul test failures.", + "pushdate": "2010-03-17 19:06:03", + "backsout": [ + "e17c076aceea1afeb0d105c1a3b701d698a6c134" + ] + }, + { + "node": "33925fdc28073fc9a47ed32da1a20ee2c2e246b5", + "bug_id": 541588, + "desc": "Backed out changeset 59f507847beb (bug 541588) to see if it was responsible for minor SVG perf regression.", + "pushdate": "2010-03-18 14:58:59", + "backsout": [ + "59f507847bebe3248f436d9c95e9acfd14871efc" + ] + }, + { + "node": "09b395158b415b7f18dbc6c744d7d04f73fb57a5", + "bug_id": 553075, + "desc": "Backed out changeset 665b48fbfd28 (bug 553075) to see if it was responsible for 1% SVG/DHTML regressions on Win7.", + "pushdate": "2010-03-21 05:57:22", + "backsout": [ + "665b48fbfd2840e6d309c9703cbef46a9df0cad2" + ] + }, + { + "node": "f85c2efb4eaf76c06c6a8438e77c5701cb8ba604", + "bug_id": 538242, + "desc": "Backed out changeset 77e1ae41987e, bug 538242, because of window bounds related test failures.", + "pushdate": "2010-03-25 10:31:30", + "backsout": [ + "77e1ae41987e11e348b4a60047694308b2425e6c" + ] + }, + { + "node": "670efad709bfa3ba522ba3a2f61b48cde4152f99", + "bug_id": 551298, + "desc": "Backed out changeset 13819d2e9bd8 (Bug 551298) due to Linux debug mochitest-5 orange", + "pushdate": "2010-04-01 16:46:48", + "backsout": [ + "13819d2e9bd852c11f7ed0c7774dd03867283054" + ] + }, + { + "node": "d3acd60e4d5361a9e8729f365dc3ba68cee131ba", + "bug_id": 551298, + "desc": "Backed out changeset afcaf3670c21 (Bug 551298) due to Linux debug mochitest-5 orange", + "pushdate": "2010-04-01 16:46:48", + "backsout": [ + "afcaf3670c21042a3baa51fdd712f241725f37a5" + ] + }, + { + "node": "50731f2bd852892bc11944485f5f93e0c27fce4b", + "bug_id": 551298, + "desc": "Backed out changeset 29bc09de2f77 (Bug 551298) due to Linux debug mochitest-5 orange", + "pushdate": "2010-04-01 16:46:48", + "backsout": [ + "29bc09de2f77959309d104ce26e3877f76c3d1e0" + ] + }, + { + "node": "c0395cad35f39dbcc3d0514c16f468a1a4ae84b9", + "bug_id": 551298, + "desc": "Backed out changeset e94819033c77 (Bug 551298) due to Linux debug mochitest-5 orange", + "pushdate": "2010-04-01 16:46:48", + "backsout": [ + "e94819033c77aab855f2661b9fe3d61c41bfa381" + ] + }, + { + "node": "df2717c37e7f70da06d2e1f46a288743b3414264", + "bug_id": 551298, + "desc": "Backed out changeset fe801c8a2090 (Bug 551298) due to Linux debug mochitest-5 orange", + "pushdate": "2010-04-01 16:46:48", + "backsout": [ + "fe801c8a20904bb40bd2a64fd8fb5a0bd463e104" + ] + }, + { + "node": "f843e0928e1119d1fbafba72e5ed1aea575fbbe5", + "bug_id": 549427, + "desc": "Backed out changeset 7886dc6ae0c8 - bug 549427 - tests tarball should be zip files (CLOSED TREE)", + "pushdate": "2010-04-07 17:34:08", + "backsout": [ + "7886dc6ae0c8ca8d769b956561174c0acc8b4340" + ] + }, + { + "node": "85454945336e2c5bac27ff125e2ae27200cb416c", + "bug_id": 557768, + "desc": "backout e88d2327e25d, bug 557768", + "pushdate": "2010-04-08 14:00:43", + "backsout": [ + "e88d2327e25d600ce326615f682db1d79d2bb10e" + ] + }, + { + "node": "47ef6d724773f2eb7157f93c1da8d53a8589f26a", + "bug_id": 553366, + "desc": "Backout 761790684f3b (Bug 553366) for suspicion of causing tsvg_opacity regression.", + "pushdate": "2010-04-11 02:54:10", + "backsout": [ + "761790684f3be4ebb9c30895d1864dbd12516a9a" + ] + }, + { + "node": "a5009861bd1b4c01663aa01a4c219379b85178b8", + "bug_id": 553359, + "desc": "Backed out changeset b4fcd21cb6e5 (bug 553359) to try to fix tsvg_opacity regression.", + "pushdate": "2010-04-11 05:13:09", + "backsout": [ + "b4fcd21cb6e54755c4efb4fbe0cb53dfc71bf2d6" + ] + }, + { + "node": "e4496c8a44e560c48cb228851239b177c08859a4", + "bug_id": 553363, + "desc": "Backed out changeset 633cc14c86b8 (bug 553363) to try to fix tsvg_opacity regression.", + "pushdate": "2010-04-11 05:13:09", + "backsout": [ + "633cc14c86b81a341d461982504b5366843add39" + ] + }, + { + "node": "df3a1a39837f15a5a51507b6af84deb81a1e9ce6", + "bug_id": 222436, + "desc": "Backed out changeset 3a27158cbdd6 (bug 222436) to try to fix tsvg_opacity regression.", + "pushdate": "2010-04-11 05:13:09", + "backsout": [ + "3a27158cbdd697fe5528658c4676cea537e50b6a" + ] + }, + { + "node": "e69034463eebbd368322b97559b4ae95b7722aaf", + "bug_id": 505835, + "desc": "Backed out changeset 02e8391669c3 (Bug 505835) for suspicion of causing tsvg_opacity regression.", + "pushdate": "2010-04-11 07:11:24", + "backsout": [ + "02e8391669c3975821e20d9a5485eaa27cf0a39d" + ] + }, + { + "node": "83bf27b04ddc38081b87125daa2468b17089cef5", + "bug_id": 553359, + "desc": "Backed out changeset ae2093359899 (Bug 553359) for tsvg_opacity regression.", + "pushdate": "2010-04-12 00:28:43", + "backsout": [ + "ae2093359899b9db68d3343fc9420cd770746098" + ] + }, + { + "node": "23e71fa6bd6e058498c18f6f7a9a8875fc245115", + "bug_id": 557914, + "desc": "Backed out changeset 687d1e4c213e (bug 557914).", + "pushdate": "2010-04-15 16:08:37", + "backsout": [ + "687d1e4c213ef0fc1d22e28deeb4a0643e807cbf" + ] + }, + { + "node": "0fc19b24294756c136b02ec922c3eba656c2f623", + "bug_id": 556830, + "desc": "Backed out changeset 698ace1f1027 (bug 556830) for causing jsreftest failures.", + "pushdate": "2010-04-15 16:08:37", + "backsout": [ + "698ace1f10272d60078844f428be76fd98ab1537" + ] + }, + { + "node": "57f8cd34cf6e0ca264e00e73ac9eea979136090c", + "bug_id": 558058, + "desc": "Backed out changeset 61de331861af (bug 558058).", + "pushdate": "2010-04-15 16:08:37", + "backsout": [ + "61de331861afee87bb0e9c369b06b6c663a8336e" + ] + }, + { + "node": "5896d4f94aee0ceb07c2a877b26a498855f4cb77", + "bug_id": 393760, + "desc": "backout e1e1143be432 due to reftest failure in layout/reftests/bugs/393760-1.xml b=552044", + "pushdate": "2010-04-21 05:21:59", + "backsout": [ + "e1e1143be432679e02bce5f647f6de822835dfb6" + ] + }, + { + "node": "f1bc91ce880e02e519f271f9c9b608961f7a2533", + "bug_id": 561011, + "desc": "Backed out changeset 1af19eedbde2 -- Fix sharpSlots vs. with grudge-match (561011, r=mrbkap).", + "pushdate": "2010-04-24 21:50:01", + "backsout": [ + "1af19eedbde29a07c643cc407f9991d9742308b0" + ] + }, + { + "node": "9cefbeff6938b64e8b8310dcc804aab85f922222", + "bug_id": 559492, + "desc": "backout 32502a2c5671 b=559492 due to seg fault in storage/test/test_transaction_helper.cpp possibly in DumpLeakedURLs", + "pushdate": "2010-04-28 22:40:27", + "backsout": [ + "32502a2c5671185d801d91884579d1f93f516d82" + ] + }, + { + "node": "ff9f542d06831528ededff7c28bfeee7168ab45a", + "bug_id": 222436, + "desc": "Backed out changeset e6134e94c6cb (Bug 222436) for possible Tsvg_opacity regression.", + "pushdate": "2010-05-02 07:02:16", + "backsout": [ + "e6134e94c6cbb585cfba790bfa4a89d86e8cc502" + ] + }, + { + "node": "eb4e203caf33c1a4351b61987170e675b2e77b6d", + "bug_id": 560358, + "desc": "Backed out changeset 35c25547a135 (bug 560358).", + "pushdate": "2010-05-04 17:34:44", + "backsout": [ + "35c25547a135348070a3e42cc0b38b3ccd46783c" + ] + }, + { + "node": "8d256e7846959ca614b1da225d2786396888d770", + "bug_id": 559653, + "desc": "Backed out changeset ae857d818793 (bug 559653) due to test failures.", + "pushdate": "2010-05-04 17:34:44", + "backsout": [ + "ae857d81879311f67ff49e4f4e677e2279cc1bdd" + ] + }, + { + "node": "5aa83042d4d3147c0f9311dc38c714ce19783b5a", + "bug_id": 559653, + "desc": "Backed out changeset 73f23528bed6 (bug 559653, again)", + "pushdate": "2010-05-04 17:34:44", + "backsout": [ + "73f23528bed6843a1c3ece06425a3bbe9398f380" + ] + }, + { + "node": "1b3deed2d784997d6b35397fff8355832255d857", + "bug_id": 559854, + "desc": "Backed out changeset 510669ff9ba1 \"bug 559854 - Compile target xpidl only if libIDL is configured when cross compiling. r=ted\" for OS X bustage", + "pushdate": "2010-05-05 15:00:40", + "backsout": [ + "510669ff9ba1d9e25c0d131b8c2618e978312134" + ] + }, + { + "node": "90d08f21fbf0b78f42cd9e312097d9a295fdb978", + "bug_id": 563023, + "desc": "Backed out changeset 09a936531466 (bug 563023) due to Mac reftest failure.", + "pushdate": "2010-05-05 20:53:39", + "backsout": [ + "09a9365314664a2d6719ffe77ad76dc61e50606d" + ] + }, + { + "node": "ea445ca9c148e0996b4794c07b9e549d7d64cb31", + "bug_id": 533891, + "desc": "Backed out changeset e074757a15aa (bug 533891) due to xpcshell orange after a clobber", + "pushdate": "2010-05-11 04:41:14", + "backsout": [ + "e074757a15aa7bdf7430980f81186403886afcd7" + ] + }, + { + "node": "357d302157060b473fb7fe8c0a27918071f310d5", + "bug_id": 559996, + "desc": "Backed out changeset a6138098775f (bug 559996) for causing orange.", + "pushdate": "2010-05-12 02:24:53", + "backsout": [ + "a6138098775fcacd0030e7679206553bbef296ec" + ] + }, + { + "node": "01befa5163eed6f462d5b920bc0470599dc2cb2d", + "bug_id": 564705, + "desc": "back out e40cbab6a972 (Bug 564705) 590da60fd253 (Bug 507628 and bug 507991) b166415b8c3f (Bug 564368) 0dac5d3eeb97 (Bug 564063) 116e56d84770 (Bug 563407) c51c93f5240f (Bug 536495) for some orange", + "pushdate": "2010-05-12 03:01:28", + "backsout": [ + "e40cbab6a9726591312375194167c10e065471de" + ] + }, + { + "node": "c861185afd4a103b322aed36a12e4b7462790d9f", + "bug_id": 562649, + "desc": "Backed out changeset 6a71deda9822 (bug 562649) due to browser-chrome orange.", + "pushdate": "2010-05-14 17:04:31", + "backsout": [ + "6a71deda9822c26086498ca9b2bfe3427b169e13" + ] + }, + { + "node": "c95e1d49bc792d5ed6255c37f5403048be77559f", + "bug_id": 564979, + "desc": "Backed out changeset 90d627f2471e (bug 564979) because it broke mochitests.", + "pushdate": "2010-05-17 19:00:34", + "backsout": [ + "90d627f2471eb38d96d8b1ccef04465c8363da53" + ] + }, + { + "node": "9d40cce434865515df81912ce22d2fdfa6e80a61", + "bug_id": 560462, + "desc": "Back out ba983923066f (bug 560462 part 3c) to see if it fixes test_aria_imgmap.html orange.", + "pushdate": "2010-06-01 18:27:21", + "backsout": [ + "ba983923066fbbe4b5df8a872fdeb989386b5a4d" + ] + }, + { + "node": "c482200ed43651dec55ce38e56134d43e115a5aa", + "bug_id": 564591, + "desc": "Backout 69df59e99741 -- Bug 564591: Speed up BindToTree/UnbindFromTree by only doing XBL related work when needed.", + "pushdate": "2010-06-04 01:45:41", + "backsout": [ + "69df59e99741365f71372a7557e6fe4dc0d1cb8d" + ] + }, + { + "node": "b18beea31ad3fd3130cdcd7b8195b0a04fb5e681", + "bug_id": 559653, + "desc": "Back out changeset a72a9d72c028 (bug 559653, remove SetPropHit). Checking to see if this caused a 5% Dromaeo regression today.", + "pushdate": "2010-06-06 19:08:23", + "backsout": [ + "a72a9d72c0282ec34aec9014bc16ec8c475c69b2" + ] + }, + { + "node": "2fe89784cf66347487cbf5a9f010dce8fabbe043", + "bug_id": 569735, + "desc": "Back out changeset 96dbe8a784f1 (bug 569735) due to failing tests.", + "pushdate": "2010-06-06 19:08:23", + "backsout": [ + "96dbe8a784f15719031a8716921ad50a86650a15" + ] + }, + { + "node": "0ba3c58afb3abf493dabe321f29ea94072ffe2a3", + "bug_id": 556277, + "desc": "Backed out changeset 52be13ea0488. Bug 556277 - Compute this eagerly in more cases. r=brendan. Suspected of performance regression on SunSpider unpack-code. 80ms -> 135ms.", + "pushdate": "2010-06-06 19:08:23", + "backsout": [ + "52be13ea048813852b8c6e466d9d762433ce14c6" + ] + }, + { + "node": "3e15e567ae44cd4b2fdd044a7d973fb0089d5cc7", + "bug_id": 569342, + "desc": "Backed out changeset 33760547ecf7 from bug 569342 to fix the test failure.", + "pushdate": "2010-06-08 18:20:50", + "backsout": [ + "33760547ecf7edc099b4ca4abc5cb475d9dfb86a" + ] + }, + { + "node": "0bf458761ea2d29bc48e333a8d2afd38238d7e83", + "bug_id": 569425, + "desc": "Backed out changeset 2f539cc84d97 (bug 569425) because this may hide real a11y issues.", + "pushdate": "2010-06-08 20:44:03", + "backsout": [ + "2f539cc84d9750e6de1de5d44f8ade2b82cad024" + ] + }, + { + "node": "42a58530d41962e11cd20a2abfcf02e6c13b21c3", + "bug_id": 552938, + "desc": "Backed out changeset a8ac411e1653 (bug 552938) for causing some randomorange.", + "pushdate": "2010-06-10 00:17:54", + "backsout": [ + "a8ac411e1653c2a2359aa5a76e3f0bc45d99aca5" + ] + }, + { + "node": "ef715f78e927e46db86fd00b7a5ea89641767041", + "bug_id": 568818, + "desc": "Backed out changeset d1c910f2ec4d on suspicion of causing test crashes - Bug 568818 - sendSyncMessage fails with 'SyntaxError: JSON.parse' if one of the listeners does not return a value", + "pushdate": "2010-06-11 17:53:10", + "backsout": [ + "d1c910f2ec4dd7388fe57ac9defac792ee3f1fa6" + ] + }, + { + "node": "4dc9a5d9167b157b0867547ea14fe4a4e306af42", + "bug_id": 563327, + "desc": "Backed out changeset fee5701c664e and changeset dcfe95c71a04 to fix the mochitest-a11y crashes (bug 563327)", + "pushdate": "2010-06-14 22:14:46", + "backsout": [ + "fee5701c664e4ec3222483313ea71b52ac514d44" + ] + }, + { + "node": "7523ad2f395e9295ec597de3b8de5329cb17a18a", + "bug_id": 571459, + "desc": "Backed out changeset b54140961fa7 to fix more mochitest-a11y crashes (Bug 571459)", + "pushdate": "2010-06-14 23:19:27", + "backsout": [ + "b54140961fa705b38f1e927a4e8aac626ca567ea" + ] + }, + { + "node": "53510454716ebb1e760a0262ffdfb89276c9543b", + "bug_id": 572034, + "desc": "Backed out changeset f2835c78ef3f, Bug 572034.", + "pushdate": "2010-06-16 23:04:24", + "backsout": [ + "f2835c78ef3fa9e508ad2b9ecbcd48c818a63613" + ] + }, + { + "node": "3e0eb9fe8f481ce2257922ef08219bb364da24a7", + "bug_id": 572034, + "desc": "Backed out changeset d268e54fbfcf (bug 572034)", + "pushdate": "2010-06-18 23:44:31", + "backsout": [ + "d268e54fbfcfbbfab0e3b890fe376cd058498bb8" + ] + }, + { + "node": "5504cc6d31698a12ca86c443aca74c834b499ded", + "bug_id": 555121, + "desc": "Backed out changeset 4adab2629c3f (bug 555121)", + "pushdate": "2010-06-19 06:25:38", + "backsout": [ + "4adab2629c3f76da345a60cb55a3925db6c6241f" + ] + }, + { + "node": "063826c84e206d51231cdd4d2aeaf23544d1fc65", + "bug_id": 534398, + "desc": "Backed out changeset b805434e7e4b (bug 534398) for causing leaks on (debug) mochitest-other.", + "pushdate": "2010-06-19 21:17:47", + "backsout": [ + "b805434e7e4bd4366112ea079d5aed84b5423fba" + ] + }, + { + "node": "284711070f31f2677b807d95476cc7e6db197a3c", + "bug_id": 571347, + "desc": "Backed out changeset a6e3300a3bac (bug 571347) for causing bug 573255 because the optimization is invalid given :not() selectors.", + "pushdate": "2010-06-19 21:17:47", + "backsout": [ + "a6e3300a3bacfa013c9c7169f291057f2a43bff1" + ] + }, + { + "node": "4157a4415bf79adf6def7aa2d216e1321c91867d", + "bug_id": 482878, + "desc": "Backed out changeset 430ce13b63f3 (bug 482878)\nBug 482670 restored un-wrapped payloads, so until a version bump, those using trunk will need to do a manual server wipe.", + "pushdate": "2010-06-23 22:21:35", + "backsout": [ + "430ce13b63f3" + ] + }, + { + "node": "39cb8075f8444f27f7097238e75953aba158d73e", + "bug_id": 571992, + "desc": "Backed out changeset 88142593698a (bug 571992) because it already landed apparently...", + "pushdate": "2010-06-24 17:39:34", + "backsout": [ + "88142593698ad74bd79ec48e99fa349a26ef1b5f" + ] + }, + { + "node": "bf804f41e245b8e2ce317ff51da1e94d32d5ab70", + "bug_id": 557566, + "desc": "Backed out changeset a65d962718b0 (bug 557566)", + "pushdate": "2010-06-27 03:02:56", + "backsout": [ + "a65d962718b0857bf749e165533395e4e7aff2d8" + ] + }, + { + "node": "880fcf5f07b3d395c9d74b7d45b09dd8825217d8", + "bug_id": 557566, + "desc": "Backed out changeset 5da9fc2be835 (Bug 557566)", + "pushdate": "2010-06-27 03:02:56", + "backsout": [ + "5da9fc2be83585333b108f45407d3be37088db5f" + ] + }, + { + "node": "4add6eaba66ff0b2a6c7a809922a60f99625ddc3", + "bug_id": 571159, + "desc": "Backout 8a6de68c0feb (Fix for bug 571159 (Leak nsGlobalWindow with unknown-content-type dialog)) to fix orange.", + "pushdate": "2010-06-28 15:40:59", + "backsout": [ + "8a6de68c0febb7b273942193394fd9ed42a2ce47" + ] + }, + { + "node": "5082a31c8b8e75fa9321fad3baf0e7621fee4328", + "bug_id": 574357, + "desc": "Backed out changeset e112f68bc941 (bug 574357) due to test failures.", + "pushdate": "2010-06-30 05:46:21", + "backsout": [ + "e112f68bc941fa78f6950347f05d892d6c48fc80" + ] + }, + { + "node": "869ff461e1d61b0fc911caba23388a95950ba1c8", + "bug_id": 575336, + "desc": "Backed out changeset 00dfcf7f4c9e (bug 575336) due to test orange. Magic words for CLOSED TREE.", + "pushdate": "2010-07-01 05:19:24", + "backsout": [ + "00dfcf7f4c9eee1b09c632fb45d814e9bea4faa9" + ] + }, + { + "node": "2e14387eb276fe4dc6ee4b13db76639d12b6234e", + "bug_id": 541155, + "desc": "Backed out changeset df78efe07b18, debugging only printfs now that 541155 is diagnosed.", + "pushdate": "2010-07-01 06:28:42", + "backsout": [ + "df78efe07b18" + ] + }, + { + "node": "686aedb56727e992700c4cb6dcc0162dab5b895b", + "bug_id": 535564, + "desc": "Backed out changeset c7a2f3e14a58 - Testing from bug 535564 - We don't have a file handle open when we launch ssltunnel, so ssltunnel wasn't the cause.", + "pushdate": "2010-07-01 06:28:42", + "backsout": [ + "c7a2f3e14a580c7708cd0062b0ddc76e2eaaf322" + ] + }, + { + "node": "9fb0650cbfc08daf9b1371544987878f7bb3ecd6", + "bug_id": 542337, + "desc": "Backed out changeset e033fa1d3b0b - remove the workaround for bug 542337 because bent landed a real fix and we want testing", + "pushdate": "2010-07-01 06:28:42", + "backsout": [ + "e033fa1d3b0bc04aaa37708b6d48eb8b0aeb4fb5" + ] + }, + { + "node": "c4b97df52cae46d26f3bbee0b47b7d994e6ce892", + "bug_id": 550026, + "desc": "backout 5b9325736070 b=550026", + "pushdate": "2010-07-01 06:28:42", + "backsout": [ + "5b932573607072bfa2bd1d19761e404865de2adf" + ] + }, + { + "node": "4497942b0e3d7aa73e282747d857fb6110b794d6", + "bug_id": 556400, + "desc": "Backed out changeset f666976446db from bug 556400 due to possible browser-chrome\nfailures.", + "pushdate": "2010-07-03 03:02:52", + "backsout": [ + "f666976446db" + ] + }, + { + "node": "c066080db73501bdcee16c871ba3eebb07ca0779", + "bug_id": 566738, + "desc": "Backed out changeset 07a9dcc28c5c from bug 566738 due to possible browser-chrome failures.", + "pushdate": "2010-07-03 03:02:52", + "backsout": [ + "07a9dcc28c5ca62106336545c017b80cf8122b57" + ] + }, + { + "node": "920385221b56485347c16d59a782c808d1b64085", + "bug_id": 556400, + "desc": "Backed out changeset f9a700607b86 from bug556400 due to possible browser-chrome failures.", + "pushdate": "2010-07-03 03:02:52", + "backsout": [ + "f9a700607b86514c86ac85387f7d64206d7e23fa" + ] + }, + { + "node": "330178c7235b6ac438af8a8b8797ce006a537242", + "bug_id": 577224, + "desc": "Back out 06cc16f7954e (bug 577224) because it can cause plugins to not draw.", + "pushdate": "2010-07-09 20:16:30", + "backsout": [ + "06cc16f7954e677afb4c8212354637884a348c45" + ] + }, + { + "node": "6ad1beea584ac84aef0dd5f6b90b297d6afe187a", + "bug_id": 578913, + "desc": "Backed out changeset 764bb4ae886c, bug 578913, it may be at fault for a Ts Shutdown regression.", + "pushdate": "2010-07-16 17:25:59", + "backsout": [ + "764bb4ae886c5058c5c7634d6ffb02ddfe431354" + ] + }, + { + "node": "d0d098061840a2d4bb25beada4dfc4f84bdc6cb5", + "bug_id": 571193, + "desc": "Backed out changeset f6c93f02146c, bug 571193.", + "pushdate": "2010-07-17 00:32:00", + "backsout": [ + "f6c93f02146c55b55209c6ae622e15a88cb28543" + ] + }, + { + "node": "bc7c573d41724335e529404841d169f38efd2b27", + "bug_id": 553494, + "desc": "Backed out changeset 58175e77c460 from bug 553494 due to test failures", + "pushdate": "2010-07-26 18:41:40", + "backsout": [ + "58175e77c4604f3c7362d67d572e778d2aca33d9" + ] + }, + { + "node": "a24232050cb11eb86eb348962deea19a40407a33", + "bug_id": 574621, + "desc": "Backed out changeset 9e290d196600 (bug 574621) for causing test failures.", + "pushdate": "2010-07-29 20:17:48", + "backsout": [ + "9e290d196600332b1731df54ca9142df21127a30" + ] + }, + { + "node": "8aabb35a1bb3103d74670ffa88023b9c93d783cc", + "bug_id": 579957, + "desc": "Backed out changeset d8bbb2ef3038. (Igor Bukanov \u2013 bug 579957 - parent as a field in JSObject. r=lw)", + "pushdate": "2010-08-01 00:33:23", + "backsout": [ + "d8bbb2ef303853b6a4b8bc54b6000ca53954fdd4" + ] + }, + { + "node": "4f0f0e801b200dcbdf824a0de1ff9c481481e7e1", + "bug_id": 583281, + "desc": "Backed out changeset af011e92ad0b. (Dave Herman \u2013 bug 583281, r=jimb: njs should get symlinked into objdir). This doesn't build on windows.", + "pushdate": "2010-08-01 00:33:23", + "backsout": [ + "af011e92ad0b6a80ea782c427e9ecef92ceb73fb" + ] + }, + { + "node": "5e31dc2daf0a9c531370204ac3b7f32d9cd1437c", + "bug_id": 582479, + "desc": "Back out changeset c877176cbbed in order to get Windows compiling. (Bug 582479 - TM: Assertion failure: (&cx->regs->sp[1 - (iargc + 2)].toObject())->isFunction().)", + "pushdate": "2010-08-01 00:33:23", + "backsout": [ + "c877176cbbed3e5c73cbb2abc474345b43cc1fe9" + ] + }, + { + "node": "9539f400bb5869e7f5041299359645bd509a9c69", + "bug_id": 577648, + "desc": "Backout changeset 80382d88b92c. (Bug 577648 - arguments.callee.caller does not work in FF 4 under certain circumstances). The patch is righteous, but MSVC's behavior with a mere 3GB of addressable memory is not. Will reland soon.", + "pushdate": "2010-08-01 00:33:23", + "backsout": [ + "80382d88b92c05e71a65f2bb662614ea702cad8d" + ] + }, + { + "node": "bd4713e47e5e0851c7eb3461b2f6599d73f91f81", + "bug_id": 574663, + "desc": "Backed out changeset cd5c28912351, bug 574663 (momentum scroll zooming) because the new test fails on Windows.", + "pushdate": "2010-08-02 15:52:38", + "backsout": [ + "cd5c289123515044557c9fa3abec72b4ab92113e" + ] + }, + { + "node": "32a6a3231e503c54824c6ba80425894f9a058199", + "bug_id": 550936, + "desc": "Backed out changeset bdb98838d6f6 from bug 550936 due to js-reftest failures", + "pushdate": "2010-08-03 05:27:20", + "backsout": [ + "bdb98838d6f6b790d45748a817d70526f0675fe7" + ] + }, + { + "node": "f2d6cc57c80cae87069fccb19f8b0af68af1b7b0", + "bug_id": 572967, + "desc": "Backed out changeset b46982cc0c0a from bug 572967 due to test failures", + "pushdate": "2010-08-03 05:39:35", + "backsout": [ + "b46982cc0c0a82dd8fdbb9f9b57da382c5bd515f" + ] + }, + { + "node": "f7478476c9a5d4a650d764a967c8dedce7e5883f", + "bug_id": 583262, + "desc": "Backed out changeset c6131ed87e9c. Jason Orendorff \u2014 Bug 583262 - Remove security checks on f.prototype.constructor property at last. r=mrbkap. Causing nightly topcrash.", + "pushdate": "2010-08-04 20:45:11", + "backsout": [ + "c6131ed87e9ce7433153c43c4bb7275c35cb4453" + ] + }, + { + "node": "decafc4eb6e2e82cb98713356c2814af0f78372f", + "bug_id": 576777, + "desc": "Backed out changeset d84aff2ae1db (from bug 576777) because of perma-orange in test_text.html.", + "pushdate": "2010-08-05 12:56:16", + "backsout": [ + "d84aff2ae1db1e05b7270ad08e76e74af058eb0f" + ] + }, + { + "node": "8565e77eacdccd4ae3aadd0f769ff2f0604b6684", + "bug_id": 576777, + "desc": "Backed out changeset e29fc477ab4d, bug 576777, because of perma-orange in test_text.html.", + "pushdate": "2010-08-05 12:56:16", + "backsout": [ + "e29fc477ab4d1ae6ec74e20b527b321a10736aed" + ] + }, + { + "node": "8d4d8fc43475a18933f6d48e2260289d9cff0db9", + "bug_id": 580790, + "desc": "Back out changeset 0b3af3fef0fd (bug 580790) due to burnage on a CLOSED TREE", + "pushdate": "2010-08-06 17:47:10", + "backsout": [ + "0b3af3fef0fdfeb5e696c13d773d352e56d94b12" + ] + }, + { + "node": "e88f6c524f3aeda886e7ee21f8ed9b467e946ec9", + "bug_id": 568969, + "desc": "Backed out changeset e6e0200b6e03 (bug 568969) because it appears to have caused orange on a CLOSED TREE.", + "pushdate": "2010-08-06 18:54:28", + "backsout": [ + "e6e0200b6e0325cda78b2634386a420da58f0431" + ] + }, + { + "node": "312fdcee7e5093582e6df431c7c210feef2b14b0", + "bug_id": 580869, + "desc": "Backed out changeset 300036f6c90f from bug 580869 due to test failures", + "pushdate": "2010-08-06 22:02:48", + "backsout": [ + "300036f6c90f769bc2a2ce4c9b5a3cfd1b141468" + ] + }, + { + "node": "87be0d140fd611534baa3bc3579062b9fa8ac4e6", + "bug_id": 580869, + "desc": "Backed out changeset 8f8ee0543d0f from bug 580869 in the CLOSED TREE", + "pushdate": "2010-08-06 22:02:48", + "backsout": [ + "8f8ee0543d0f735ae6fa152244a9233bd7891275" + ] + }, + { + "node": "5a254bcd79f2b1b27cee499322ebafd4f369f881", + "bug_id": 584495, + "desc": "Backed out changeset 504bc84513b0. Andreas Gal \u2013 Ensure that JSOPTION_UNROOTED_GLOBAL is set when we cycle collect (stop-gap measure for bug 584495, r=brendan). default tip", + "pushdate": "2010-08-07 05:52:47", + "backsout": [ + "504bc84513b02579706015b180b6d8f0376c88bf" + ] + }, + { + "node": "682eee29d90d1650e28b60432faf87e89b577767", + "bug_id": 584193, + "desc": "Backed out changeset 86e8ec17e532 (bug 584193).", + "pushdate": "2010-08-08 22:07:15", + "backsout": [ + "86e8ec17e532abe711a7f3def152c2eb6314c4c4" + ] + }, + { + "node": "abca98af611ed75fcdae4e05fd91900e26908474", + "bug_id": 579621, + "desc": "Backed out changeset ec28c1790e13 (bug 579621) for print preview test timeouts", + "pushdate": "2010-08-09 00:49:11", + "backsout": [ + "ec28c1790e13601e325bfe921498cd355467fee3" + ] + }, + { + "node": "9165ca3607bd30328db254613bd305e3e4e0f67e", + "bug_id": 575870, + "desc": "Backed out changeset a0d6e4d37273 (bug 575870) for possibly being the cause of the following performance regression:\nTalos Regression: Txul increase 4.57% on Win7 Firefox\nOther possible culprits:\nbug 574454", + "pushdate": "2010-08-10 20:06:04", + "backsout": [ + "a0d6e4d37273bc0893a6ef3f25bc10261fbdc36b" + ] + }, + { + "node": "89aad8922d715d0ef6aed75907fb8e242f4d70d3", + "bug_id": 584582, + "desc": "Backed out changeset fef97fa21915 (bug 584582) for causing compilation failures on Windows.", + "pushdate": "2010-08-11 19:26:48", + "backsout": [ + "fef97fa21915fc51e8e4d231e1103b3d4eba1858" + ] + }, + { + "node": "b186d13109a758d85982c790e25abcfb3de5358d", + "bug_id": 583145, + "desc": "Backed out changeset ccfdad9f5c93 due to regressions (bug 583145)", + "pushdate": "2010-08-12 01:43:41", + "backsout": [ + "ccfdad9f5c9399f9083c8a5bd3bb24d5aaf87d1b" + ] + }, + { + "node": "90b5a456b7bad12f4b78cc2bfb3d57749cdbbd1a", + "bug_id": 582569, + "desc": "Backed out changeset 937a11c1fc07 from bug 582569 due to new browser-chrome test\nfailures.", + "pushdate": "2010-08-12 17:29:08", + "backsout": [ + "937a11c1fc07d69a0eb3bfc0d97f0fbadc1fd512" + ] + }, + { + "node": "1bab6d09fbc9021a54784388e1d82994ee8bcca3", + "bug_id": 581894, + "desc": "Backout d6a355524fcb from bug 581894 now that bug 579869 is fixed.", + "pushdate": "2010-08-12 19:47:36", + "backsout": [ + "d6a355524fcb88c677b10074adf0071cd5e962ff" + ] + }, + { + "node": "64e4cce311e8a03a9d15c7adef774e90fa5111b7", + "bug_id": 583306, + "desc": "Backout df9bbe8b6d78 now that bug 583306 is fixed.", + "pushdate": "2010-08-12 19:47:36", + "backsout": [ + "df9bbe8b6d78" + ] + }, + { + "node": "60a5b0d62bccef4bae84b063b392246c1007de15", + "bug_id": 578868, + "desc": "Backed out changeset 452db8c688ba, bug 578868.", + "pushdate": "2010-08-13 08:24:39", + "backsout": [ + "452db8c688bad65a1003ff00b2606d28410c5373" + ] + }, + { + "node": "2c69cdb5a98c492d99f6fc0c3f05cb2796a84d1d", + "bug_id": 584965, + "desc": "Backed out changeset 33f8c2bb77ca, bug 584965.", + "pushdate": "2010-08-13 19:48:23", + "backsout": [ + "33f8c2bb77ca11f13bf368a193cfe51b569263cd" + ] + }, + { + "node": "9ded3c2c0a3fca47cfd74a2a985bcc2f9c358310", + "bug_id": 586533, + "desc": "Backed out changeset 1406935fced4. Brian Hackett \u2013 Put JSStackFrame.scopeChain/blockChain behind an interface, bug 586533. r=lw.", + "pushdate": "2010-08-13 20:13:33", + "backsout": [ + "1406935fced42e0bae650f04982c0871932f46d5" + ] + }, + { + "node": "d796055d54653e1f30b08d833958bdcd79f544bd", + "bug_id": 583850, + "desc": "Backed out changeset c5e31473b1a6 (assertions for bug 583850). See bug 584578 and bug 585754.", + "pushdate": "2010-08-13 20:13:33", + "backsout": [ + "c5e31473b1a670f26b865a49390613d74b3c30a3" + ] + }, + { + "node": "2fa5b630f3bc5e0d4ac7f56606b8e51331763cc2", + "bug_id": 573492, + "desc": "Backed out changeset dfd35987dd82 (WAL journaling - bug 573492) due to Ts regressions", + "pushdate": "2010-08-14 07:58:46", + "backsout": [ + "dfd35987dd82520aaf89b1e4a481c26cf75605f9" + ] + }, + { + "node": "391e102eb8636bdd1c7cfdecef0294f6f80194ed", + "bug_id": 575870, + "desc": "Backed out changeset 05dde680ade2 as per bug 575870 comment 71", + "pushdate": "2010-08-15 12:32:07", + "backsout": [ + "05dde680ade2fe2a9a55b6d1eb824ddfeeac84c4" + ] + }, + { + "node": "9f434423bdf92cf2c7732d8bca624d3c71c85f0d", + "bug_id": 585877, + "desc": "Backed out changeset 43b490ef9dab (bug 585877), a=beltzner", + "pushdate": "2010-08-17 19:46:02", + "backsout": [ + "43b490ef9dab30db2c4e2706110ad5d524a21597" + ] + }, + { + "node": "eaa833618eaab81c9a1aad2516434196b47e9664", + "bug_id": 490705, + "desc": "Backed out changeset 1362f0ca86d2 (bug 490705 - Support Audio Data API: Get, Manipulate, Play & Save) due to test failures.", + "pushdate": "2010-08-18 17:10:12", + "backsout": [ + "1362f0ca86d2e16b0341e45e8d5d9be8345a44f0" + ] + }, + { + "node": "c78c4fda1325dd5169f15e80f42de19908b7d99e", + "bug_id": 471643, + "desc": "Backed out changeset f600448ae7db / bug 471643 due to reftest failures", + "pushdate": "2010-08-19 08:29:47", + "backsout": [ + "f600448ae7db41bd72ea625d674967a262c0dd81" + ] + }, + { + "node": "fae9fc14a22a9fd70f56544181e689b1af72f0f6", + "bug_id": 588977, + "desc": "Backout 2d6ead22831c (bug 588977) due to orange. a=backout", + "pushdate": "2010-08-20 17:26:59", + "backsout": [ + "2d6ead22831cbe04922906805f5c38c730760875" + ] + }, + { + "node": "cbb5793c529eda0f1a01a82edad05684c6978fd5", + "bug_id": 576026, + "desc": "Backed out changeset 2d57f5901aa2 (bug 576026). a=bustage", + "pushdate": "2010-08-24 22:52:15", + "backsout": [ + "2d57f5901aa226d161cbc45b4d9db41d34a28af8" + ] + }, + { + "node": "c3c185d6ee88ebb2b52bc8cb1fbefc737779f749", + "bug_id": 587257, + "desc": "Backed out changeset b404ad209cb9. (Bug 587257 - Make Array.prototype.join faster. r=lw)", + "pushdate": "2010-08-25 16:25:25", + "backsout": [ + "b404ad209cb92ed0f056a77feb8e093a28734856" + ] + }, + { + "node": "c8e75a4433d9b62eddcfb841c53af5815ae95948", + "bug_id": 590422, + "desc": "Backed out changeset d578993db396 (bug 590422) due to possible performance regressions (especially WinXP Tscroll).", + "pushdate": "2010-08-27 18:09:29", + "backsout": [ + "d578993db3969fa6e89e2e487ac4bb1c660aa7c9" + ] + }, + { + "node": "0487454f42193aa15efea739c359ea67b1682b11", + "bug_id": 581076, + "desc": "Backed out changeset 6fe388a0fb5e (Bug 581076) due to test failures. a=bustage", + "pushdate": "2010-08-30 05:36:19", + "backsout": [ + "6fe388a0fb5eb94bc4b9969d60111b8ce5141378" + ] + }, + { + "node": "9e09716ddaf73e57dbd0d1a50492b0404275f67e", + "bug_id": 592951, + "desc": "Backed out changeset 52388a9a6337, bug 592951. a=me", + "pushdate": "2010-09-08 22:20:40", + "backsout": [ + "52388a9a63378153bc365b022d913b64e9629bb1" + ] + }, + { + "node": "b5896c8b6d41913e2968a08c15579152a58af8ce", + "bug_id": 588999, + "desc": "Backed out changeset 4bc623a55708 (bug 588999) because of orange on Windows 7", + "pushdate": "2010-09-09 23:26:17", + "backsout": [ + "4bc623a5570853ba5da99922f425cd3753b48f08" + ] + }, + { + "node": "d8674093f3558f6cfc862352dec321af9f8e4d7a", + "bug_id": 578880, + "desc": "Backed out changeset 100bcacdbf45 due to orange (bug 578880).", + "pushdate": "2010-09-10 20:50:33", + "backsout": [ + "100bcacdbf456379bfd0f81359b600dfa648199a" + ] + }, + { + "node": "84baf90b040c7d5912724461c6e9e1d104ce5a18", + "bug_id": 589613, + "desc": "Backed out changeset 2a216165e361 (bug 589613), a=shutuphook", + "pushdate": "2010-09-11 17:49:52", + "backsout": [ + "2a216165e361c07faf31e4788b404580e9cc7343" + ] + }, + { + "node": "afe3db59ae35d04547b3c07fdc46e8e77d8cd9d0", + "bug_id": 588016, + "desc": "Backed out changeset e2e1ea2a39ce. (Igor Bukanov \u2013 bug 588016 - Avoid reporting OOM when background has not finished. r=anygregor)", + "pushdate": "2010-09-11 19:16:24", + "backsout": [ + "e2e1ea2a39cea2442b332998015324369763f0a2" + ] + }, + { + "node": "59244235c85ba6eb0d296198ec5ea5ac7540a1c7", + "bug_id": 508115, + "desc": "Backed out changeset a6ee83aa638e to fix orange (test_bug508115.xul timing out)", + "pushdate": "2010-09-14 03:45:55", + "backsout": [ + "a6ee83aa638e" + ] + }, + { + "node": "5ef1dd2885fbd311be1be1993e786f218660cbb5", + "bug_id": 508115, + "desc": "Backed out changeset 2e55203d7b80 to fix orange (test_bug508115.xul timing out).", + "pushdate": "2010-09-14 03:45:55", + "backsout": [ + "2e55203d7b80a8dffdf9217d8eefbf4a6f897456" + ] + }, + { + "node": "df5e678290228bd3f9eb047fbe4597c1bb34092a", + "bug_id": 590612, + "desc": "Backout c130135dcf02 (Fix for bug 590612 (Speed up js-wrapping in classinfo when we already have a wrapper)).", + "pushdate": "2010-09-15 05:28:28", + "backsout": [ + "c130135dcf023f94f778866f3aba337704323f13" + ] + }, + { + "node": "77e11b95175faa0b37166d68311b62b8c398e13d", + "bug_id": 582840, + "desc": "Backout changeset 7eb93fe05d3a. bug 582840 due to oranges", + "pushdate": "2010-09-15 22:02:59", + "backsout": [ + "7eb93fe05d3aed48fe64ee4b00f55d7a931ee7fd" + ] + }, + { + "node": "8422935a2d917c8769c68fbff2a7443e286ae28e", + "bug_id": 580033, + "desc": "Backed out changeset 84b4d4856e1e (bug 580033) due to orange.", + "pushdate": "2010-09-16 16:26:06", + "backsout": [ + "84b4d4856e1eaab0ccc7ba6184a977ab44ef5ab5" + ] + }, + { + "node": "58e7b99bb1d09011736b55ed85f9bb75af839b5b", + "bug_id": 596762, + "desc": "Backed out changeset 080a38bd09c5, bug 596762, a=bustage", + "pushdate": "2010-09-16 22:41:26", + "backsout": [ + "080a38bd09c5cbdf173e61216655032c865d9b82" + ] + }, + { + "node": "84a05bdabec5be7bacde12cccc92db17f4d54c5a", + "bug_id": 596762, + "desc": "Backed out changeset c06ef0414fee, bug 596762. a=me", + "pushdate": "2010-09-21 02:13:50", + "backsout": [ + "c06ef0414fee2ae6ae41b8a4a13c62c132a7e780" + ] + }, + { + "node": "f552a61aa4234eca5819bb3bfd6490501a13c330", + "bug_id": 597945, + "desc": "Back out changeset d7d3c0af2877. Brendan Eich \u2013 Fix slot leak that leads to allocSlot assert botch (597945, r=jorendorff).", + "pushdate": "2010-09-21 05:12:47", + "backsout": [ + "d7d3c0af287702956715d115205e2695b5ec39fa" + ] + } +] \ No newline at end of file diff --git a/dataset/processed_backout_data.json b/dataset/processed_backout_data.json new file mode 100644 index 0000000000..047d5cb650 --- /dev/null +++ b/dataset/processed_backout_data.json @@ -0,0 +1,101119 @@ +[ + { + "node": "3a2a9e0c5c633a413efbf2db5110a978f7ebf055", + "author": "bcrowder@mozilla.com", + "bug_id": 439110, + "desc": "Backed out changeset f201baf7bf04 (bug 439110), was causing unit-test failures", + "pushdate": "2008-06-18 23:00:40", + "backsout": [ + "f201baf7bf047e4180a09b6106f2a8846ae572ee" + ], + "backedoutby": "", + "author_email": "bcrowder@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 2863366.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/xpconnect/shell/xpcshell.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "294bf662e8c0a3e3a1bc74a9dbd6d4d499c30e7f", + "author": "Daniel Holbert ", + "bug_id": 433373, + "desc": "Backed out changeset 5bffc31ff797 (bug 433373) -- first attempt didn't handle page scaling correctly.", + "pushdate": "2008-06-24 18:54:31", + "backsout": [ + "5bffc31ff797e687688309eda37f407a3e5e82d8" + ], + "backedoutby": "", + "author_email": "dholbert@cs.stanford.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 3502598.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/generic/nsPageFrame.cpp" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "layout/generic", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "4f1b1553985c88372878dffe93a79988a4f1c8a1", + "author": "L. David Baron ", + "bug_id": 363706, + "desc": "Back out 0b57ada5d4b2 due to mochitest failures on at least Windows. (Bug 363706)", + "pushdate": "2008-07-02 05:02:11", + "backsout": [ + "0b57ada5d4b243b60ac0834131c56bbadf8b935d" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 4183452.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/base/nsLayoutUtils.cpp", + "layout/base/nsLayoutUtils.h", + "layout/generic/nsAbsoluteContainingBlock.cpp", + "layout/generic/nsFrame.cpp", + "layout/style/nsComputedDOMStyle.cpp", + "layout/style/nsRuleNode.cpp", + "layout/style/nsStyleCoord.cpp", + "layout/style/nsStyleCoord.h", + "layout/style/nsStyleStruct.cpp", + "layout/style/nsStyleStruct.h", + "layout/tables/BasicTableLayoutStrategy.cpp", + "layout/tables/FixedTableLayoutStrategy.cpp", + "layout/xul/base/src/nsBox.cpp" + ], + "components": [ + "Core::CSS Parsing and Computation", + "Core::DOM: CSS Object Model", + "Core::Layout", + "Core::Layout: Tables", + "Core::Layout: Positioned" + ], + "directories": [ + "layout/generic", + "layout/tables", + "layout/xul", + "layout/style", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "487bd2c4044a093a8f1e108c7c925d1b55e85975", + "author": "L. David Baron ", + "bug_id": 363706, + "desc": "Back out 0b1995eab10f due to mochitest failures on at least Windows. (Bug 363706)", + "pushdate": "2008-07-02 05:02:11", + "backsout": [ + "0b1995eab10f9e451d0060ee41819b9edfea12d5" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 4183452.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "gfx/thebes/public/gfxFont.h", + "gfx/thebes/src/gfxAtsuiFonts.cpp", + "gfx/thebes/src/gfxOS2Fonts.cpp", + "gfx/thebes/src/gfxPangoFonts.cpp", + "gfx/thebes/src/gfxWindowsFonts.cpp", + "layout/reftests/bugs/371043-1-ref.html", + "layout/reftests/bugs/reftest.list", + "layout/style/nsRuleNode.cpp" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "gfx/thebes", + "layout/reftests", + "layout/style", + "gfx", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "847ff9bffc86ff91a8da3ea1b9f5b38bc335bce0", + "author": "Shawn Wilsher ", + "bug_id": 442949, + "desc": "Backed out changeset c9b5882bf6f6 per bug 442949.\nThis changeset is only being backed out because it depends on the sqlite upgrade.", + "pushdate": "2008-07-08 14:15:34", + "backsout": [ + "c9b5882bf6f69406c24d4c8a277122b53b207dcd" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 2932103.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "db/sqlite3/src/Makefile.in" + ], + "components": [], + "directories": [ + "db/sqlite3", + "db" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "00f39bafc70ebf3fb8ee8911ad097624cf2383a0", + "author": "Shawn Wilsher ", + "bug_id": 442949, + "desc": "Backed out changeset 1d72dd9072ab for Bug 442949 (Ts regression)", + "pushdate": "2008-07-08 14:15:34", + "backsout": [ + "1d72dd9072ab4f8693258fd4221266c030793c86" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 2932103.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "db/sqlite3/src/sqlite3.c", + "db/sqlite3/src/sqlite3.h" + ], + "components": [], + "directories": [ + "db/sqlite3", + "db" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "6d3ecb00edf7a48850ff6ea170af781d6339b363", + "author": "Shawn Wilsher ", + "bug_id": 442949, + "desc": "Backed out changeset e741c9c886f7 for bug 442949 (Ts regression)", + "pushdate": "2008-07-08 14:15:34", + "backsout": [ + "e741c9c886f780d08c40b9d84e65bb7f496a0203" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 2932103.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "configure.in", + "db/sqlite3/README.MOZILLA" + ], + "components": [], + "directories": [ + "db/sqlite3", + "db" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "ad98cff74097a54fc30245d5f7747d095834e68a", + "author": "Shawn Wilsher ", + "bug_id": 443220, + "desc": "Backed out changeset 12412df591a0 (bug 443220)", + "pushdate": "2008-07-08 22:34:54", + "backsout": [ + "12412df591a0b599c76c2a19e0251a7c46a419d9" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 2962063.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "tools/test-harness/xpcshell-simple/test_one.sh" + ], + "components": [], + "directories": [ + "tools/test-harness", + "tools" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "337a43c872960010037890048fccfc08e2af8a96", + "author": "L. David Baron ", + "bug_id": 374754, + "desc": "Backed out changeset 5c009a853d70 for hitting a fatal JS_Assert during xpcshell unit tests (xpcom/unit/test_bug374754.js) on the DO_NEXT_OP(JSOP_INCNAME_LENGTH) line on !JS_THREADED_INTERP platforms (Windows).", + "pushdate": "2008-07-19 04:53:17", + "backsout": [ + "5c009a853d70d952b2b2c209df33c00a02efb400" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 5651718.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsemit.cpp", + "js/src/jsinterp.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "16708f23daf5fbf23e298eeb28d7693e42ec6d34", + "author": "Edward Lee ", + "bug_id": 446621, + "desc": "Backout 6831521f03ac to fix Bug 446621 - Slowdown on AutoComplete - AwesomeBar. a=beltzner", + "pushdate": "2008-07-22 15:50:07", + "backsout": [ + "6831521f03ac63ba33b6804656f78c4ea6108355" + ], + "backedoutby": "", + "author_email": "edward.lee@engineering.uiuc.edu", + "reviewers": [ + "beltzner" + ], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 5214472.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/components/places/src/nsNavHistoryAutoComplete.cpp" + ], + "components": [], + "directories": [ + "toolkit/components", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "cab5a570f46e10259bcd9152bcd3fab535a35e5c", + "author": "Ryan Flint ", + "bug_id": 432599, + "desc": "Backout changesets d811aa4cf0cf and 96ca77c43cb9 from bug 432599", + "pushdate": "2008-07-29 23:05:50", + "backsout": [ + "d811aa4cf0cf2c0c23fb423ed23a452bd4f94cf0", + "96ca77c43cb9addf18588d138e910a5d201a1111" + ], + "backedoutby": "", + "author_email": "rflint@ryanflint.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 836604.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/base/content/browser-places.js", + "browser/base/content/test/Makefile.in", + "browser/base/content/test/browser_bug432599.js" + ], + "components": [ + "Firefox::Bookmarks & History" + ], + "directories": [ + "browser/base", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "3bd5b0f13df3cce01677022941d92e14747eca78", + "author": "Justin Dolske ", + "bug_id": 449422, + "desc": "Backed out changeset 7362e63c648e (relanding bug 449422)", + "pushdate": "2008-08-14 04:20:03", + "backsout": [ + "7362e63c648e" + ], + "backedoutby": "", + "author_email": "dolske@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 5043247.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/tables/nsTableRowFrame.cpp", + "layout/tables/nsTableRowGroupFrame.cpp" + ], + "components": [ + "Core::Layout: Tables" + ], + "directories": [ + "layout/tables", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "93a88a69a3df3d36b4b4c28126cd38ebd04026b4", + "author": "Justin Dolske ", + "bug_id": 449168, + "desc": "Backed out changeset 4b2c67fe7e6b (relanding bug 449168)", + "pushdate": "2008-08-14 04:51:30", + "backsout": [ + "4b2c67fe7e6b" + ], + "backedoutby": "", + "author_email": "dolske@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 5045134.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/generic/nsFrameSelection.h", + "layout/generic/nsTextFrame.h", + "layout/generic/nsTextFrameThebes.cpp" + ], + "components": [ + "Core::Layout", + "Core::Layout: Text and Fonts" + ], + "directories": [ + "layout/generic", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "afeaf72a5266b81ccdc006fe1d923aea93f88811", + "author": "Justin Dolske ", + "bug_id": 121341, + "desc": "Backed out changeset db55605b2a4c (relanding bug 121341)", + "pushdate": "2008-08-14 05:00:00", + "backsout": [ + "db55605b2a4c" + ], + "backedoutby": "", + "author_email": "dolske@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 5045644.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "xpcom/ds/nsPersistentProperties.cpp", + "xpcom/ds/nsPersistentProperties.h", + "xpcom/tests/unit/data/bug121341-2.properties", + "xpcom/tests/unit/data/bug121341.properties", + "xpcom/tests/unit/test_bug121341.js" + ], + "components": [ + "Core::XPCOM" + ], + "directories": [ + "xpcom/ds", + "xpcom", + "xpcom/tests" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "573c5b6e8ec057ba45cc91e88b5ec74403fda2c8", + "author": "Benjamin Smedberg ", + "bug_id": 31290, + "desc": "Backed out changeset e92e18d52d71 due to the following test failures on Windows:\n*** 31290 ERROR TEST-UNEXPECTED-FAIL | /tests/dom/tests/mochitest/general/test_offsets.xul | svgbase bounding rect width - got 45, expected 0\n*** 31291 ERROR TEST-UNEXPECTED-FAIL | /tests/dom/tests/mochitest/general/test_offsets.xul | svgbase bounding rect height - got 20, expected 0\n*** 31292 ERROR TEST-UNEXPECTED-FAIL | /tests/dom/tests/mochitest/general/test_offsets.xul | svgbase bounding rect right - got 45, expected 0\n*** 31293 ERROR TEST-UNEXPECTED-FAIL | /tests/dom/tests/mochitest/general/test_offsets.xul | svgbase bounding rect bottom - got 20, expected 0\n*** 31306 ERROR TEST-UNEXPECTED-FAIL | /tests/dom/tests/mochitest/general/test_offsets.xul | svgrect bounding rect width - got 45, expected 0\n*** 31307 ERROR TEST-UNEXPECTED-FAIL | /tests/dom/tests/mochitest/general/test_offsets.xul | svgrect bounding rect height - got 20, expected 0\n*** 31308 ERROR TEST-UNEXPECTED-FAIL | /tests/dom/tests/mochitest/general/test_offsets.xul | svgrect bounding rect right - got 45, expected 0\n*** 31309 ERROR TEST-UNEXPECTED-FAIL | /tests/dom/tests/mochitest/general/test_offsets.xul | svgrect bounding rect bottom - got 20, expected 0", + "pushdate": "2008-08-19 16:22:27", + "backsout": [ + "e92e18d52d714ded67f557aed34aed09e1883f0e" + ], + "backedoutby": "", + "author_email": "benjamin@smedbergs.us", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 13131183.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/base/nsLayoutUtils.cpp", + "layout/svg/base/src/nsISVGChildFrame.h", + "layout/svg/base/src/nsSVGClipPathFrame.cpp", + "layout/svg/base/src/nsSVGClipPathFrame.h", + "layout/svg/base/src/nsSVGContainerFrame.cpp", + "layout/svg/base/src/nsSVGContainerFrame.h", + "layout/svg/base/src/nsSVGEffects.cpp", + "layout/svg/base/src/nsSVGFilterFrame.cpp", + "layout/svg/base/src/nsSVGFilterFrame.h", + "layout/svg/base/src/nsSVGForeignObjectFrame.cpp", + "layout/svg/base/src/nsSVGForeignObjectFrame.h", + "layout/svg/base/src/nsSVGGlyphFrame.cpp", + "layout/svg/base/src/nsSVGGlyphFrame.h", + "layout/svg/base/src/nsSVGImageFrame.cpp", + "layout/svg/base/src/nsSVGInnerSVGFrame.cpp", + "layout/svg/base/src/nsSVGMarkerFrame.cpp", + "layout/svg/base/src/nsSVGMaskFrame.cpp", + "layout/svg/base/src/nsSVGOuterSVGFrame.cpp", + "layout/svg/base/src/nsSVGOuterSVGFrame.h", + "layout/svg/base/src/nsSVGPathGeometryFrame.cpp", + "layout/svg/base/src/nsSVGPathGeometryFrame.h", + "layout/svg/base/src/nsSVGSwitchFrame.cpp", + "layout/svg/base/src/nsSVGTextFrame.cpp", + "layout/svg/base/src/nsSVGTextFrame.h", + "layout/svg/base/src/nsSVGUtils.cpp", + "layout/svg/base/src/nsSVGUtils.h" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "layout/svg", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "2c020a9f03c14446c2b28966511240cc2883bcc5", + "author": "Dave Camp ", + "bug_id": 430061, + "desc": "Backed out changeset e63a23edb90c due to Rlk regression (bug 430061).", + "pushdate": "2008-08-19 21:43:06", + "backsout": [ + "e63a23edb90c92f0cd591e0507906f14978a1f4f" + ], + "backedoutby": "", + "author_email": "dcamp@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 4735124.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "modules/libpr0n/build/nsImageModule.cpp", + "modules/libpr0n/src/Makefile.in", + "modules/libpr0n/src/imgCache.cpp", + "modules/libpr0n/src/imgCache.h", + "modules/libpr0n/src/imgLoader.cpp", + "modules/libpr0n/src/imgLoader.h", + "modules/libpr0n/src/imgRequest.cpp", + "modules/libpr0n/src/imgRequest.h", + "modules/libpr0n/test/Makefile.in", + "modules/libpref/src/init/all.js" + ], + "components": [], + "directories": [ + "modules/libpref", + "modules/libpr0n", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "c82226c56072c7c85c7d9e614fa1c84b65d42592", + "author": "Dave Camp ", + "bug_id": 261074, + "desc": "Backed out changeset c0f5a0af84dd to try to fix windows orange (Bug 261074).", + "pushdate": "2008-08-19 22:46:59", + "backsout": [ + "c0f5a0af84dd0fe9602953dcfa00d088716fde4a" + ], + "backedoutby": "", + "author_email": "dcamp@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 4738957.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "widget/src/windows/nsWindow.cpp" + ], + "components": [], + "directories": [ + "widget", + "widget/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "aa14280d31fb3486a3371581ae6a04461738d1eb", + "author": "Dave Camp ", + "bug_id": 356295, + "desc": "Backed out changeset 30d900751ca9 to fix unit test orange (Bug 356295)", + "pushdate": "2008-08-20 00:57:00", + "backsout": [ + "30d900751ca93a98ccc4fca46179e44d4d900935" + ], + "backedoutby": "", + "author_email": "dcamp@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 4746758.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/base/content/pageinfo/pageInfo.js", + "content/base/public/nsContentUtils.h", + "content/base/src/nsContentAreaDragDrop.cpp", + "content/base/src/nsContentAreaDragDrop.h", + "content/base/src/nsContentUtils.cpp", + "content/base/src/nsGkAtomList.h", + "content/events/public/nsIPrivateDOMEvent.h", + "content/events/src/Makefile.in", + "content/events/src/nsDOMDataTransfer.cpp", + "content/events/src/nsDOMDataTransfer.h", + "content/events/src/nsDOMDragEvent.cpp", + "content/events/src/nsDOMDragEvent.h", + "content/events/src/nsDOMEvent.cpp", + "content/events/src/nsDOMEvent.h", + "content/events/src/nsDOMMouseEvent.h", + "content/events/src/nsDOMUIEvent.cpp", + "content/events/src/nsEventDispatcher.cpp", + "content/events/src/nsEventListenerManager.cpp", + "content/events/src/nsEventStateManager.cpp", + "content/events/src/nsEventStateManager.h", + "content/events/test/Makefile.in", + "content/events/test/test_draggableprop.html", + "content/events/test/test_dragstart.html", + "content/html/content/src/nsGenericHTMLElement.cpp", + "content/html/content/src/nsGenericHTMLElement.h", + "content/html/content/src/nsHTMLAnchorElement.cpp", + "content/html/content/src/nsHTMLImageElement.cpp", + "dom/public/coreEvents/nsIDOMDragListener.h", + "dom/public/idl/events/Makefile.in", + "dom/public/idl/events/nsIDOMDataTransfer.idl", + "dom/public/idl/events/nsIDOMDragEvent.idl", + "dom/public/idl/html/nsIDOMNSHTMLElement.idl", + "dom/public/nsDOMClassInfoID.h", + "dom/src/base/nsDOMClassInfo.cpp", + "editor/libeditor/base/nsEditorUtils.cpp", + "editor/libeditor/base/nsEditorUtils.h", + "editor/libeditor/html/nsHTMLDataTransfer.cpp", + "editor/libeditor/text/nsEditorEventListeners.cpp", + "editor/libeditor/text/nsPlaintextDataTransfer.cpp", + "layout/base/nsLayoutUtils.cpp", + "layout/xul/base/src/tree/public/nsITreeBoxObject.idl", + "layout/xul/base/src/tree/src/nsTreeBodyFrame.cpp", + "layout/xul/base/src/tree/src/nsTreeBoxObject.cpp", + "testing/mochitest/tests/SimpleTest/EventUtils.js", + "toolkit/content/nsDragAndDrop.js", + "widget/public/nsGUIEvent.h", + "widget/public/nsIDragService.idl", + "widget/public/nsIDragSession.idl", + "widget/src/beos/nsWindow.cpp", + "widget/src/cocoa/nsChildView.mm", + "widget/src/cocoa/nsDragService.mm", + "widget/src/gtk2/nsWindow.cpp", + "widget/src/gtk2/nsWindow.h", + "widget/src/os2/nsWindow.cpp", + "widget/src/photon/nsWidget.cpp", + "widget/src/windows/nsNativeDragTarget.cpp", + "widget/src/xpwidgets/nsBaseDragService.cpp", + "widget/src/xpwidgets/nsBaseDragService.h", + "widget/src/xpwidgets/nsPrimitiveHelpers.cpp", + "xpfe/global/jar.mn" + ], + "components": [ + "Core::Layout", + "Firefox::Page Info Window", + "Testing::Mochitest" + ], + "directories": [ + "browser/base", + "toolkit/content", + "editor", + "content/base", + "content", + "content/html", + "toolkit", + "dom", + "browser", + "layout", + "dom/public", + "dom/src", + "xpfe", + "layout/xul", + "testing/mochitest", + "testing", + "layout/base", + "widget", + "editor/libeditor", + "xpfe/global", + "widget/public", + "widget/src", + "content/events" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "695ba8eac3dc1e4a5206ff29f25a36267bc2d3e0", + "author": "Dave Camp ", + "bug_id": 442812, + "desc": "Backed out changeset 1e3d4775197a (bug 442812)", + "pushdate": "2008-08-20 05:59:47", + "backsout": [ + "1e3d4775197af65a4f9bcebf2280ad0d710b722a" + ], + "backedoutby": "", + "author_email": "dcamp@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 4764925.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "caps/src/nsScriptSecurityManager.cpp", + "content/base/public/nsContentUtils.h", + "content/base/src/Makefile.in", + "content/base/src/nsContentSink.cpp", + "content/base/src/nsContentSink.h", + "content/base/src/nsContentUtils.cpp", + "dom/src/offline/nsDOMOfflineResourceList.cpp", + "netwerk/base/public/nsNetUtil.h", + "netwerk/cache/src/nsDiskCacheDeviceSQL.cpp", + "netwerk/cache/src/nsDiskCacheDeviceSQL.h", + "uriloader/prefetch/nsIOfflineCacheUpdate.idl", + "uriloader/prefetch/nsOfflineCacheUpdate.cpp" + ], + "components": [], + "directories": [ + "netwerk/base", + "uriloader/prefetch", + "dom/src", + "netwerk", + "netwerk/cache", + "caps/src", + "caps", + "dom", + "content/base", + "content", + "uriloader" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "f65e7540fe97621babc413d15060df2cb3d86e81", + "author": "Dave Camp ", + "bug_id": 442806, + "desc": "Backed out changeset ea551e6f0f40 (bug 442806)", + "pushdate": "2008-08-20 05:59:47", + "backsout": [ + "ea551e6f0f409d0afd550d69cfbdd8a8d816c336" + ], + "backedoutby": "", + "author_email": "dcamp@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 4764925.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/base/content/browser.js", + "browser/components/preferences/advanced.js", + "content/base/src/nsContentSink.cpp", + "content/base/src/nsContentUtils.cpp", + "content/base/src/nsDocument.cpp", + "content/base/src/nsDocument.h", + "docshell/base/nsDocShell.cpp", + "dom/src/offline/Makefile.in", + "dom/src/offline/nsDOMOfflineResourceList.cpp", + "dom/src/offline/nsDOMOfflineResourceList.h", + "dom/tests/mochitest/ajax/offline/offlineTests.js", + "dom/tests/mochitest/ajax/offline/test_changingManifest.html", + "dom/tests/mochitest/ajax/offline/test_simpleManifest.html", + "netwerk/base/public/Makefile.in", + "netwerk/base/public/nsIApplicationCache.idl", + "netwerk/base/public/nsIApplicationCacheContainer.idl", + "netwerk/base/public/nsIApplicationCacheService.idl", + "netwerk/base/public/nsINetUtil.idl", + "netwerk/base/public/nsNetUtil.h", + "netwerk/base/src/nsIOService.cpp", + "netwerk/base/src/nsIOService.h", + "netwerk/build/Makefile.in", + "netwerk/build/nsNetCID.h", + "netwerk/build/nsNetModule.cpp", + "netwerk/cache/public/Makefile.in", + "netwerk/cache/public/nsICacheService.idl", + "netwerk/cache/public/nsIOfflineCacheSession.idl", + "netwerk/cache/src/nsCacheService.cpp", + "netwerk/cache/src/nsCacheService.h", + "netwerk/cache/src/nsCacheSession.cpp", + "netwerk/cache/src/nsCacheSession.h", + "netwerk/cache/src/nsDiskCacheDeviceSQL.cpp", + "netwerk/cache/src/nsDiskCacheDeviceSQL.h", + "netwerk/protocol/http/src/nsHttpChannel.cpp", + "netwerk/protocol/http/src/nsHttpChannel.h", + "uriloader/prefetch/nsIOfflineCacheUpdate.idl", + "uriloader/prefetch/nsOfflineCacheUpdate.cpp", + "uriloader/prefetch/nsOfflineCacheUpdate.h" + ], + "components": [ + "Firefox::General", + "Core::Networking", + "Core::DOM: Navigation" + ], + "directories": [ + "netwerk/base", + "browser/base", + "uriloader/prefetch", + "netwerk/protocol", + "dom/src", + "dom/tests", + "netwerk", + "docshell/base", + "netwerk/cache", + "docshell", + "browser/components", + "content/base", + "content", + "dom", + "netwerk/build", + "browser", + "uriloader" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "2053bab906dc548240c7d3e279af04ffcac48843", + "author": "Dave Camp ", + "bug_id": 442803, + "desc": "Backed out changeset bbaf0d5fef61 (bug 442803)", + "pushdate": "2008-08-20 05:59:47", + "backsout": [ + "bbaf0d5fef61d03cb6fbb41f334eeccb6e48599f" + ], + "backedoutby": "", + "author_email": "dcamp@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 4764925.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "uriloader/prefetch/nsIPrefetchService.idl", + "uriloader/prefetch/nsPrefetchService.cpp", + "uriloader/prefetch/nsPrefetchService.h" + ], + "components": [ + "Core::Networking: Cache" + ], + "directories": [ + "uriloader/prefetch", + "uriloader" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "a9d2103187b145aec59e893a66ef3eec6efec569", + "author": "Dave Camp ", + "bug_id": 436531, + "desc": "Backed out changeset 2e3d61018e3d (Bug 436531)", + "pushdate": "2008-08-20 07:43:30", + "backsout": [ + "2e3d61018e3d21e3fd7cd178f0636a68cdc25fd0" + ], + "backedoutby": "", + "author_email": "dcamp@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 4771148.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "xpcom/proxy/src/nsProxyEvent.cpp", + "xpcom/proxy/tests/Makefile.in", + "xpcom/proxy/tests/nsITestProxy.idl", + "xpcom/proxy/tests/nsITestProxyOrig.idl", + "xpcom/proxy/tests/proxy-create-threadsafety.cpp", + "xpcom/proxy/tests/proxytests.cpp", + "xpcom/reflect/xptcall/src/md/win32/xptc_arm_ceppc.asm" + ], + "components": [], + "directories": [ + "xpcom/reflect", + "xpcom/proxy", + "xpcom" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "e2f89ccef0e4b9e4f7cd72206a148692472b38dc", + "author": "Dave Camp ", + "bug_id": 418051, + "desc": "Backed out changeset af00b3f27c64 (Bug 418051)", + "pushdate": "2008-08-20 08:16:26", + "backsout": [ + "af00b3f27c646294873083d5e319b109810318ee" + ], + "backedoutby": "", + "author_email": "dcamp@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 4773124.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsparse.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "ada680794b55d8ff552d5c3d73811725fef56e08", + "author": "Dave Camp ", + "bug_id": 419562, + "desc": "Backed out changeset 1c69f587516b (Bug 419562)", + "pushdate": "2008-08-20 09:43:02", + "backsout": [ + "1c69f587516be67e1adae3f7a2b913d13e9fb958" + ], + "backedoutby": "", + "author_email": "dcamp@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 4778320.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "netwerk/protocol/http/src/nsHttpHandler.cpp", + "netwerk/protocol/http/src/nsHttpHandler.h" + ], + "components": [], + "directories": [ + "netwerk/protocol", + "netwerk" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "cafe838a9b87c8a80a674a2aa3acb890d2d4d37c", + "author": "Dave Camp ", + "bug_id": 367052, + "desc": "Backed out changeset f468ae1633d4 (bug 367052)", + "pushdate": "2008-08-20 10:48:44", + "backsout": [ + "f468ae1633d421c84960427ce3550176449b7832" + ], + "backedoutby": "", + "author_email": "dcamp@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 4782262.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/components/sessionstore/src/nsSessionStore.js", + "browser/components/sessionstore/test/Makefile.in", + "browser/components/sessionstore/test/browser/Makefile.in", + "browser/components/sessionstore/test/browser/browser_367052.js" + ], + "components": [], + "directories": [ + "browser/components", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "da0fa455f1af06307d92b7a5a953a3d24b2641da", + "author": "Ted Mielczarek ", + "bug_id": 446529, + "desc": "Backed out changeset d55aac0ec553, bug 446529 - Disable discretionary ligatures on Mac, due to reftest failures on mac\n\nREFTEST TEST-UNEXPECTED-FAIL | file:///builds/slave/trunk_darwin_mini01/build/layout/reftests/text/wordwrap-01.html |\nREFTEST TEST-UNEXPECTED-FAIL | file:///builds/slave/trunk_darwin_mini01/build/layout/reftests/text/wordwrap-03.html |", + "pushdate": "2008-08-20 14:44:22", + "backsout": [ + "d55aac0ec553a9c93c1e3a33c867a98f1fc23b39" + ], + "backedoutby": "", + "author_email": "ted.mielczarek@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 13211698.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "gfx/thebes/src/gfxAtsuiFonts.cpp" + ], + "components": [], + "directories": [ + "gfx/thebes", + "gfx" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "e376bc87ac4ac55653d08eae143ceeff73f0c2bf", + "author": "Dave Camp ", + "bug_id": 442806, + "desc": "Backed out changeset ebafb9df6ce0 (bug 442806)", + "pushdate": "2008-08-25 06:12:07", + "backsout": [ + "ebafb9df6ce0aaf17bb68508ceded54ce15114c1" + ], + "backedoutby": "", + "author_email": "dcamp@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 5197665.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/base/content/browser.js", + "browser/components/preferences/advanced.js", + "content/base/src/nsContentSink.cpp", + "content/base/src/nsContentUtils.cpp", + "content/base/src/nsDocument.cpp", + "content/base/src/nsDocument.h", + "docshell/base/nsDocShell.cpp", + "dom/src/offline/Makefile.in", + "dom/src/offline/nsDOMOfflineResourceList.cpp", + "dom/src/offline/nsDOMOfflineResourceList.h", + "dom/tests/mochitest/ajax/offline/offlineTests.js", + "dom/tests/mochitest/ajax/offline/test_changingManifest.html", + "dom/tests/mochitest/ajax/offline/test_simpleManifest.html", + "netwerk/base/public/Makefile.in", + "netwerk/base/public/nsIApplicationCache.idl", + "netwerk/base/public/nsIApplicationCacheContainer.idl", + "netwerk/base/public/nsIApplicationCacheService.idl", + "netwerk/base/public/nsINetUtil.idl", + "netwerk/base/public/nsNetUtil.h", + "netwerk/base/src/nsIOService.cpp", + "netwerk/base/src/nsIOService.h", + "netwerk/build/Makefile.in", + "netwerk/build/nsNetCID.h", + "netwerk/build/nsNetModule.cpp", + "netwerk/cache/public/Makefile.in", + "netwerk/cache/public/nsICacheService.idl", + "netwerk/cache/public/nsIOfflineCacheSession.idl", + "netwerk/cache/src/nsCacheService.cpp", + "netwerk/cache/src/nsCacheService.h", + "netwerk/cache/src/nsCacheSession.cpp", + "netwerk/cache/src/nsCacheSession.h", + "netwerk/cache/src/nsDiskCacheDeviceSQL.cpp", + "netwerk/cache/src/nsDiskCacheDeviceSQL.h", + "netwerk/protocol/http/src/nsHttpChannel.cpp", + "netwerk/protocol/http/src/nsHttpChannel.h", + "uriloader/prefetch/nsIOfflineCacheUpdate.idl", + "uriloader/prefetch/nsOfflineCacheUpdate.cpp", + "uriloader/prefetch/nsOfflineCacheUpdate.h" + ], + "components": [ + "Firefox::General", + "Core::Networking", + "Core::DOM: Navigation" + ], + "directories": [ + "netwerk/base", + "browser/base", + "uriloader/prefetch", + "netwerk/protocol", + "dom/src", + "dom/tests", + "netwerk", + "docshell/base", + "netwerk/cache", + "docshell", + "browser/components", + "content/base", + "content", + "dom", + "netwerk/build", + "browser", + "uriloader" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "5e208ee3e1cc379390bf83d2acd5aa2d2d28a40c", + "author": "Dave Townsend ", + "bug_id": 449027, + "desc": "Backed out changeset 47db77d641d4 from bug 449027", + "pushdate": "2008-08-28 09:58:46", + "backsout": [ + "47db77d641d43037314e0993cf18d6e41b1548d6" + ], + "backedoutby": "", + "author_email": "dtownsend@oxymoronical.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 7427684.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/app/profile/firefox.js", + "toolkit/mozapps/extensions/src/nsBlocklistService.js", + "toolkit/mozapps/extensions/test/unit/data/test_bug449027_app.xml", + "toolkit/mozapps/extensions/test/unit/data/test_bug449027_toolkit.xml", + "toolkit/mozapps/extensions/test/unit/test_bug449027.js" + ], + "components": [ + "Firefox::General" + ], + "directories": [ + "toolkit/mozapps", + "toolkit", + "browser", + "browser/app" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "f1bb365372c6d7f74e199deea15cc6c632c5d180", + "author": "Brian Crowder ", + "bug_id": 422792, + "desc": "Backed out changeset 6b496b906af4, bug 422792", + "pushdate": "2008-08-29 20:37:43", + "backsout": [ + "6b496b906af4fedb878b3e9d5c47347d0444bae3" + ], + "backedoutby": "", + "author_email": "crowder@fiverocks.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 5086271.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "widget/src/windows/nsAppShell.cpp", + "widget/src/windows/nsBidiKeyboard.cpp", + "widget/src/windows/nsBidiKeyboard.h", + "widget/src/windows/nsClipboard.cpp", + "widget/src/windows/nsDataObj.h", + "widget/src/windows/nsFilePicker.cpp", + "widget/src/windows/nsLookAndFeel.cpp", + "widget/src/windows/nsSound.cpp", + "widget/src/windows/nsToolkit.cpp", + "widget/src/windows/nsWindow.cpp" + ], + "components": [], + "directories": [ + "widget", + "widget/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "62e63419dfb3f79ca8825b93434e34ab626a3efd", + "author": "timeless@mozdev.org", + "bug_id": 454186, + "desc": "Backed out changeset 18b48ea2b188\nto fix Bug 454186\nSM crashes when try to download file [@ nsString::ToInteger - nsTreeBodyFrame::PaintProgressMeter]", + "pushdate": "2008-09-08 13:47:42", + "backsout": [ + "18b48ea2b18863bf780186313d185f1b30bf3646" + ], + "backedoutby": "", + "author_email": "timeless@mozdev.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 14849898.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/generic/nsContainerFrame.cpp" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "layout/generic", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "4b5063537a0f9c4a6dfeafe5bffcd4db54c82d08", + "author": "timeless@mozdev.org", + "bug_id": 454186, + "desc": "Backed out changeset 54215f2cbc66\nto fix Bug 454186\nSM crashes when try to download file [@ nsString::ToInteger - nsTreeBodyFrame::PaintProgressMeter]", + "pushdate": "2008-09-08 13:47:42", + "backsout": [ + "54215f2cbc66b64699a179a76ee3d553d3104192" + ], + "backedoutby": "", + "author_email": "timeless@mozdev.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 14849898.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/base/nsImageLoader.cpp", + "layout/base/nsLayoutUtils.cpp", + "layout/base/nsPresShell.cpp", + "layout/forms/nsListControlFrame.cpp", + "layout/generic/nsBlockFrame.cpp", + "layout/generic/nsContainerFrame.cpp", + "layout/generic/nsObjectFrame.cpp", + "layout/style/nsCSSDataBlock.cpp", + "layout/svg/base/src/nsSVGOuterSVGFrame.cpp", + "layout/xul/base/src/nsBox.cpp", + "layout/xul/base/src/nsXULPopupManager.cpp", + "layout/xul/base/src/nsXULTooltipListener.cpp", + "layout/xul/base/src/tree/src/nsTreeBodyFrame.cpp" + ], + "components": [ + "Core::Layout", + "Core::Layout: Form Controls", + "Core::Layout: Block and Inline" + ], + "directories": [ + "layout/generic", + "layout/xul", + "layout/forms", + "layout/svg", + "layout/style", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "713e17a251656ca02e552f7131ae0aa3e547b384", + "author": "Daniel Holbert ", + "bug_id": 454896, + "desc": "Backed out changeset 38140c8a8327 to see if it fixes Bug 454896 (sporadic RLk)", + "pushdate": "2008-09-12 01:03:43", + "backsout": [ + "38140c8a8327cd44bffab609c00a732d7de8085b" + ], + "backedoutby": "", + "author_email": "dholbert@cs.stanford.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 10350350.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "netwerk/protocol/http/src/nsHttpConnection.cpp", + "security/manager/boot/src/nsSecureBrowserUIImpl.cpp", + "security/manager/ssl/src/nsNSSIOLayer.cpp", + "security/manager/ssl/src/nsNSSIOLayer.h", + "uriloader/base/nsDocLoader.cpp" + ], + "components": [ + "Core::DOM: Navigation" + ], + "directories": [ + "netwerk/protocol", + "netwerk", + "uriloader/base", + "security", + "security/manager", + "uriloader" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "9d9569916616f85f22b692a02041af3026eb43de", + "author": "Daniel Holbert ", + "bug_id": 451918, + "desc": "Backed out changeset 6772511dc81a (bug 451918) to see if it fixes broken linux leak stats (bug 455095)", + "pushdate": "2008-09-12 23:57:52", + "backsout": [ + "6772511dc81a32de19fcf3c71f89b9a18ad49e28" + ], + "backedoutby": "", + "author_email": "dholbert@cs.stanford.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 10432799.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/app/Makefile.in" + ], + "components": [ + "Firefox Build System::General" + ], + "directories": [ + "browser", + "browser/app" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "d793ccba25a5557255063ef27f3a3ab373cac258", + "author": "Steven Michaud ", + "bug_id": 444864, + "desc": "Backed out changeset f82532e1b6b5 due to reftest failures (b=444864,444260,449111)", + "pushdate": "2008-09-15 17:33:09", + "backsout": [ + "f82532e1b6b5d31661a0f07c1d1d28350b85dda2" + ], + "backedoutby": "", + "author_email": "smichaud@pobox.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 6913211.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "widget/src/cocoa/nsNativeThemeCocoa.mm" + ], + "components": [], + "directories": [ + "widget", + "widget/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "0879f08590a9fe2a8b207ce82135408d878310cf", + "author": "Mark Banner ", + "bug_id": 325842, + "desc": "Back out changeset 493bbc89ca54 / Bug 325842", + "pushdate": "2008-09-18 11:10:27", + "backsout": [ + "493bbc89ca54a6e6dd1d8a7b2142e51adf350d9e" + ], + "backedoutby": "", + "author_email": "bugzilla@standard8.plus.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 9251531.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/components/autocomplete/src/nsAutoCompleteController.cpp", + "toolkit/content/tests/chrome/Makefile.in", + "toolkit/content/tests/chrome/test_autocomplete3.xul" + ], + "components": [], + "directories": [ + "toolkit/components", + "toolkit/content", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "406532c41fca52eb8570b727f8e8a5a614e5e84c", + "author": "Shawn Wilsher ", + "bug_id": 455836, + "desc": "Backed out changeset b3783fc5a9c9 (bug 455836) - TREE IS CLOSED!", + "pushdate": "2008-09-18 14:54:30", + "backsout": [ + "b3783fc5a9c9a8d2a4553d895bbda08cdb4d8bc0" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 9155239.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "widget/src/qt/nsNativeThemeQt.cpp" + ], + "components": [], + "directories": [ + "widget", + "widget/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "118ab5caf67dcf39de83014ca5e95b1a8cd62bdb", + "author": "Karl Tomlinson ", + "bug_id": 455791, + "desc": "backout f51aad9e6a88 due to intermittent talos ts failures b=455791", + "pushdate": "2008-09-19 03:04:07", + "backsout": [ + "f51aad9e6a88703c2d22f8fd525ecea06c96ab34" + ], + "backedoutby": "", + "author_email": "karlt+@karlt.net", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 6393023.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "gfx/thebes/public/gfxFont.h" + ], + "components": [], + "directories": [ + "gfx/thebes", + "gfx" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "7aac9d9d651b0610c41d22707111c54271e625ff", + "author": "L. David Baron ", + "bug_id": 455403, + "desc": "Backed out changeset aab6b12f4a2b (Bug 455403) due to reftest failures from landing patches in the wrong order, and unexplained reftest hangs.", + "pushdate": "2008-09-19 23:05:30", + "backsout": [ + "aab6b12f4a2b3108f273db2b8fac226c2f0a983d" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 11074051.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "gfx/thebes/public/gfxMatrix.h", + "layout/reftests/transform/compound-1-fail.html", + "layout/reftests/transform/compound-1-ref.html", + "layout/reftests/transform/compound-1a.html", + "layout/reftests/transform/reftest.list", + "layout/reftests/transform/rotate-2a.html", + "layout/style/nsStyleTransformMatrix.cpp", + "layout/style/nsStyleTransformMatrix.h" + ], + "components": [ + "Core::Layout", + "Core::CSS Parsing and Computation" + ], + "directories": [ + "gfx/thebes", + "layout/reftests", + "layout/style", + "gfx", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "783541270c298725bcc433342ad12069551148fa", + "author": "Serge Gautherie ", + "bug_id": 452899, + "desc": "Backed out changeset fa8fbd81159d\nBug 452899 - Don't explicitly create the statement wrapper - storage does it for us; r=(dolske + sdwilsh)\nto try to fix leak", + "pushdate": "2008-09-20 17:43:00", + "backsout": [ + "fa8fbd81159d415304e12c3273f040416f4e7fd5" + ], + "backedoutby": "", + "author_email": "sgautherie.bz@free.fr", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 6297643.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/components/passwordmgr/src/storage-mozStorage.js" + ], + "components": [], + "directories": [ + "toolkit/components", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "01d095208bdfd2fb3a09b91b5055f02dae58f02a", + "author": "Markus Stange ", + "bug_id": 403174, + "desc": "Backed out changeset 84bbd1f88fac (bug 403174)", + "pushdate": "2008-09-22 08:24:43", + "backsout": [ + "84bbd1f88fac83254a04effe3f78803097c98d2c" + ], + "backedoutby": "", + "author_email": "mstange@themasta.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 7282379.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "widget/src/cocoa/nsCocoaWindow.mm" + ], + "components": [], + "directories": [ + "widget", + "widget/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "2f9f1ea54be78fe8fe754bfbc235d7a369f730cf", + "author": "Benjamin Smedberg ", + "bug_id": 453388, + "desc": "Backed out changeset e2614011f194 - Bug 453388 - the better solution is to allow static objects and link libjs.so with g++ so that _init and _fini run static constructors/destructors correctly backout r=crowder", + "pushdate": "2008-09-23 07:43:09", + "backsout": [ + "e2614011f194b8d65b4cc912356372624ef69209" + ], + "backedoutby": "", + "author_email": "benjamin@smedbergs.us", + "reviewers": [ + "crowder" + ], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 16124025.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsapi.cpp", + "js/src/jstracer.cpp", + "js/src/jstracer.h" + ], + "components": [ + "Core::JavaScript Engine" + ], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "71d860a3a3006a0ea8b2d3dedfcec3810c64928c", + "author": "Benjamin Smedberg ", + "bug_id": 453388, + "desc": "Backed out changeset fc4a8cc07c9f - bustage fix from the first patch for bug 453388 which is also being backed out", + "pushdate": "2008-09-23 07:43:09", + "backsout": [ + "fc4a8cc07c9f" + ], + "backedoutby": "", + "author_email": "benjamin@smedbergs.us", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 16124025.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsapi.cpp", + "js/src/jstracer.cpp" + ], + "components": [ + "Core::JavaScript Engine" + ], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "6e6ac7a9540d42b871819923f441fd6d057e7718", + "author": "Serge Gautherie ", + "bug_id": 455813, + "desc": "Backed out changeset 9841b5e5cf10\nBug 455813 - Windows PGO builds fail when --disable-tests is set; r=ted.mielczarek", + "pushdate": "2008-09-24 05:18:25", + "backsout": [ + "9841b5e5cf10b3c329906cd5293938143c8c19b7" + ], + "backedoutby": "", + "author_email": "sgautherie.bz@free.fr", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 6598568.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "build/Makefile.in", + "build/pgo/Makefile.in", + "build/pgo/automation.py.in", + "testing/mochitest/Makefile.in" + ], + "components": [], + "directories": [ + "testing/mochitest", + "build/pgo", + "testing", + "build" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "04a7c91e0f31b21d076ac52037ad6313dbefe0bd", + "author": "Justin Dolske ", + "bug_id": 454781, + "desc": "Backed out changeset fa432b23baa5. (Backing out bug 454781 to investigate mochitest leaks)", + "pushdate": "2008-09-25 00:19:08", + "backsout": [ + "fa432b23baa573eb0798e7507510f9cac6983739" + ], + "backedoutby": "", + "author_email": "dolske@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 8657592.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "testing/mochitest/harness-overlay.xul", + "testing/mochitest/server.js", + "testing/mochitest/tests/SimpleTest/TestRunner.js" + ], + "components": [ + "Testing::Mochitest" + ], + "directories": [ + "testing/mochitest", + "testing" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "c2efb31d59857d6d3f8458080d44dbad60f4f135", + "author": "Karl Tomlinson ", + "bug_id": 385263, + "desc": "backout 23e255271851 b=385263", + "pushdate": "2008-09-26 08:01:41", + "backsout": [ + "23e255271851120a69110eea09f9f95aa3d4040f" + ], + "backedoutby": "", + "author_email": "karlt+@karlt.net", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 7015677.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "gfx/thebes/public/gfxPangoFonts.h", + "gfx/thebes/src/gfxBeOSPlatform.cpp", + "gfx/thebes/src/gfxPangoFonts.cpp", + "gfx/thebes/src/gfxPlatformGtk.cpp" + ], + "components": [], + "directories": [ + "gfx/thebes", + "gfx" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "f523d647bc5d8392a3bc2c312820694cc0f87291", + "author": "Shawn Wilsher ", + "bug_id": 417037, + "desc": "Backed out changeset b2d48e54c537 (bug 417037)\nWe have to backout bug 449443 because we have to backout bug 456910 because of\na Tp regression, which means we need to back this out :(", + "pushdate": "2008-09-26 19:56:06", + "backsout": [ + "b2d48e54c5373f880099f13bc87a6fb2d7ec5788" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 9864535.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "db/sqlite3/src/Makefile.in" + ], + "components": [], + "directories": [ + "db/sqlite3", + "db" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "f2f0728d979fabd8d40cab94a5d653ceab06e360", + "author": "Marco Zehe ", + "bug_id": 454997, + "desc": "Backout changeset 8fe1cd2d3c66 (bug 454997) because of regressions and crashes", + "pushdate": "2008-09-28 05:53:26", + "backsout": [ + "8fe1cd2d3c6699e10d3aecd2557a0885687021dc" + ], + "backedoutby": "", + "author_email": "marco.zehe@googlemail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 9910520.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "accessible/src/base/nsAccessibilityUtils.cpp", + "accessible/src/base/nsAccessibilityUtils.h", + "accessible/src/base/nsDocAccessible.cpp", + "accessible/tests/mochitest/Makefile.in", + "accessible/tests/mochitest/common.js", + "accessible/tests/mochitest/nsIAccessible_states.js", + "accessible/tests/mochitest/test_nsIAccessible_editablebody.html" + ], + "components": [ + "Core::Disability Access APIs" + ], + "directories": [ + "accessible/src", + "accessible", + "accessible/tests" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "3db739625352ee5e378899dc583193a1c1ba0f25", + "author": "Mark Banner ", + "bug_id": 382690, + "desc": "Backed out changeset 93928936b1ab bug 382690 due to check-in during string freeze.", + "pushdate": "2008-09-28 14:56:16", + "backsout": [ + "93928936b1abfd86368b1d86fb649d7679c4bfbb" + ], + "backedoutby": "", + "author_email": "bugzilla@standard8.plus.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 10129080.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/components/viewconfig/content/config.js", + "toolkit/components/viewconfig/content/config.xul", + "toolkit/locales/en-US/chrome/global/config.dtd" + ], + "components": [], + "directories": [ + "toolkit/components", + "toolkit", + "toolkit/locales" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "996d2802d3f2762122f9cb25a4b2302d2facbb8f", + "author": "Dave Townsend ", + "bug_id": 364315, + "desc": "Backed out changeset 961d90be2ba8 from bug 364315 due to random crashes in\ntests.", + "pushdate": "2008-09-30 12:09:36", + "backsout": [ + "961d90be2ba80d1ecafb00edc027908beca1e733" + ], + "backedoutby": "", + "author_email": "dtownsend@oxymoronical.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 10286734.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/base/src/nsScriptLoader.cpp", + "content/base/src/nsScriptLoader.h", + "parser/htmlparser/src/CParserContext.cpp", + "parser/htmlparser/src/CParserContext.h", + "parser/htmlparser/src/nsParser.cpp", + "parser/htmlparser/src/nsParser.h", + "parser/htmlparser/src/nsScanner.cpp", + "parser/htmlparser/src/nsScanner.h" + ], + "components": [], + "directories": [ + "parser/htmlparser", + "content/base", + "content", + "parser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "4e7a2d27d63649d9b58a772f6f29903f2601d607", + "author": "L. David Baron ", + "bug_id": 433616, + "desc": "Backed out changeset c1f6a55626be (bug 433616, part 2) because it probably caused a Windows XP performance regression.", + "pushdate": "2008-09-30 16:53:08", + "backsout": [ + "c1f6a55626be9cf9fb4b5b35a90444c7d17f35bd" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 12002109.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/base/public/nsIDocument.h", + "content/base/src/nsContentUtils.cpp", + "content/base/src/nsDataDocumentContentPolicy.cpp", + "content/base/src/nsDocument.cpp", + "content/base/src/nsDocument.h", + "content/base/src/nsFrameLoader.cpp", + "content/svg/document/src/Makefile.in", + "content/xul/content/src/nsXULElement.cpp", + "layout/base/nsDocumentViewer.cpp", + "layout/generic/nsFrameFrame.cpp", + "layout/generic/nsObjectFrame.cpp" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "layout/generic", + "content/xul", + "content/base", + "content", + "content/svg", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "abf1f4529de2161662d54fbc398943b5d0eef15d", + "author": "Dave Camp ", + "bug_id": 426932, + "desc": "Backed out changeset 38a48d485876 (bug 426932).", + "pushdate": "2008-09-30 19:25:44", + "backsout": [ + "38a48d48587618f7a96c879afc96184593c5d9ea" + ], + "backedoutby": "", + "author_email": "dcamp@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 8355682.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/components/url-classifier/tests/unit/test_cleankeycache.js" + ], + "components": [], + "directories": [ + "toolkit/components", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "507fca9fa64116a2bf6829c6b5f5fbf9414f40da", + "author": "Dave Camp ", + "bug_id": 453723, + "desc": "Backed out changeset 74aad43f37a5 (bug 453723).", + "pushdate": "2008-09-30 19:25:44", + "backsout": [ + "74aad43f37a5370a6e19893ccb631af1c54853b5" + ], + "backedoutby": "", + "author_email": "dcamp@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 8355682.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/components/url-classifier/src/nsUrlClassifierDBService.cpp", + "toolkit/components/url-classifier/src/nsUrlClassifierDBService.h", + "toolkit/components/url-classifier/src/nsUrlClassifierUtils.h", + "toolkit/components/url-classifier/tests/unit/head_urlclassifier.js", + "toolkit/components/url-classifier/tests/unit/test_cleankeycache.js" + ], + "components": [ + "Toolkit::Safe Browsing" + ], + "directories": [ + "toolkit/components", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "2eade6ea592b184c39b36f93951cf4335de3e24e", + "author": "Dave Townsend ", + "bug_id": 457194, + "desc": "Backed out changeset a9838a973cdd from bug 457194 due to failing mochitest", + "pushdate": "2008-10-01 15:41:18", + "backsout": [ + "a9838a973cdd044ae123f2ddfbed41d6a591120b" + ], + "backedoutby": "", + "author_email": "dtownsend@oxymoronical.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 10385836.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "gfx/thebes/src/gfxAtsuiFonts.cpp" + ], + "components": [], + "directories": [ + "gfx/thebes", + "gfx" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "115934f340f058345955b0458f60fae44e4e41c8", + "author": "L. David Baron ", + "bug_id": 114649, + "desc": "Backed out changeset 6f3797124c84: Relanding: Fire resize events every 200ms during resizing, not just 200ms after resizing stops. (Bug 114649) r+sr=roc", + "pushdate": "2008-10-02 03:12:35", + "backsout": [ + "6f3797124c84db28a4845fd90767837b711f092f" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 12125676.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/base/nsPresShell.cpp", + "layout/base/tests/test_bug114649.html" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "f9dccfb26ec9faa5399d84113fcbfd572ed90393", + "author": "Boris Zbarsky ", + "bug_id": 373701, + "desc": "Backed out changeset d07aa0d0712a: Relanding: Bug 373701. Make sure to properly cancel multipart image loads when they need canceling. r=joedrew, sr=biesi", + "pushdate": "2008-10-02 13:53:43", + "backsout": [ + "d07aa0d0712a" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [ + "joedrew", + "biesi" + ], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 7400931.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "modules/libpr0n/src/imgRequest.cpp" + ], + "components": [], + "directories": [ + "modules/libpr0n", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "5df4c3d437eeaa49e2121fca1eae9cdd52d876eb", + "author": "Boris Zbarsky ", + "bug_id": 433616, + "desc": "Backed out changeset 4e7a2d27d636: relanding Bug 433616 part 2. Implement loading of external resource documents. r=jst, sr=roc", + "pushdate": "2008-10-04 20:01:17", + "backsout": [ + "4e7a2d27d63649d9b58a772f6f29903f2601d607" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [ + "roc", + "jst" + ], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 7595785.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/base/public/nsIDocument.h", + "content/base/src/nsContentUtils.cpp", + "content/base/src/nsDataDocumentContentPolicy.cpp", + "content/base/src/nsDocument.cpp", + "content/base/src/nsDocument.h", + "content/base/src/nsFrameLoader.cpp", + "content/svg/document/src/Makefile.in", + "content/xul/content/src/nsXULElement.cpp", + "layout/base/nsDocumentViewer.cpp", + "layout/generic/nsFrameFrame.cpp", + "layout/generic/nsObjectFrame.cpp" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "layout/generic", + "content/xul", + "content/base", + "content", + "content/svg", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "a8eb5fc88c015017c7eaa662a81d8631df00e382", + "author": "L. David Baron ", + "bug_id": 455311, + "desc": "Backed out changeset 6357eb31cec6 (bug 455311) for causing performance regression bug 458065.", + "pushdate": "2008-10-06 02:56:35", + "backsout": [ + "6357eb31cec64741a90e209cb55af1159fb30f25" + ], + "backedoutby": "e3b597862e2a2d0f6556f7a6a439e1b1ee487521", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 12470316.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "netwerk/base/src/nsBaseChannel.cpp", + "netwerk/base/src/nsBaseChannel.h", + "netwerk/base/src/nsInputStreamChannel.cpp", + "netwerk/base/src/nsInputStreamChannel.h", + "netwerk/protocol/data/src/nsDataChannel.cpp", + "netwerk/protocol/data/src/nsDataChannel.h", + "netwerk/protocol/file/src/nsFileChannel.cpp", + "netwerk/protocol/file/src/nsFileChannel.h", + "netwerk/protocol/file/src/nsFileProtocolHandler.cpp", + "netwerk/protocol/ftp/src/nsFTPChannel.cpp", + "netwerk/protocol/ftp/src/nsFTPChannel.h", + "netwerk/protocol/gopher/src/nsGopherChannel.cpp", + "netwerk/protocol/gopher/src/nsGopherChannel.h" + ], + "components": [], + "directories": [ + "netwerk/base", + "netwerk/protocol", + "netwerk" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "6681dc7f1293b6e328450ab0df24f73b5a96f536", + "author": "D\u00e3o Gottwald ", + "bug_id": 455990, + "desc": "Backed out changeset a8cfcc9b6d5c: relanding Bug 455990 - Close button on last open tab should be hidden. r=gavin", + "pushdate": "2008-10-06 03:45:11", + "backsout": [ + "a8cfcc9b6d5c" + ], + "backedoutby": "", + "author_email": "dao@mozilla.com", + "reviewers": [ + "gavin" + ], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 10071174.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/base/content/tabbrowser.css" + ], + "components": [ + "Firefox::Tabbed Browser" + ], + "directories": [ + "browser/base", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "e3b597862e2a2d0f6556f7a6a439e1b1ee487521", + "author": "Boris Zbarsky ", + "bug_id": 455311, + "desc": "Back out changeset a8eb5fc88c01: relanding bug 455311. Treat .url files as redirects. r+sr=biesi", + "pushdate": "2008-10-06 20:45:30", + "backsout": [ + "a8eb5fc88c015017c7eaa662a81d8631df00e382" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 7771238.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "netwerk/base/src/nsBaseChannel.cpp", + "netwerk/base/src/nsBaseChannel.h", + "netwerk/base/src/nsInputStreamChannel.cpp", + "netwerk/base/src/nsInputStreamChannel.h", + "netwerk/protocol/data/src/nsDataChannel.cpp", + "netwerk/protocol/data/src/nsDataChannel.h", + "netwerk/protocol/file/src/nsFileChannel.cpp", + "netwerk/protocol/file/src/nsFileChannel.h", + "netwerk/protocol/file/src/nsFileProtocolHandler.cpp", + "netwerk/protocol/ftp/src/nsFTPChannel.cpp", + "netwerk/protocol/ftp/src/nsFTPChannel.h", + "netwerk/protocol/gopher/src/nsGopherChannel.cpp", + "netwerk/protocol/gopher/src/nsGopherChannel.h" + ], + "components": [], + "directories": [ + "netwerk/base", + "netwerk/protocol", + "netwerk" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "cfaa8db2c177f79ebc5392db50bc0d7cdcc97b6f", + "author": "Ted Mielczarek ", + "bug_id": 365467, + "desc": "Backed out changeset 893b2c3b521f (Bug 365467 Focus controller's initial window and element can get out of sync r+sr=jst)", + "pushdate": "2008-10-08 16:44:01", + "backsout": [ + "893b2c3b521fe8fd24da4abada4efe94220b370b" + ], + "backedoutby": "", + "author_email": "ted.mielczarek@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 17452477.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/base/nsPresShell.cpp" + ], + "components": [], + "directories": [ + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "1d8c68c2989e53ab13b883ce0e2023e049b9894e", + "author": "Justin Dolske ", + "bug_id": 394611, + "desc": "Backed out changeset 2f36cde1694c (bug 394611, due to leaks)", + "pushdate": "2008-10-11 04:42:26", + "backsout": [ + "2f36cde1694c7f19488a10cbb6f15e38f3f1f02e" + ], + "backedoutby": "", + "author_email": "dolske@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 10055790.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/components/passwordmgr/src/nsLoginManager.js", + "toolkit/components/passwordmgr/src/nsLoginManagerPrompter.js", + "toolkit/components/passwordmgr/test/Makefile.in", + "toolkit/components/passwordmgr/test/notification_common.js", + "toolkit/components/passwordmgr/test/subtst_notifications_10.html", + "toolkit/components/passwordmgr/test/subtst_notifications_8.html", + "toolkit/components/passwordmgr/test/subtst_notifications_9.html", + "toolkit/components/passwordmgr/test/test_notifications.html", + "toolkit/components/passwordmgr/test/test_prompt.html" + ], + "components": [], + "directories": [ + "toolkit/components", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "d8a6df699a2635c9bf3c02a97941a0a540844200", + "author": "Markus Stange ", + "bug_id": 398928, + "desc": "Backed out changeset 151e51ec625e (bug 398928) because of unit test orange", + "pushdate": "2008-10-13 12:34:11", + "backsout": [ + "151e51ec625e910335112572d678bdc9fecd6ad8" + ], + "backedoutby": "", + "author_email": "mstange@themasta.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 9111747.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/base/content/browser.xul", + "browser/base/content/pageinfo/pageInfo.xul", + "toolkit/components/console/content/console.xul", + "toolkit/content/Makefile.in", + "toolkit/content/WindowDraggingUtils.jsm", + "toolkit/content/customizeToolbar.js", + "toolkit/content/widgets/general.xml", + "toolkit/content/widgets/preferences.xml", + "toolkit/content/widgets/toolbar.xml", + "toolkit/mozapps/downloads/content/downloads.xul", + "toolkit/mozapps/extensions/content/extensions.xul", + "toolkit/themes/pinstripe/global/global.css" + ], + "components": [], + "directories": [ + "browser/base", + "toolkit/content", + "toolkit/components", + "toolkit", + "toolkit/mozapps", + "browser", + "toolkit/themes" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "726c49f3ea91e36175a708bafe4607194eadd56b", + "author": "Brian Crowder ", + "bug_id": 411726, + "desc": "Backed out changeset 82af7163534f\n(Bug 411726 -- Time offset and zone code are set wrong for some locales, r=mrbkap)", + "pushdate": "2008-10-14 21:21:14", + "backsout": [ + "82af7163534f427dfd880c82d3582de8011d25f0" + ], + "backedoutby": "", + "author_email": "crowder@fiverocks.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 9063282.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsdate.cpp", + "js/src/prmjtime.cpp" + ], + "components": [ + "Core::JavaScript: Standard Library" + ], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "fdb6f474fc26c902aaeae57c9a2c39c37de65819", + "author": "Reed Loden ", + "bug_id": 459780, + "desc": "Backed out changeset f678aac23eae from bug 459780 because it caused the regression in bug 460643.", + "pushdate": "2008-10-20 01:26:21", + "backsout": [ + "f678aac23eaead01ecc2794fd3253ca16356a759" + ], + "backedoutby": "", + "author_email": "reed@reedloden.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 13746475.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "widget/src/gtk2/nsWindow.cpp" + ], + "components": [], + "directories": [ + "widget", + "widget/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "6db7098c04e46b24fc7731203602e19a3921c588", + "author": "Benjamin Smedberg ", + "bug_id": 461410, + "desc": "Backed out changeset affcc1c08bc0 (deCOM frame enumerator) due to regression from it or bug 461410.", + "pushdate": "2008-10-28 06:59:42", + "backsout": [ + "affcc1c08bc0659efcc34c62edf3e1424b80a7dc" + ], + "backedoutby": "", + "author_email": "benjamin@smedbergs.us", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 19145418.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/events/src/nsEventStateManager.cpp", + "layout/base/nsFrameTraversal.cpp", + "layout/base/nsFrameTraversal.h", + "layout/base/nsIFrameTraversal.h", + "layout/generic/nsFrame.cpp", + "layout/generic/nsSelection.cpp", + "toolkit/components/typeaheadfind/src/nsTypeAheadFind.cpp" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "layout/generic", + "toolkit", + "toolkit/components", + "content", + "layout", + "layout/base", + "content/events" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "b13e55f6cfda45d7fef4b6621e7681a7532edf2c", + "author": "Benjamin Smedberg ", + "bug_id": 461410, + "desc": "Backed out changeset eda9709dc586 (deCOM frame enumerator) due to regression from it or bug 461410.", + "pushdate": "2008-10-28 06:59:42", + "backsout": [ + "eda9709dc586d8eb86eb9adb131a6999f6c13119" + ], + "backedoutby": "", + "author_email": "benjamin@smedbergs.us", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 19145418.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/base/nsFrameTraversal.cpp" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "66c23339bd12aca0833a922b63d10477ea5b224b", + "author": "Benjamin Smedberg ", + "bug_id": 461212, + "desc": "Backed out changeset d4c9a0776667 (deCOM nsILineEnumerator) due to regression from it or bug 461212", + "pushdate": "2008-10-28 06:59:42", + "backsout": [ + "d4c9a0776667d05b8a1f62ec693c995ef4e327b3" + ], + "backedoutby": "", + "author_email": "benjamin@smedbergs.us", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 19145418.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "accessible/src/html/nsHyperTextAccessible.cpp", + "layout/base/nsPresShell.cpp", + "layout/generic/nsBlockFrame.cpp", + "layout/generic/nsBlockFrame.h", + "layout/generic/nsFrame.cpp", + "layout/generic/nsFrame.h", + "layout/generic/nsFrameList.cpp", + "layout/generic/nsIFrame.h", + "layout/generic/nsILineIterator.h", + "layout/generic/nsLineBox.cpp", + "layout/generic/nsLineBox.h", + "layout/tables/nsTableRowGroupFrame.cpp", + "layout/tables/nsTableRowGroupFrame.h" + ], + "components": [ + "Core::Layout", + "Core::Layout: Tables", + "Core::Layout: Block and Inline" + ], + "directories": [ + "layout/generic", + "layout/tables", + "accessible/src", + "accessible", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "0370470de0650dabd61aac4d282eb60d1b7aa014", + "author": "L. David Baron ", + "bug_id": 322475, + "desc": "Backed out changeset d7338fec7266 (from bug 322475, which made us construct all our image loaders at frame construction time) because of issues with propagation of backgrounds to the canvas (bug 460796).", + "pushdate": "2008-10-28 22:52:00", + "backsout": [ + "d7338fec726672f07714c7bfc57c765961a4d984" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 14442841.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/generic/nsFrame.cpp" + ], + "components": [], + "directories": [ + "layout/generic", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "01e2b22db875bc378c6668f160a7ef4630806295", + "author": "L. David Baron ", + "bug_id": 322475, + "desc": "Backed out changeset 7f708623bf59 (from bug 322475, which made us construct all our image loaders at frame construction time) because of issues with propagation of backgrounds to the canvas (bug 460796).", + "pushdate": "2008-10-28 22:52:00", + "backsout": [ + "7f708623bf5973c81d07f80c8e0f405fcecfd6a9" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 14442841.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/base/Makefile.in", + "layout/base/nsImageLoadNotifier.cpp", + "layout/base/nsImageLoadNotifier.h", + "layout/base/nsImageLoader.cpp", + "layout/base/nsImageLoader.h", + "layout/base/nsPresContext.cpp", + "layout/base/nsPresContext.h", + "layout/generic/nsFrame.cpp" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "layout/generic", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "80654a9e4692b8cc671683911c2e53240be3df1c", + "author": "L. David Baron ", + "bug_id": 322475, + "desc": "Backed out changeset 23eebebb8b48 (from bug 322475, which made us construct all our image loaders at frame construction time) because of issues with propagation of backgrounds to the canvas (bug 460796).", + "pushdate": "2008-10-28 22:52:00", + "backsout": [ + "23eebebb8b48ba5281f21e1da4d9873f4e9de918" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 14442841.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/events/src/nsDOMDataContainerEvent.h", + "layout/base/nsCSSRendering.cpp", + "layout/base/nsFrameManager.cpp", + "layout/base/nsImageLoader.cpp", + "layout/base/nsImageLoader.h", + "layout/base/nsPresContext.cpp", + "layout/base/nsPresContext.h", + "layout/generic/nsFrame.cpp", + "layout/generic/nsHTMLReflowState.cpp" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "layout/generic", + "content", + "layout", + "layout/base", + "content/events" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "a935c0b1617856bc62d2aa0f2d12b3e109f831d8", + "author": "Josh Aas ", + "bug_id": 456662, + "desc": "back out changeset 47259b642835, b=456662", + "pushdate": "2008-10-28 23:59:08", + "backsout": [ + "47259b6428353b03a48afcb9abd7a8690e8cb5d4" + ], + "backedoutby": "", + "author_email": "joshmoz@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 10697909.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "configure.in", + "modules/libreg/src/Makefile.in", + "modules/libreg/src/reg.c", + "modules/libreg/standalone/Makefile.in", + "xpcom/Makefile.in", + "xpcom/MoreFiles/FSCopyObject.c", + "xpcom/MoreFiles/FSCopyObject.h", + "xpcom/MoreFiles/Makefile.in", + "xpcom/MoreFiles/MoreFilesX.c", + "xpcom/MoreFiles/MoreFilesX.h", + "xpcom/MoreFiles/ReadMe.txt", + "xpcom/build/Makefile.in", + "xpcom/io/Makefile.in", + "xpcom/io/nsLocalFileOSX.h", + "xpcom/io/nsLocalFileOSX.mm", + "xpcom/obsolete/Makefile.in" + ], + "components": [], + "directories": [ + "xpcom/MoreFiles", + "xpcom/io", + "xpcom/obsolete", + "xpcom/build", + "modules/libreg", + "xpcom", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "429bfa1c5dea5601da90aba52524b302a1472ab9", + "author": "timeless@mozdev.org", + "bug_id": 454561, + "desc": "Backed out changeset b0d41235146a\nBug 454561 disable tracing when JavaScript-Debugger is enabled [ @ jsd_lock ]\nthis isn't the correct fix\nr=graydon", + "pushdate": "2008-10-31 11:54:34", + "backsout": [ + "b0d41235146aadb5a4bc0b86f61fa8e404e55dbb" + ], + "backedoutby": "", + "author_email": "timeless@mozdev.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 19422310.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "dom/src/base/nsJSEnvironment.cpp" + ], + "components": [], + "directories": [ + "dom", + "dom/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "cf6c01973a893ff010964216f3e4d75b1bd12347", + "author": "Shawn Wilsher ", + "bug_id": 462050, + "desc": "Backed out changeset 84a9e53373c7\nBackout of bug 462050. We are going to try to reland this later to get reliable\nperformance numbers.", + "pushdate": "2008-11-01 00:43:02", + "backsout": [ + "84a9e53373c72d2ee0f6fc41eecc14813376b84c" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 12905751.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/base/content/browser.js" + ], + "components": [ + "Firefox::General" + ], + "directories": [ + "browser/base", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "8b08744c500c3b7cb1929f2ab2a5b015f3b89eee", + "author": "Shawn Wilsher ", + "bug_id": 461422, + "desc": "Backed out changeset 157abfbcb96e (bug 461422) tree is closed", + "pushdate": "2008-11-03 22:30:47", + "backsout": [ + "157abfbcb96efce46c4cc7bfaae220f8a52a1509" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 13157016.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/xul/templates/src/nsXULContentBuilder.cpp" + ], + "components": [], + "directories": [ + "content/xul", + "content" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "1830e12fe251edd7afb8671795bd127bebd70004", + "author": "Dave Townsend ", + "bug_id": 462986, + "desc": "Backed out changeset fbae114d6133 from bug 462986 due to test failures", + "pushdate": "2008-11-04 12:03:56", + "backsout": [ + "fbae114d613355dd05cb1926ad6291159ed2530f" + ], + "backedoutby": "", + "author_email": "dtownsend@oxymoronical.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 13310394.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/components/sessionstore/test/browser/browser_248970_a.js" + ], + "components": [], + "directories": [ + "browser/components", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "0d823e9893ad2dc95c4e402b280c01804c543721", + "author": "Dave Townsend ", + "bug_id": 436304, + "desc": "Backed out changeset 9b96bcff860b from bug 436304 - Implement All Tabs panel\nwith previews and search.", + "pushdate": "2008-11-04 14:21:32", + "backsout": [ + "9b96bcff860b407c869735835675a5a96c5376e7" + ], + "backedoutby": "", + "author_email": "dtownsend@oxymoronical.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 13318650.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/app/profile/firefox.js", + "browser/base/content/browser-tabPreviews.js", + "browser/base/content/browser-tabPreviews.xml", + "browser/base/content/browser.css", + "browser/base/content/browser.js", + "browser/base/content/browser.xul", + "browser/base/content/tabbrowser.css", + "browser/base/content/tabbrowser.xml", + "browser/base/content/test/browser_ctrlTab.js", + "browser/base/jar.mn", + "browser/locales/en-US/chrome/browser/browser.dtd", + "browser/themes/gnomestripe/browser/browser.css", + "browser/themes/gnomestripe/browser/jar.mn", + "browser/themes/gnomestripe/browser/tabbrowser/alltabs.png", + "browser/themes/pinstripe/browser/browser.css", + "browser/themes/winstripe/browser/browser-aero.css", + "browser/themes/winstripe/browser/browser.css", + "browser/themes/winstripe/browser/jar.mn", + "browser/themes/winstripe/browser/tabbrowser/alltabs-box-overflow-end-bkgnd-hover.png", + "browser/themes/winstripe/browser/tabbrowser/alltabs-box-overflow-end-bkgnd.png", + "browser/themes/winstripe/browser/tabbrowser/alltabs-box-overflow-start-bkgnd-hover.png", + "browser/themes/winstripe/browser/tabbrowser/alltabs-box-overflow-start-bkgnd.png", + "browser/themes/winstripe/browser/tabbrowser/alltabs.png" + ], + "components": [ + "Firefox::General", + "Firefox::Tabbed Browser" + ], + "directories": [ + "browser/base", + "browser/app", + "browser/themes", + "browser/locales", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "1a2fefd12905bbc6aae0b495c005959593b11fce", + "author": "Robert O'Callahan ", + "bug_id": 460811, + "desc": "Back out changeset b83d3c8ac166 (bug 460811) to try to fix bustage", + "pushdate": "2008-11-04 23:48:43", + "backsout": [ + "b83d3c8ac166e5f92f36fa44df498e74efd41832" + ], + "backedoutby": "", + "author_email": "robert@ocallahan.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 12703332.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "dom/public/idl/base/nsIDOMNavigator.idl", + "dom/public/idl/threads/Makefile.in", + "dom/public/nsDOMClassInfoID.h", + "dom/src/base/nsDOMClassInfo.cpp", + "dom/src/base/nsDOMClassInfo.h", + "dom/src/base/nsDOMScriptObjectFactory.cpp", + "dom/src/base/nsGlobalWindow.cpp", + "dom/src/base/nsGlobalWindow.h", + "dom/src/base/nsJSEnvironment.cpp", + "dom/src/threads/Makefile.in", + "dom/src/threads/nsDOMThreadService.cpp", + "dom/src/threads/nsDOMThreadService.h", + "dom/src/threads/nsDOMWorkerPool.cpp", + "dom/src/threads/nsDOMWorkerPool.h", + "dom/src/threads/nsDOMWorkerScriptLoader.cpp", + "dom/src/threads/nsDOMWorkerScriptLoader.h", + "dom/src/threads/nsDOMWorkerTimeout.cpp", + "dom/src/threads/nsDOMWorkerTimeout.h", + "dom/src/threads/nsDOMWorkerXHR.cpp", + "dom/src/threads/nsDOMWorkerXHR.h", + "dom/src/threads/nsDOMWorkerXHRProxy.cpp", + "dom/src/threads/nsDOMWorkerXHRProxy.h", + "dom/src/threads/test/Makefile.in", + "dom/src/threads/test/importScripts_worker.js", + "dom/src/threads/test/test_importScripts.html", + "dom/src/threads/test/test_longThread.html", + "dom/src/threads/test/test_recursion.html", + "dom/src/threads/test/test_regExpStatics.html", + "dom/src/threads/test/test_simpleThread.html", + "dom/src/threads/test/test_threadErrors.html", + "dom/src/threads/test/test_threadTimeouts.html", + "dom/src/threads/test/test_xhr.html", + "js/src/xpconnect/src/xpcwrappednativescope.cpp" + ], + "components": [], + "directories": [ + "js/src", + "dom/public", + "dom/src", + "dom", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "b5cba763fe6da4cd635d05a00ac63a13e62a3371", + "author": "Robert O'Callahan ", + "bug_id": 460811, + "desc": "Back out changeset b83d3c8ac166 (bug 460811) to try to fix bustage ... re-adding removed files", + "pushdate": "2008-11-05 00:04:07", + "backsout": [ + "b83d3c8ac166e5f92f36fa44df498e74efd41832" + ], + "backedoutby": "", + "author_email": "robert@ocallahan.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 12704256.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "dom/public/idl/threads/nsIDOMThreads.idl", + "dom/src/threads/nsDOMWorkerThread.cpp", + "dom/src/threads/nsDOMWorkerThread.h" + ], + "components": [], + "directories": [ + "dom", + "dom/public", + "dom/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "5b1425e110372a469590cb5e2eeb641b321f7bc0", + "author": "Dave Townsend ", + "bug_id": 407110, + "desc": "Backed out changeset 10c21d116e5d from bug 407110 to investigate Ts\nregression.", + "pushdate": "2008-11-07 10:15:13", + "backsout": [ + "10c21d116e5dc358a9a11f38d50f79f429a87055" + ], + "backedoutby": "", + "author_email": "dtownsend@oxymoronical.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 13563071.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/components/sessionstore/src/nsSessionStore.js" + ], + "components": [], + "directories": [ + "browser/components", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "9a2cbd5d3984c5ac673cef6fcebe32b89c5ae5ef", + "author": "Dave Townsend ", + "bug_id": 462973, + "desc": "Backed out changeset 4df50933e7cb from bug 462973 to investigate Ts\nregression.", + "pushdate": "2008-11-07 10:55:58", + "backsout": [ + "4df50933e7cb75bb212cfaaf6c19a765a1b5f4d0" + ], + "backedoutby": "", + "author_email": "dtownsend@oxymoronical.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 13565516.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/components/sessionstore/src/nsSessionStore.js" + ], + "components": [], + "directories": [ + "browser/components", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "83c8769d5fd9358dad12acf73440372f4a0e9651", + "author": "Dave Townsend ", + "bug_id": 455057, + "desc": "Backed out changeset 673d1ba18849 from bug 455057 as the likely cause of the\nVista Ts regression", + "pushdate": "2008-11-07 15:21:44", + "backsout": [ + "673d1ba1884979e00447b0fe273c971a6ba5763a" + ], + "backedoutby": "", + "author_email": "dtownsend@oxymoronical.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 13581462.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/base/content/aboutRobots-icon-rtl.png", + "browser/themes/gnomestripe/browser/Search-glass-rtl.png", + "browser/themes/gnomestripe/browser/Toolbar-small.png", + "browser/themes/gnomestripe/browser/Toolbar.png", + "browser/themes/gnomestripe/browser/identity.png", + "browser/themes/gnomestripe/browser/pageInfo.png", + "browser/themes/gnomestripe/browser/preferences/Options.png", + "browser/themes/gnomestripe/browser/preview.png", + "browser/themes/gnomestripe/browser/tabbrowser/newtab.png", + "browser/themes/pinstripe/browser/tabbrowser/newtab.png", + "browser/themes/winstripe/browser/tabbrowser/newtab-aero.png", + "browser/themes/winstripe/browser/tabbrowser/newtab.png", + "layout/reftests/border-image/10x5multicolor.png", + "layout/reftests/border-image/3x3multicolor.png", + "layout/reftests/border-image/4x4multicolor.png", + "layout/reftests/box-properties/abspos-replaced-width-offset-margin-narrow.png", + "layout/reftests/box-properties/abspos-replaced-width-offset-margin-wide.png", + "layout/reftests/bugs/solidblue.png", + "layout/reftests/bugs/solidblue2.png", + "layout/reftests/bugs/square-outline-32x32.png", + "layout/reftests/generated-content/square-outline-32x32.png", + "layout/reftests/pixel-rounding/corner-bl.png", + "layout/reftests/pixel-rounding/corner-tr.png", + "layout/reftests/pixel-rounding/random-10x10.png", + "layout/reftests/table-background/repeatable-diagonal-gradient-with-ticks.png", + "modules/libpr0n/test/reftest/generic/green.png", + "testing/performance/talos/page_load_test/gfx/images/png-2x2.png", + "toolkit/themes/gnomestripe/global/console/console-toolbar.png", + "toolkit/themes/gnomestripe/global/icons/Search-glass-rtl.png", + "toolkit/themes/gnomestripe/global/icons/blacklist_large.png", + "toolkit/themes/gnomestripe/global/icons/find.png", + "toolkit/themes/gnomestripe/global/icons/folder-item.png", + "toolkit/themes/gnomestripe/mozapps/extensions/extensionIcons.png", + "toolkit/themes/gnomestripe/mozapps/extensions/themeGeneric.png", + "toolkit/themes/gnomestripe/mozapps/extensions/viewButtons.png", + "toolkit/themes/gnomestripe/mozapps/update/update.png", + "toolkit/themes/gnomestripe/mozapps/xpinstall/xpinstallItemGeneric.png", + "toolkit/themes/pinstripe/global/icons/Search-close.png", + "toolkit/themes/pinstripe/global/icons/Search-glass.png" + ], + "components": [ + "Core::Layout", + "Core::Layout: Tables" + ], + "directories": [ + "browser/base", + "toolkit", + "modules/libpr0n", + "testing/performance", + "browser/themes", + "browser", + "layout/reftests", + "toolkit/themes", + "testing", + "layout", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "05c20a65b1df77e59275266e9a70cf3109344b45", + "author": "Jason Orendorff ", + "bug_id": 458851, + "desc": "Backed out changeset d4fe79372140 (bug 458851) due to persistent orange on TraceMonkey tinderboxes.", + "pushdate": "2008-11-08 09:06:43", + "backsout": [ + "d4fe79372140ce13b145097d0c5c380b84eefb0a" + ], + "backedoutby": "", + "author_email": "jorendorff@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 14039732.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsemit.cpp", + "js/src/jsinterp.cpp", + "js/src/jsobj.cpp", + "js/src/jsopcode.cpp", + "js/src/jsopcode.h", + "js/src/jsopcode.tbl", + "js/src/jstracer.cpp", + "js/src/jstracer.h", + "js/src/jsxdrapi.h" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "0a765c5ce37d5a6e9f6a9518e3b5df6d1d187530", + "author": "timeless@mozdev.org", + "bug_id": 454561, + "desc": "Backed out changeset b0d41235146a\nBug 454561 disable tracing when JavaScript-Debugger is enabled [ @ jsd_lock ]\nthis isn't the correct fix\nr=graydon", + "pushdate": "2008-11-08 09:06:43", + "backsout": [ + "b0d41235146aadb5a4bc0b86f61fa8e404e55dbb" + ], + "backedoutby": "", + "author_email": "timeless@mozdev.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 20103439.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "dom/src/base/nsJSEnvironment.cpp" + ], + "components": [], + "directories": [ + "dom", + "dom/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "827edbbc90885ef4742de54252ced8ffbe0b82aa", + "author": "Dave Townsend ", + "bug_id": 462774, + "desc": "Backed out changeset ec9a1864d1fb from bug 462774, drop JSON.jsm due to OSX\nburning", + "pushdate": "2008-11-14 12:36:21", + "backsout": [ + "ec9a1864d1fbb4b2b4aec31f702004b7f588f8b8" + ], + "backedoutby": "", + "author_email": "dtownsend@oxymoronical.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 14176339.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/xpconnect/loader/JSON.jsm", + "js/src/xpconnect/loader/Makefile.in", + "js/src/xpconnect/tests/unit/test_json.js" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "e10a0f54b14ea85629a77bf6ec0cb7f0e671efbf", + "author": "Dave Townsend ", + "bug_id": 462878, + "desc": "Backed out changeset 72088d2498c3 from bug 462878 as it was causing\nmochitests to crash", + "pushdate": "2008-11-14 14:51:28", + "backsout": [ + "72088d2498c330f87df142efaa9780e179943d12" + ], + "backedoutby": "", + "author_email": "dtownsend@oxymoronical.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 14184446.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/media/video/public/nsOggDecoder.h", + "content/media/video/src/nsChannelReader.cpp", + "content/media/video/src/nsOggDecoder.cpp" + ], + "components": [], + "directories": [ + "content", + "content/media" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "d0c342436fa89f4d72c4ff14e98115a640f52b4e", + "author": "Daniel Holbert ", + "bug_id": 421885, + "desc": "Backed out changeset e4690fcf6f7c, due to reftest failures on linux (421885-1.xml and 403181-1.xml)", + "pushdate": "2008-11-14 21:17:30", + "backsout": [ + "e4690fcf6f7c741c62bb7793bc36afd0b81b1c9e" + ], + "backedoutby": "", + "author_email": "dholbert@cs.stanford.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 15866377.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "gfx/src/thebes/nsThebesImage.cpp" + ], + "components": [], + "directories": [ + "gfx/src", + "gfx" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "75a38b047225e75426cc7ed74b1ab2e45e5ad513", + "author": "Igor Bukanov ", + "bug_id": 453157, + "desc": "Backed out changeset 8329a91db67d - bug 453157, CLOSED TREE", + "pushdate": "2008-11-20 23:18:55", + "backsout": [ + "8329a91db67db793cd4b392318ba55ec3a4e2d77" + ], + "backedoutby": "", + "author_email": "igor@mir2.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 13398236.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "dom/src/base/nsJSEnvironment.cpp", + "dom/src/threads/nsDOMThreadService.cpp", + "js/src/js.cpp", + "js/src/jsapi.cpp", + "js/src/jsapi.h", + "js/src/jscntxt.cpp", + "js/src/jscntxt.h", + "js/src/jsinterp.cpp", + "js/src/jspubtd.h", + "js/src/jsversion.h", + "js/src/xpconnect/idl/nsIXPConnect.idl", + "js/src/xpconnect/src/nsXPConnect.cpp", + "js/src/xpconnect/src/xpccomponents.cpp", + "js/src/xpconnect/src/xpccontext.cpp", + "js/src/xpconnect/src/xpcjsruntime.cpp", + "js/src/xpconnect/src/xpcprivate.h" + ], + "components": [ + "Core::JavaScript Engine" + ], + "directories": [ + "dom", + "js", + "dom/src", + "js/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "1f6bac1d9ed0bef5a0c9af637b63c5a905004de3", + "author": "Dave Townsend ", + "bug_id": 463384, + "desc": "Backed out changeset 4b5e00c182be from bug 463384 due to it causing bug 465883", + "pushdate": "2008-11-20 23:59:44", + "backsout": [ + "4b5e00c182beb9fef71dcc710258ca76bd94a323" + ], + "backedoutby": "", + "author_email": "dtownsend@oxymoronical.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 14735742.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/base/content/browser.js", + "browser/base/content/tabbrowser.xml" + ], + "components": [ + "Firefox::General" + ], + "directories": [ + "browser/base", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "25a79f857a12b49dc3cf819331cb0457fdafa8db", + "author": "Igor Bukanov ", + "bug_id": 453157, + "desc": "Backed out changeset c54f1957d564 - bug 453157 - build system changes caused mouchi test failures. CLOSED TREE", + "pushdate": "2008-11-21 23:13:52", + "backsout": [ + "c54f1957d56426d1c6e06c51d03dac01b1f116e1" + ], + "backedoutby": "", + "author_email": "igor@mir2.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 13484333.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "build/Makefile.in", + "build/pgo/Makefile.in", + "build/pgo/automation.py.in", + "dom/src/base/nsJSEnvironment.cpp", + "dom/src/threads/nsDOMThreadService.cpp", + "js/src/js.cpp", + "js/src/jsapi.cpp", + "js/src/jsapi.h", + "js/src/jscntxt.cpp", + "js/src/jscntxt.h", + "js/src/jsinterp.cpp", + "js/src/jspubtd.h", + "js/src/jsversion.h", + "js/src/xpconnect/idl/nsIXPConnect.idl", + "js/src/xpconnect/src/nsXPConnect.cpp", + "js/src/xpconnect/src/xpccomponents.cpp", + "js/src/xpconnect/src/xpccontext.cpp", + "js/src/xpconnect/src/xpcjsruntime.cpp", + "js/src/xpconnect/src/xpcprivate.h" + ], + "components": [ + "Core::JavaScript Engine" + ], + "directories": [ + "js/src", + "dom/src", + "build", + "dom", + "js", + "build/pgo" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "51249e968f249def386436609c6f2950197e2061", + "author": "Igor Bukanov ", + "bug_id": 453157, + "desc": "Backed out changeset 700ae4e59496 - bug 453157 caused talos oranges. CLOSED TREE", + "pushdate": "2008-11-24 10:37:44", + "backsout": [ + "700ae4e594966339b34ef0467c82997293d32def" + ], + "backedoutby": "", + "author_email": "igor@mir2.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 13698165.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "build/Makefile.in", + "build/pgo/Makefile.in", + "build/pgo/automation.py.in", + "dom/src/base/nsJSEnvironment.cpp", + "dom/src/threads/nsDOMThreadService.cpp", + "js/src/js.cpp", + "js/src/jsapi.cpp", + "js/src/jsapi.h", + "js/src/jscntxt.cpp", + "js/src/jscntxt.h", + "js/src/jsinterp.cpp", + "js/src/jspubtd.h", + "js/src/jsversion.h", + "js/src/xpconnect/idl/nsIXPConnect.idl", + "js/src/xpconnect/src/nsXPConnect.cpp", + "js/src/xpconnect/src/xpccomponents.cpp", + "js/src/xpconnect/src/xpccontext.cpp", + "js/src/xpconnect/src/xpcjsruntime.cpp", + "js/src/xpconnect/src/xpcprivate.h", + "testing/mochitest/Makefile.in" + ], + "components": [ + "Core::JavaScript Engine" + ], + "directories": [ + "js/src", + "dom/src", + "build", + "testing/mochitest", + "dom", + "js", + "testing", + "build/pgo" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "21d4cb73f6fe401968c9f1f10da7ed1cb72e40db", + "author": "Shawn Wilsher ", + "bug_id": 435474, + "desc": "Backed out changeset 87f6ae0c4324 (bug 435474) for orange.", + "pushdate": "2008-11-27 21:18:19", + "backsout": [ + "87f6ae0c4324ce0d1b6133fbe6405e8d3baa6934" + ], + "backedoutby": "", + "author_email": "me@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/app/Makefile.in", + "config/Makefile.in", + "config/rules.mk", + "config/static-rules.mk", + "embedding/browser/photon/src/Makefile.in", + "embedding/componentlib/Makefile.in", + "extensions/java/xpcom/interfaces/Makefile.in", + "modules/staticmod/Makefile.in", + "toolkit/mozapps/installer/packager.mk", + "xpcom/tests/static-checker/Makefile.in", + "xulrunner/app/Makefile.in", + "xulrunner/installer/Makefile.in" + ], + "components": [ + "Firefox Build System::General", + "Firefox::Installer" + ], + "directories": [ + "embedding/browser", + "embedding", + "toolkit", + "browser/app", + "xpcom/tests", + "config", + "extensions/java", + "xulrunner/installer", + "embedding/componentlib", + "toolkit/mozapps", + "extensions", + "browser", + "xpcom", + "xulrunner/app", + "xulrunner", + "modules/staticmod", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "ec6ae3ecb8815f3e272e5acf74321173a53ee171", + "author": "Shawn Wilsher ", + "bug_id": 453865, + "desc": "Backed out changeset 17842a2d0c7f (bug 453865) due to test failures", + "pushdate": "2008-11-27 22:23:09", + "backsout": [ + "17842a2d0c7f6b7f4dea7e7eb0119e1a8363f62b" + ], + "backedoutby": "", + "author_email": "me@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 3890.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "dom/public/idl/threads/nsIDOMWorkers.idl", + "dom/src/threads/Makefile.in", + "dom/src/threads/nsDOMWorker.cpp", + "dom/src/threads/nsDOMWorker.h", + "dom/src/threads/nsDOMWorkerEvents.cpp", + "dom/src/threads/nsDOMWorkerEvents.h", + "dom/src/threads/nsDOMWorkerMacros.h", + "dom/src/threads/test/Makefile.in", + "dom/src/threads/test/json_worker.js", + "dom/src/threads/test/test_json.html", + "dom/src/threads/test/test_xhrAbort.html", + "js/src/json.cpp", + "js/src/xpconnect/public/nsAutoJSValHolder.h" + ], + "components": [], + "directories": [ + "js/src", + "dom/public", + "dom/src", + "dom", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "1b45760df6eefe25863b23b93cafc5bc73b6a559", + "author": "Shawn Wilsher ", + "bug_id": 561566, + "desc": "Backed out changeset 037f635ced9f (bug 561566)", + "pushdate": "2008-11-28 04:35:30", + "backsout": [ + "037f635ced9f8885ca36bf33edca1d436a1041b4" + ], + "backedoutby": "", + "author_email": "me@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 26231.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "dom/src/base/nsDOMClassInfo.cpp", + "dom/src/base/nsDOMClassInfo.h", + "js/src/xpconnect/idl/nsIXPConnect.idl", + "js/src/xpconnect/src/nsXPConnect.cpp", + "js/src/xpconnect/src/qsgen.py", + "js/src/xpconnect/src/xpcconvert.cpp", + "js/src/xpconnect/src/xpcjsruntime.cpp", + "js/src/xpconnect/src/xpcprivate.h", + "js/src/xpconnect/src/xpcquickstubs.cpp", + "js/src/xpconnect/src/xpcquickstubs.h", + "js/src/xpconnect/src/xpcwrappednative.cpp" + ], + "components": [], + "directories": [ + "dom", + "js", + "dom/src", + "js/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "3957258880e7d6f4a8a3c7b4aff5475666cbd3b1", + "author": "Shawn Wilsher ", + "bug_id": 457215, + "desc": "Backed out changeset 527249758771 (bug 457215) to investigate a performance regression (bug 467102)", + "pushdate": "2008-11-28 19:08:08", + "backsout": [ + "52724975877131b7607539dfd73d25c5bf7c5247" + ], + "backedoutby": "", + "author_email": "me@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 78589.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "modules/lcms/src/cmsprecache.c" + ], + "components": [], + "directories": [ + "modules/lcms", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "a6d8a0bcac507df8008225e2683664f29145f395", + "author": "Shawn Wilsher ", + "bug_id": 460629, + "desc": "Backed out changeset 0586ee185c87 (bug 460629) to investigate possible performance regression (bug 467102)", + "pushdate": "2008-11-28 19:08:08", + "backsout": [ + "0586ee185c87bf8e109d390d93ddc5df09ca7100" + ], + "backedoutby": "", + "author_email": "me@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 78589.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "gfx/thebes/src/gfxPlatform.cpp", + "modules/lcms/include/lcms.h", + "modules/lcms/src/cmsio1.c", + "modules/lcms/src/lcms.def" + ], + "components": [], + "directories": [ + "modules/lcms", + "gfx/thebes", + "gfx", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "a3f9376ede1ea7fd6c56c4cb4e6f192267a97683", + "author": "Shawn Wilsher ", + "bug_id": 460520, + "desc": "Backed out changeset 6d9d920759cb (bug 460520) to investigate a performance regression (bug 467102)", + "pushdate": "2008-11-28 19:08:08", + "backsout": [ + "6d9d920759cbb115209f7aaf908515683f209e45" + ], + "backedoutby": "", + "author_email": "me@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 78589.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "modules/lcms/src/cmsmtrx.c", + "modules/lcms/src/cmswtpnt.c" + ], + "components": [], + "directories": [ + "modules/lcms", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "de15a638ac3c89a392ecd313c3562e275e4f3f31", + "author": "Shawn Wilsher ", + "bug_id": 407725, + "desc": "Backed out changeset fdd5e4e34241 (bug 407725) to possibly fix random failures of browser/base/content/test/browser_customize.js", + "pushdate": "2008-11-28 23:22:07", + "backsout": [ + "fdd5e4e34241c888c97af7427bd8b15bf6d83446" + ], + "backedoutby": "", + "author_email": "me@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 93828.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/content/customizeToolbar.js", + "toolkit/content/widgets/toolbar.xml" + ], + "components": [], + "directories": [ + "toolkit/content", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "5d192e3eee829d162556c9ba7391222c32967154", + "author": "Shawn Wilsher ", + "bug_id": 464362, + "desc": "Backed out changeset 30adfe786ffa (bug 464362) in an attempt to fix red on tinderbox.", + "pushdate": "2008-11-29 00:15:56", + "backsout": [ + "30adfe786ffaf746040facfc35f1220f7e221415" + ], + "backedoutby": "", + "author_email": "me@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 97057.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "modules/libreg/src/Makefile.in", + "modules/libreg/src/reg.c", + "modules/libreg/standalone/Makefile.in" + ], + "components": [], + "directories": [ + "modules/libreg", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "6dc4b85cd8a70d847b884dd841cccbbea3a25277", + "author": "Shawn Wilsher ", + "bug_id": 458397, + "desc": "Backed out changeset a4495a0cf2ff (bug 458397) to investigate Txul regression (bug 467102)", + "pushdate": "2008-11-29 01:07:07", + "backsout": [ + "a4495a0cf2ffb3f358b0f149b4a11c19bf5eb426" + ], + "backedoutby": "", + "author_email": "me@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 100128.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "dom/src/base/nsDOMClassInfo.cpp", + "dom/src/base/nsDOMClassInfo.h", + "js/src/xpconnect/idl/nsIXPConnect.idl", + "js/src/xpconnect/src/nsXPConnect.cpp", + "js/src/xpconnect/src/xpcconvert.cpp", + "js/src/xpconnect/src/xpcprivate.h", + "js/src/xpconnect/src/xpcquickstubs.cpp", + "js/src/xpconnect/src/xpcwrappedjsclass.cpp" + ], + "components": [], + "directories": [ + "dom", + "js", + "dom/src", + "js/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "09ec08895dea4dfdd86671846bacc89efd1c1114", + "author": "Ted Mielczarek ", + "bug_id": 427750, + "desc": "Backed out changeset 96956634349c, bug 427750 - Require python >= 2.4 to build Mozilla (and >=2.5 on Windows). Apparently scratchbox only ships with 2.3 by default.", + "pushdate": "2008-12-02 19:17:03", + "backsout": [ + "96956634349c34be4469035052ee2dcfe6b1853b" + ], + "backedoutby": "", + "author_email": "ted.mielczarek@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 22213659.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "configure.in" + ], + "components": [], + "directories": [], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "b4b8f7a7212b6cf9a1cb5d84cc5f656d7be4970b", + "author": "Benjamin Smedberg ", + "bug_id": 466486, + "desc": "Backed out changeset f71446b6fc7e: bug 466486- directories are getting skipped, causing things like xpcshell not to be built", + "pushdate": "2008-12-02 22:18:45", + "backsout": [ + "f71446b6fc7e115a4b81d078c1d27f315c48ecdb" + ], + "backedoutby": "", + "author_email": "benjamin@smedbergs.us", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 22224561.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "config/rules.mk", + "js/src/config/rules.mk" + ], + "components": [ + "Firefox Build System::General" + ], + "directories": [ + "js/src", + "config", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "c0e30a87ce6381e10e3948f0877bd07f180e5caf", + "author": "Gavin Sharp ", + "bug_id": 455381, + "desc": "backout changeset ce8fbd7d222e from bug 455381 to fix windows unit test bustage", + "pushdate": "2008-12-03 23:51:55", + "backsout": [ + "ce8fbd7d222e0a07dc0d9d9585dfe532732830c3" + ], + "backedoutby": "", + "author_email": "gavin@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 14769262.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "xpcom/threads/nsProcessCommon.cpp" + ], + "components": [ + "Core::XPCOM" + ], + "directories": [ + "xpcom/threads", + "xpcom" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "212de1e1a1048edc5d3976b83694d0533a6c9b87", + "author": "L. David Baron ", + "bug_id": 302561, + "desc": "Backed out changeset 7b553bbed53d (bug 302561) due to chrome test crash.", + "pushdate": "2008-12-04 17:57:59", + "backsout": [ + "7b553bbed53d49d4d4dbe486818866542396a5b3" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 17622000.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/base/nsCSSFrameConstructor.cpp", + "layout/base/nsCSSFrameConstructor.h", + "layout/base/nsPresShell.cpp", + "layout/style/test/Makefile.in", + "layout/style/test/test_hover.html", + "view/public/nsIViewObserver.h", + "view/src/nsViewManager.cpp" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "view", + "view/src", + "view/public", + "layout/style", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "024fa1c26e347b5281a1cb57854f6eff6687dc90", + "author": "Daniel Holbert ", + "bug_id": 335531, + "desc": "Backed out changeset 78d662c2c878 (Bug 335531) on suspicion of causing mochitest failures in test_bug399284.html on linux & windows unittest boxes.", + "pushdate": "2008-12-05 19:53:14", + "backsout": [ + "78d662c2c8785e04d47f04a584c654830ba20993" + ], + "backedoutby": "", + "author_email": "dholbert@cs.stanford.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 17675721.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/base/public/nsContentUtils.h", + "content/base/src/nsContentUtils.cpp", + "content/base/src/nsScriptLoader.cpp", + "dom/locales/en-US/chrome/charsetTitles.properties", + "extensions/universalchardet/src/base/nsUniversalDetector.cpp", + "intl/chardet/src/nsMetaCharsetObserver.cpp", + "intl/uconv/src/charsetalias.properties", + "intl/uconv/src/nsUConvModule.cpp", + "intl/uconv/tests/unit/test_bug335531.js", + "intl/uconv/ucvlatin/nsUCvLatinCID.h", + "intl/uconv/ucvlatin/nsUTF32ToUnicode.cpp", + "intl/uconv/ucvlatin/nsUTF32ToUnicode.h", + "intl/uconv/ucvlatin/nsUnicodeToUTF32.cpp", + "intl/uconv/ucvlatin/nsUnicodeToUTF32.h", + "layout/style/nsCSSLoader.cpp", + "netwerk/streamconv/converters/nsUnknownDecoder.cpp", + "parser/htmlparser/src/nsParser.cpp", + "toolkit/locales/en-US/chrome/global/intl.properties" + ], + "components": [ + "Core::Networking", + "Firefox Build System::General" + ], + "directories": [ + "toolkit", + "netwerk", + "toolkit/locales", + "dom/locales", + "extensions/universalchardet", + "netwerk/streamconv", + "dom", + "content/base", + "content", + "extensions", + "intl", + "intl/chardet", + "parser", + "parser/htmlparser", + "layout/style", + "layout", + "intl/uconv" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "6c07d6a8cd3344d35263acd501806ce01c661c2f", + "author": "Shawn Wilsher ", + "bug_id": 466582, + "desc": "Backed out changeset b6f762fde736 (bug 466582) for unit test orange.", + "pushdate": "2008-12-08 23:53:23", + "backsout": [ + "b6f762fde736dbbfec42b91a39c3d363ffc80310" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 16185972.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "chrome/src/nsChromeProtocolHandler.cpp", + "chrome/src/nsChromeRegistry.cpp", + "chrome/test/unit/data/test_bug401153.manifest", + "chrome/test/unit/data/test_data_protocol_registration.manifest", + "chrome/test/unit/data/test_no_remote_registration.manifest", + "chrome/test/unit/test_bug401153.js", + "chrome/test/unit/test_data_protocol_registration.js", + "chrome/test/unit/test_no_remote_registration.js", + "docshell/base/nsDocShell.cpp", + "modules/libpr0n/decoders/icon/nsIconProtocolHandler.cpp", + "netwerk/base/public/nsIProtocolHandler.idl", + "netwerk/protocol/data/src/nsDataHandler.cpp", + "netwerk/protocol/file/src/nsFileProtocolHandler.cpp", + "netwerk/protocol/res/src/nsResProtocolHandler.cpp", + "toolkit/components/places/src/nsAnnoProtocolHandler.cpp" + ], + "components": [ + "Core::DOM: Navigation", + "Toolkit::Startup and Profile System" + ], + "directories": [ + "modules", + "netwerk/base", + "netwerk/protocol", + "toolkit", + "modules/libpr0n", + "netwerk", + "toolkit/components", + "docshell/base", + "docshell", + "chrome/src", + "chrome/test", + "chrome" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "5af0a48a20d48baf754d6b71831334134effc6aa", + "author": "Shawn Wilsher ", + "bug_id": 432938, + "desc": "Backed out changeset 3744204c1576 (bug 432938) due to orange", + "pushdate": "2008-12-08 23:53:23", + "backsout": [ + "3744204c15769a48972e8376324afc78faf4ebfc" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 16185972.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/themes/gnomestripe/browser/jar.mn" + ], + "components": [], + "directories": [ + "browser/themes", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "3ce0936aef4054e10469b2af018aa2779f25de57", + "author": "L. David Baron ", + "bug_id": 466104, + "desc": "Backed out changeset 957a4fed14af (bug 466104) due to leaks", + "pushdate": "2008-12-09 07:13:47", + "backsout": [ + "957a4fed14af1edfccedb05131ac3385f0d84881" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 18015348.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "testing/mochitest/tests/SimpleTest/SimpleTest.js", + "testing/mochitest/tests/SimpleTest/TestRunner.js" + ], + "components": [ + "Testing::Mochitest" + ], + "directories": [ + "testing/mochitest", + "testing" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "57c92d052aca6c275b7a08ed52cf7a084d664526", + "author": "Shawn Wilsher ", + "bug_id": 463887, + "desc": "Backed out changeset 00563815af18 (bug 463887) because it caused orange.", + "pushdate": "2008-12-12 01:27:07", + "backsout": [ + "00563815af185abbb0c0191666d07415697b11da" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 16450796.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "configure.in" + ], + "components": [], + "directories": [], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "c39b5108ca5184cafb529908608991022e2c63ae", + "author": "L. David Baron ", + "bug_id": 468824, + "desc": "Backed out changeset 12f97a5bc3b6 (bug 468824) for causing failed unit test because of differences between config/system-headers and js/src/config/system-headers", + "pushdate": "2008-12-12 02:21:01", + "backsout": [ + "12f97a5bc3b6158d56ccae8d60cc81eae909c4f9" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 18256982.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "config/system-headers" + ], + "components": [], + "directories": [ + "config" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "3cbb1961f1f7047554228cbae0629112ffeaf5f5", + "author": "Benjamin Smedberg ", + "bug_id": 460926, + "desc": "Backed out changeset 71c3a9d14712 - Bug 460926 - due to crash regression, bug 468845", + "pushdate": "2008-12-15 14:21:49", + "backsout": [ + "71c3a9d147120c5abe9dceb6aaa39991cdfce6d4" + ], + "backedoutby": "", + "author_email": "benjamin@smedbergs.us", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 23319145.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/xre/nsAppRunner.cpp" + ], + "components": [ + "Toolkit::Startup and Profile System" + ], + "directories": [ + "toolkit", + "toolkit/xre" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "44ef5053568e07019c19149684eae85c1b8a64e4", + "author": "Joe Drew ", + "bug_id": 469809, + "desc": "Backed out changeset 0c0bf7bd8e7b for bug 469809", + "pushdate": "2008-12-16 19:54:02", + "backsout": [ + "0c0bf7bd8e7bebe4807bddb81c311d0a120db087" + ], + "backedoutby": "", + "author_email": "joe@drew.ca", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 10323370.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "widget/src/gtk2/nsWindow.cpp" + ], + "components": [], + "directories": [ + "widget", + "widget/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "eceb4663cfd926c4541e094756c1c0bc29500401", + "author": "Justin Dolske ", + "bug_id": 463806, + "desc": "Backed out changeset 98ea743c9156 (Bug 463806) due to crashes on OS X 10.4 talos boxes.", + "pushdate": "2008-12-17 21:03:07", + "backsout": [ + "98ea743c9156328763a87df55ce5f82e786df338" + ], + "backedoutby": "", + "author_email": "dolske@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 15903431.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "gfx/thebes/src/gfxQuartzFontCache.h", + "gfx/thebes/src/gfxQuartzFontCache.mm" + ], + "components": [], + "directories": [ + "gfx/thebes", + "gfx" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "e0740bbd7f753add0a5973e031f7388c2c87a2a1", + "author": "L. David Baron ", + "bug_id": 470769, + "desc": "Backed out changeset 441f119f1a0c (Bug 470769) due to failures in layout/style/test/test_bug365932.html", + "pushdate": "2008-12-23 16:12:28", + "backsout": [ + "441f119f1a0c0ded15ad4c4e9b563befd64497cc" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 19257269.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/style/nsComputedDOMStyle.cpp", + "layout/style/nsROCSSPrimitiveValue.cpp", + "layout/style/nsROCSSPrimitiveValue.h", + "layout/style/test/Makefile.in", + "layout/style/test/test_bug373875.html" + ], + "components": [ + "Core::DOM: CSS Object Model" + ], + "directories": [ + "layout/style", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "f506b00d99f4bfcd16df58ff86c0e435ae3bbcc0", + "author": "Igor Bukanov ", + "bug_id": 453157, + "desc": "Backed out changeset 7184e014cd05 - the patch for bug 453157 bursted tgfx test on Windows.", + "pushdate": "2008-12-26 01:26:36", + "backsout": [ + "7184e014cd05187008c3c579b66e79799e423710" + ], + "backedoutby": "", + "author_email": "igor@mir2.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 16429897.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "build/Makefile.in", + "build/pgo/Makefile.in", + "build/pgo/automation.py.in", + "dom/src/base/nsJSEnvironment.cpp", + "dom/src/threads/nsDOMThreadService.cpp", + "js/src/js.cpp", + "js/src/jsapi.cpp", + "js/src/jsapi.h", + "js/src/jscntxt.cpp", + "js/src/jscntxt.h", + "js/src/jsinterp.cpp", + "js/src/jspubtd.h", + "js/src/jsversion.h", + "js/src/xpconnect/idl/nsIXPConnect.idl", + "js/src/xpconnect/src/nsXPConnect.cpp", + "js/src/xpconnect/src/xpccomponents.cpp", + "js/src/xpconnect/src/xpccontext.cpp", + "js/src/xpconnect/src/xpcjsruntime.cpp", + "js/src/xpconnect/src/xpcprivate.h", + "testing/mochitest/Makefile.in" + ], + "components": [ + "Core::JavaScript Engine" + ], + "directories": [ + "js/src", + "dom/src", + "build", + "testing/mochitest", + "dom", + "js", + "testing", + "build/pgo" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "0928c4fc27901f10216e5ac2509530bea0c62c3b", + "author": "Phil Ringnalda ", + "bug_id": 467862, + "desc": "Backed out changeset 73be1c836d7f (bug 467862) to see if that fixes Windows bustage (bug 471097)", + "pushdate": "2008-12-26 03:30:08", + "backsout": [ + "73be1c836d7f066f200ad4565d74bbc9354d2689" + ], + "backedoutby": "", + "author_email": "philringnalda@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 16769818.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "config/config.mk", + "config/rules.mk", + "js/src/config/config.mk", + "js/src/config/rules.mk" + ], + "components": [ + "Firefox Build System::General" + ], + "directories": [ + "js/src", + "config", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "bac73f9f2d2b28630201fe2a2511b3a5bce0f68e", + "author": "Phil Ringnalda ", + "bug_id": 462004, + "desc": "Backed out changeset 55e23c647137 (bug 462004) so the backout for bug 467862 to solve bug 471097 can actually build", + "pushdate": "2008-12-26 03:52:55", + "backsout": [ + "55e23c6471379101a0e8a8e1f1f0e0b39b26c711" + ], + "backedoutby": "", + "author_email": "philringnalda@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 16771185.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "config/autoconf.mk.in", + "configure.in", + "js/src/Makefile.in", + "js/src/config/autoconf.mk.in", + "js/src/configure.in", + "js/src/editline/Makefile.in", + "js/src/js.cpp", + "js/src/shell/Makefile.in", + "js/src/shell/js.cpp" + ], + "components": [ + "Firefox Build System::General", + "Core::JavaScript Engine" + ], + "directories": [ + "js/src", + "config", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "de8572d5add0ea788427cc233df093a3e893d76d", + "author": "Phil Ringnalda ", + "bug_id": 466224, + "desc": "Backed out changeset e0cce6a738c9 (Bug 466224 - Make quickstubs call nsINode/nsINodeList methods) for failing mochitest", + "pushdate": "2009-01-01 02:43:25", + "backsout": [ + "e0cce6a738c9e2e69f5e4fc8a0bff2f0d71f2e91" + ], + "backedoutby": "", + "author_email": "philringnalda@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 17285415.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/base/public/nsIDocument.h", + "content/base/public/nsINode.h", + "content/base/public/nsINodeList.h", + "content/base/src/nsDOMAttribute.cpp", + "content/base/src/nsDocument.cpp", + "content/base/src/nsGenericDOMDataNode.cpp", + "content/base/src/nsGenericDOMDataNode.h", + "content/base/src/nsGenericElement.cpp", + "content/base/src/nsGenericElement.h", + "js/src/xpconnect/src/Makefile.in", + "js/src/xpconnect/src/dom_quickstubs.qsconf", + "js/src/xpconnect/src/nsXPConnect.cpp", + "js/src/xpconnect/src/qsgen.py", + "js/src/xpconnect/src/xpcconvert.cpp", + "js/src/xpconnect/src/xpcprivate.h", + "js/src/xpconnect/src/xpcquickstubs.cpp", + "js/src/xpconnect/src/xpcquickstubs.h", + "js/src/xpconnect/src/xpcwrappedjsclass.cpp" + ], + "components": [], + "directories": [ + "js", + "content/base", + "content", + "js/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "4a377a57eb8ef906c2381bc07212154f5323a402", + "author": "Dave Camp ", + "bug_id": 441359, + "desc": "Backed out changeset e31d0d3c28fd (bug 441359)", + "pushdate": "2009-01-05 09:29:44", + "backsout": [ + "e31d0d3c28fd85fd96ae7194d13ec437927cf30a" + ], + "backedoutby": "", + "author_email": "dcamp@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 16700722.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "build/pgo/server-locations.txt", + "content/base/src/nsObjectLoadingContent.cpp", + "content/base/src/nsScriptLoader.cpp", + "docshell/base/nsDocShell.cpp", + "docshell/base/nsDocShell.h", + "docshell/base/nsIChannelClassifier.idl", + "layout/style/nsCSSLoader.cpp", + "toolkit/components/url-classifier/tests/Makefile.in", + "toolkit/components/url-classifier/tests/mochitest/Makefile.in", + "toolkit/components/url-classifier/tests/mochitest/classifierFrame.html", + "toolkit/components/url-classifier/tests/mochitest/evil.css", + "toolkit/components/url-classifier/tests/mochitest/evil.js", + "toolkit/components/url-classifier/tests/mochitest/import.css", + "toolkit/components/url-classifier/tests/mochitest/test_classifier.html" + ], + "components": [ + "Toolkit::Safe Browsing", + "Firefox Build System::General", + "Core::DOM: Navigation" + ], + "directories": [ + "toolkit", + "toolkit/components", + "docshell/base", + "docshell", + "build", + "content/base", + "content", + "layout/style", + "build/pgo", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "e3bab6e6bfc24812be67c4952811ffcd341f37a1", + "author": "Boris Zbarsky ", + "bug_id": 437366, + "desc": "Backed out changeset f87b46d44d22 (bug 437366)", + "pushdate": "2009-01-05 22:05:44", + "backsout": [ + "f87b46d44d22cfac0a7a075837827323b341aee6" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 15638452.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/style/nsCSSDataBlock.cpp" + ], + "components": [], + "directories": [ + "layout/style", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "0f85bea9dea38a4923d328f57b6ab00d5d751669", + "author": "Andreas Gal ", + "bug_id": 453157, + "desc": "Backed out changeset adbe8e4b21dc due to tinderbox failures/timeouts (453157).", + "pushdate": "2009-01-08 04:49:11", + "backsout": [ + "adbe8e4b21dcd4dd78d505bf1026d2b02984f636" + ], + "backedoutby": "", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 16390673.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "build/Makefile.in", + "build/pgo/Makefile.in", + "build/pgo/automation.py.in", + "dom/src/base/nsJSEnvironment.cpp", + "dom/src/threads/nsDOMThreadService.cpp", + "js/src/js.cpp", + "js/src/jsapi.cpp", + "js/src/jsapi.h", + "js/src/jscntxt.cpp", + "js/src/jscntxt.h", + "js/src/jsinterp.cpp", + "js/src/jspubtd.h", + "js/src/jsversion.h", + "js/src/xpconnect/idl/nsIXPConnect.idl", + "js/src/xpconnect/src/nsXPConnect.cpp", + "js/src/xpconnect/src/xpccomponents.cpp", + "js/src/xpconnect/src/xpccontext.cpp", + "js/src/xpconnect/src/xpcjsruntime.cpp", + "js/src/xpconnect/src/xpcprivate.h", + "testing/mochitest/Makefile.in" + ], + "components": [ + "Core::JavaScript Engine" + ], + "directories": [ + "js/src", + "dom/src", + "build", + "testing/mochitest", + "dom", + "js", + "testing", + "build/pgo" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "d77eef73aeb6917ae4edb654a15fbdf8c9321bc8", + "author": "Boris Zbarsky ", + "bug_id": 464838, + "desc": "Backed out changeset b73e063a3f99 (bug 464838)", + "pushdate": "2009-01-08 19:59:07", + "backsout": [ + "b73e063a3f99066828df567b3f73308a6965f837" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 15890055.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/html/content/src/nsHTMLAnchorElement.cpp", + "content/html/content/src/nsHTMLDNSPrefetch.cpp", + "content/html/content/src/nsHTMLDNSPrefetch.h" + ], + "components": [], + "directories": [ + "content/html", + "content" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "48b1dea326bb61ab862b363b4223404e242b2e88", + "author": "Dave Townsend ", + "bug_id": 469613, + "desc": "Backed out changeset fe759e3fd895 from bug 469613 due to mochitest failures", + "pushdate": "2009-01-09 13:47:34", + "backsout": [ + "fe759e3fd8950cc6c3525b435ef1a389fffc9047" + ], + "backedoutby": "", + "author_email": "dtownsend@oxymoronical.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 19019012.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/generic/test/Makefile.in", + "layout/generic/test/test_bug469613.xul", + "view/src/nsScrollPortView.cpp" + ], + "components": [], + "directories": [ + "view", + "layout/generic", + "view/src", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "864061941ee1bd4ae34deec261b8440e4a3a720d", + "author": "Benjamin Smedberg ", + "bug_id": 396185, + "desc": "Backed out changeset 4c4df6ed1b41 - Bug 396185 - Make nsIFrame not inherit from nsISupports due to mochitest failures... these appear to be crashes in nsGenericHTMLElement::GetEditorInternal.", + "pushdate": "2009-01-09 16:36:02", + "backsout": [ + "4c4df6ed1b41131568d4659d62908214e8c81b7b" + ], + "backedoutby": "", + "author_email": "benjamin@smedbergs.us", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 25487198.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "accessible/public/nsIAccessibilityService.idl", + "accessible/src/base/nsAccessibilityService.cpp", + "accessible/src/base/nsAccessibilityService.h", + "accessible/src/base/nsAccessible.cpp", + "accessible/src/base/nsCoreUtils.cpp", + "accessible/src/base/nsRootAccessible.cpp", + "accessible/src/html/nsHTMLAreaAccessible.cpp", + "accessible/src/html/nsHTMLFormControlAccessible.cpp", + "accessible/src/html/nsHTMLSelectAccessible.cpp", + "accessible/src/html/nsHTMLTableAccessible.cpp", + "accessible/src/html/nsHyperTextAccessible.cpp", + "accessible/src/msaa/nsAccessibleWrap.cpp", + "content/base/src/nsFrameLoader.cpp", + "content/base/src/nsGenericElement.cpp", + "content/base/src/nsObjectLoadingContent.cpp", + "content/events/src/nsEventStateManager.cpp", + "content/html/content/src/nsGenericHTMLElement.cpp", + "content/html/content/src/nsHTMLButtonElement.cpp", + "content/html/content/src/nsHTMLInputElement.cpp", + "content/html/content/src/nsHTMLObjectElement.cpp", + "content/html/content/src/nsHTMLSelectElement.cpp", + "content/html/content/src/nsHTMLTextAreaElement.cpp", + "content/html/document/src/nsPluginDocument.cpp", + "content/svg/content/src/nsISVGTextContentMetrics.h", + "content/svg/content/src/nsISVGValue.h", + "content/svg/content/src/nsSVGGraphicElement.cpp", + "content/svg/content/src/nsSVGPatternElement.cpp", + "content/svg/content/src/nsSVGSVGElement.cpp", + "content/svg/content/src/nsSVGSwitchElement.cpp", + "content/svg/content/src/nsSVGTSpanElement.cpp", + "content/svg/content/src/nsSVGTextElement.cpp", + "content/svg/content/src/nsSVGTextPathElement.cpp", + "content/svg/content/src/nsSVGTextPathElement.h", + "docshell/base/nsDocShell.cpp", + "editor/libeditor/html/nsTableEditor.cpp", + "embedding/components/find/src/nsFind.cpp", + "embedding/components/find/src/nsWebBrowserFind.cpp", + "layout/base/nsBidiPresUtils.cpp", + "layout/base/nsCSSFrameConstructor.cpp", + "layout/base/nsCSSRendering.cpp", + "layout/base/nsCaret.cpp", + "layout/base/nsDocumentViewer.cpp", + "layout/base/nsFrameManager.cpp", + "layout/base/nsIPercentHeightObserver.h", + "layout/base/nsLayoutDebugger.cpp", + "layout/base/nsLayoutUtils.cpp", + "layout/base/nsPresShell.cpp", + "layout/forms/nsComboboxControlFrame.cpp", + "layout/forms/nsComboboxControlFrame.h", + "layout/forms/nsFileControlFrame.cpp", + "layout/forms/nsFileControlFrame.h", + "layout/forms/nsFormControlFrame.cpp", + "layout/forms/nsFormControlFrame.h", + "layout/forms/nsGfxButtonControlFrame.cpp", + "layout/forms/nsGfxButtonControlFrame.h", + "layout/forms/nsGfxCheckboxControlFrame.cpp", + "layout/forms/nsGfxCheckboxControlFrame.h", + "layout/forms/nsGfxRadioControlFrame.cpp", + "layout/forms/nsGfxRadioControlFrame.h", + "layout/forms/nsHTMLButtonControlFrame.cpp", + "layout/forms/nsHTMLButtonControlFrame.h", + "layout/forms/nsICheckboxControlFrame.h", + "layout/forms/nsIComboboxControlFrame.h", + "layout/forms/nsIFormControlFrame.h", + "layout/forms/nsIListControlFrame.h", + "layout/forms/nsIRadioControlFrame.h", + "layout/forms/nsISelectControlFrame.h", + "layout/forms/nsImageControlFrame.cpp", + "layout/forms/nsIsIndexFrame.cpp", + "layout/forms/nsIsIndexFrame.h", + "layout/forms/nsLegendFrame.cpp", + "layout/forms/nsLegendFrame.h", + "layout/forms/nsListControlFrame.cpp", + "layout/forms/nsListControlFrame.h", + "layout/forms/nsTextControlFrame.cpp", + "layout/forms/nsTextControlFrame.h", + "layout/generic/Makefile.in", + "layout/generic/nsAbsoluteContainingBlock.cpp", + "layout/generic/nsBRFrame.cpp", + "layout/generic/nsBlockFrame.cpp", + "layout/generic/nsBlockFrame.h", + "layout/generic/nsContainerFrame.cpp", + "layout/generic/nsFloatManager.cpp", + "layout/generic/nsFrame.cpp", + "layout/generic/nsFrame.h", + "layout/generic/nsFrameFrame.cpp", + "layout/generic/nsFrameList.cpp", + "layout/generic/nsFrameSetFrame.cpp", + "layout/generic/nsFrameSetFrame.h", + "layout/generic/nsGfxScrollFrame.cpp", + "layout/generic/nsGfxScrollFrame.h", + "layout/generic/nsHTMLFrame.cpp", + "layout/generic/nsIAnonymousContentCreator.h", + "layout/generic/nsICanvasFrame.h", + "layout/generic/nsIFrame.h", + "layout/generic/nsIFrameDebug.h", + "layout/generic/nsIFrameFrame.h", + "layout/generic/nsIImageFrame.h", + "layout/generic/nsIObjectFrame.h", + "layout/generic/nsIPageSequenceFrame.h", + "layout/generic/nsIScrollableFrame.h", + "layout/generic/nsIScrollableViewProvider.h", + "layout/generic/nsIStatefulFrame.h", + "layout/generic/nsImageFrame.cpp", + "layout/generic/nsImageFrame.h", + "layout/generic/nsInlineFrame.cpp", + "layout/generic/nsInlineFrame.h", + "layout/generic/nsLineBox.cpp", + "layout/generic/nsObjectFrame.cpp", + "layout/generic/nsObjectFrame.h", + "layout/generic/nsQueryFrame.h", + "layout/generic/nsSelection.cpp", + "layout/generic/nsSimplePageSequence.cpp", + "layout/generic/nsSimplePageSequence.h", + "layout/generic/nsVideoFrame.cpp", + "layout/generic/nsVideoFrame.h", + "layout/generic/nsViewportFrame.cpp", + "layout/mathml/base/src/nsIMathMLFrame.h", + "layout/mathml/base/src/nsMathMLContainerFrame.cpp", + "layout/mathml/base/src/nsMathMLContainerFrame.h", + "layout/mathml/base/src/nsMathMLForeignFrameWrapper.cpp", + "layout/mathml/base/src/nsMathMLForeignFrameWrapper.h", + "layout/mathml/base/src/nsMathMLFrame.cpp", + "layout/mathml/base/src/nsMathMLFrame.h", + "layout/mathml/base/src/nsMathMLmactionFrame.cpp", + "layout/mathml/base/src/nsMathMLmfencedFrame.cpp", + "layout/mathml/base/src/nsMathMLmtableFrame.cpp", + "layout/mathml/base/src/nsMathMLmtableFrame.h", + "layout/printing/nsPrintEngine.cpp", + "layout/style/nsComputedDOMStyle.cpp", + "layout/style/nsICSSPseudoComparator.h", + "layout/svg/base/src/nsISVGChildFrame.h", + "layout/svg/base/src/nsISVGGlyphFragmentLeaf.h", + "layout/svg/base/src/nsISVGGlyphFragmentNode.h", + "layout/svg/base/src/nsISVGSVGFrame.h", + "layout/svg/base/src/nsSVGClipPathFrame.cpp", + "layout/svg/base/src/nsSVGContainerFrame.cpp", + "layout/svg/base/src/nsSVGContainerFrame.h", + "layout/svg/base/src/nsSVGFilterFrame.cpp", + "layout/svg/base/src/nsSVGForeignObjectFrame.cpp", + "layout/svg/base/src/nsSVGForeignObjectFrame.h", + "layout/svg/base/src/nsSVGGlyphFrame.cpp", + "layout/svg/base/src/nsSVGGlyphFrame.h", + "layout/svg/base/src/nsSVGInnerSVGFrame.cpp", + "layout/svg/base/src/nsSVGIntegrationUtils.cpp", + "layout/svg/base/src/nsSVGMarkerFrame.cpp", + "layout/svg/base/src/nsSVGOuterSVGFrame.cpp", + "layout/svg/base/src/nsSVGOuterSVGFrame.h", + "layout/svg/base/src/nsSVGPathGeometryFrame.cpp", + "layout/svg/base/src/nsSVGPathGeometryFrame.h", + "layout/svg/base/src/nsSVGPatternFrame.cpp", + "layout/svg/base/src/nsSVGSwitchFrame.cpp", + "layout/svg/base/src/nsSVGTSpanFrame.cpp", + "layout/svg/base/src/nsSVGTSpanFrame.h", + "layout/svg/base/src/nsSVGTextContainerFrame.cpp", + "layout/svg/base/src/nsSVGTextContainerFrame.h", + "layout/svg/base/src/nsSVGUseFrame.cpp", + "layout/svg/base/src/nsSVGUtils.cpp", + "layout/tables/nsITableCellLayout.h", + "layout/tables/nsITableLayout.h", + "layout/tables/nsTableCellFrame.cpp", + "layout/tables/nsTableCellFrame.h", + "layout/tables/nsTableFrame.cpp", + "layout/tables/nsTableFrame.h", + "layout/tables/nsTableOuterFrame.cpp", + "layout/tables/nsTableOuterFrame.h", + "layout/tables/nsTableRowGroupFrame.cpp", + "layout/tables/nsTableRowGroupFrame.h", + "layout/xul/base/public/nsIMenuFrame.h", + "layout/xul/base/public/nsIScrollbarMediator.h", + "layout/xul/base/src/grid/nsGrid.cpp", + "layout/xul/base/src/grid/nsGridRowLeafLayout.cpp", + "layout/xul/base/src/nsBoxObject.cpp", + "layout/xul/base/src/nsContainerBoxObject.cpp", + "layout/xul/base/src/nsDocElementBoxFrame.cpp", + "layout/xul/base/src/nsIRootBox.h", + "layout/xul/base/src/nsIScrollbarFrame.h", + "layout/xul/base/src/nsListBoxBodyFrame.cpp", + "layout/xul/base/src/nsListBoxBodyFrame.h", + "layout/xul/base/src/nsListBoxObject.cpp", + "layout/xul/base/src/nsListItemFrame.cpp", + "layout/xul/base/src/nsListItemFrame.h", + "layout/xul/base/src/nsMenuFrame.cpp", + "layout/xul/base/src/nsMenuFrame.h", + "layout/xul/base/src/nsMenuPopupFrame.cpp", + "layout/xul/base/src/nsPopupSetFrame.cpp", + "layout/xul/base/src/nsRootBoxFrame.cpp", + "layout/xul/base/src/nsScrollBoxObject.cpp", + "layout/xul/base/src/nsScrollbarButtonFrame.cpp", + "layout/xul/base/src/nsScrollbarFrame.cpp", + "layout/xul/base/src/nsScrollbarFrame.h", + "layout/xul/base/src/nsSliderFrame.cpp", + "layout/xul/base/src/nsSplitterFrame.cpp", + "layout/xul/base/src/nsSplitterFrame.h", + "layout/xul/base/src/tree/src/nsTreeBodyFrame.cpp", + "layout/xul/base/src/tree/src/nsTreeBodyFrame.h", + "layout/xul/base/src/tree/src/nsTreeBoxObject.cpp", + "layout/xul/base/src/tree/src/nsTreeColFrame.cpp", + "layout/xul/base/src/tree/src/nsTreeColFrame.h", + "widget/src/gtk2/nsNativeThemeGTK.cpp", + "widget/src/windows/nsNativeThemeWin.cpp" + ], + "components": [ + "Core::DOM: Navigation", + "Core::Layout: Block and Inline", + "Core::DOM: CSS Object Model", + "Core::Audio/Video", + "Core::Layout: Form Controls", + "Core::Layout: Images, Video, and HTML Frames", + "Core::Layout", + "Core::Layout: Tables", + "Core::Layout: Scrolling and Overflow", + "Core::Layout: Text and Fonts", + "Core::Layout: Positioned", + "Core::Layout: Floats" + ], + "directories": [ + "accessible/src", + "accessible", + "docshell/base", + "layout/mathml", + "editor", + "content/base", + "content", + "content/html", + "embedding/components", + "layout/generic", + "accessible/public", + "layout/style", + "layout", + "layout/xul", + "docshell", + "layout/forms", + "layout/base", + "widget", + "editor/libeditor", + "layout/tables", + "embedding", + "layout/printing", + "layout/svg", + "content/svg", + "widget/src", + "content/events" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "a7489d8375cf34005f915e5bc93f997ae239ed11", + "author": "Shawn Wilsher ", + "bug_id": 471685, + "desc": "Backed out changeset 4de172f0d8b8 (bug 471685) with a CLOSED TREE", + "pushdate": "2009-01-09 21:19:50", + "backsout": [ + "4de172f0d8b8018f9a73494979798d6c7fd0f566" + ], + "backedoutby": "", + "author_email": "me@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 3715291.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "db/sqlite3/src/sqlite3.c", + "db/sqlite3/src/sqlite3.h" + ], + "components": [], + "directories": [ + "db/sqlite3", + "db" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "f8a05a8b28eb977cf4a1a2e032e06489fead4d26", + "author": "Shawn Wilsher ", + "bug_id": 471685, + "desc": "Backed out changeset c569a8f91c0e (bug 471685) with a CLOSED TREE", + "pushdate": "2009-01-09 21:19:50", + "backsout": [ + "c569a8f91c0ee93e0a1976903b9f7b17070d441e" + ], + "backedoutby": "", + "author_email": "me@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 3715291.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "configure.in", + "db/sqlite3/README.MOZILLA" + ], + "components": [], + "directories": [ + "db/sqlite3", + "db" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "e1da61348ddaee37776ea497c30e517b718caa6b", + "author": "Benjamin Smedberg ", + "bug_id": 469558, + "desc": "Backed out changeset 8f347bf50a53 due to x86-64 build bustage, and the fact that the committed patch didn't match the reviewed patch in an important way (bug 469558)", + "pushdate": "2009-01-13 15:22:11", + "backsout": [ + "8f347bf50a53e16f8aa8e08f14ee92b10cff749f" + ], + "backedoutby": "", + "author_email": "benjamin@smedbergs.us", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 25828367.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "config/Makefile.in", + "config/autoconf.mk.in", + "config/system-headers", + "configure.in", + "js/src/config/system-headers", + "toolkit/toolkit-makefiles.sh", + "toolkit/toolkit-tiers.mk" + ], + "components": [ + "Firefox Build System::General" + ], + "directories": [ + "js/src", + "config", + "js", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "c573ff777cc4311b0b57bb909fd1eeac274e9e5f", + "author": "Peter Van der Beken ", + "bug_id": 471126, + "desc": "Back out changeset 9fd8740decb8 (Fix for bug 471126 (leak content nodes (and sometimes dom windows) after clicking on nytimes.com articles).) to try to fix orange.", + "pushdate": "2009-01-14 14:13:59", + "backsout": [ + "9fd8740decb8c166955527a0c3cd199de45f0cd9" + ], + "backedoutby": "", + "author_email": "peterv@propagandism.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 17878266.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "editor/composer/src/nsComposerCommandsUpdater.cpp", + "editor/composer/src/nsComposerCommandsUpdater.h", + "layout/base/nsDocumentViewer.cpp", + "layout/base/tests/Makefile.in", + "layout/base/tests/test_bug471126.html", + "layout/generic/nsFrameSelection.h", + "layout/generic/nsSelection.cpp" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "layout/generic", + "editor", + "editor/composer", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "d7c6fc72e3cd032ee4c24f903d58730336372dd3", + "author": "Kai Engert ", + "bug_id": 473837, + "desc": "Backout 6c571dc80a99, bug 473837", + "pushdate": "2009-01-16 19:16:17", + "backsout": [ + "6c571dc80a993be1b40e6a89cfad2892669d0982" + ], + "backedoutby": "", + "author_email": "kaie@kuix.de", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 19572297.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "dbm/Makefile.in", + "dbm/include/mcom_db.h", + "dbm/src/h_bigkey.c", + "dbm/src/h_page.c", + "dbm/src/hash.c", + "dbm/src/hash_buf.c", + "dbm/src/mktemp.c", + "dbm/src/snprintf.c", + "dbm/tests/Makefile.in", + "dbm/tests/dbmtest.pkg", + "security/coreconf/WINCE.mk", + "security/coreconf/WINCE3.0.mk", + "security/coreconf/config.mk", + "security/dbm/Makefile", + "security/nss/Makefile", + "security/nss/cmd/bltest/blapitest.c", + "security/nss/cmd/bltest/tests/seed_cbc/ciphertext0", + "security/nss/cmd/bltest/tests/seed_cbc/iv0", + "security/nss/cmd/bltest/tests/seed_cbc/key0", + "security/nss/cmd/bltest/tests/seed_cbc/numtests", + "security/nss/cmd/bltest/tests/seed_cbc/plaintext0", + "security/nss/cmd/bltest/tests/seed_ecb/ciphertext0", + "security/nss/cmd/bltest/tests/seed_ecb/iv0", + "security/nss/cmd/bltest/tests/seed_ecb/key0", + "security/nss/cmd/bltest/tests/seed_ecb/numtests", + "security/nss/cmd/bltest/tests/seed_ecb/plaintext0", + "security/nss/cmd/certutil/certutil.c", + "security/nss/cmd/pk11mode/pk11mode.c", + "security/nss/cmd/platlibs.mk", + "security/nss/cmd/shlibsign/Makefile", + "security/nss/cmd/shlibsign/mangle/Makefile", + "security/nss/cmd/shlibsign/shlibsign.c", + "security/nss/cmd/signtool/list.c", + "security/nss/cmd/symkeyutil/symkeyutil.c", + "security/nss/cmd/vfychain/vfychain.c", + "security/nss/lib/certdb/cert.h", + "security/nss/lib/certdb/certdb.c", + "security/nss/lib/certdb/certi.h", + "security/nss/lib/certdb/certt.h", + "security/nss/lib/certdb/crl.c", + "security/nss/lib/certdb/genname.c", + "security/nss/lib/certdb/stanpcertdb.c", + "security/nss/lib/certdb/xauthkid.c", + "security/nss/lib/certdb/xbsconst.c", + "security/nss/lib/certdb/xconst.c", + "security/nss/lib/certhigh/certvfypkix.c", + "security/nss/lib/certhigh/certvfypkixprint.c", + "security/nss/lib/certhigh/ocsp.c", + "security/nss/lib/certhigh/ocspi.h", + "security/nss/lib/ckfw/Makefile", + "security/nss/lib/ckfw/builtins/certdata.c", + "security/nss/lib/ckfw/builtins/certdata.txt", + "security/nss/lib/ckfw/builtins/config.mk", + "security/nss/lib/ckfw/builtins/nssckbi.h", + "security/nss/lib/crmf/crmffut.h", + "security/nss/lib/cryptohi/hasht.h", + "security/nss/lib/cryptohi/keythi.h", + "security/nss/lib/cryptohi/manifest.mn", + "security/nss/lib/cryptohi/sechash.h", + "security/nss/lib/dev/devslot.c", + "security/nss/lib/dev/devutil.c", + "security/nss/lib/freebl/Makefile", + "security/nss/lib/freebl/aeskeywrap.c", + "security/nss/lib/freebl/alg2268.c", + "security/nss/lib/freebl/alghmac.c", + "security/nss/lib/freebl/arcfive.c", + "security/nss/lib/freebl/arcfour.c", + "security/nss/lib/freebl/blapi.h", + "security/nss/lib/freebl/blapit.h", + "security/nss/lib/freebl/camellia.c", + "security/nss/lib/freebl/config.mk", + "security/nss/lib/freebl/des.c", + "security/nss/lib/freebl/desblapi.c", + "security/nss/lib/freebl/dh.c", + "security/nss/lib/freebl/dsa.c", + "security/nss/lib/freebl/ec.c", + "security/nss/lib/freebl/freebl_hash.def", + "security/nss/lib/freebl/hasht.h", + "security/nss/lib/freebl/intel-aes.h", + "security/nss/lib/freebl/intel-aes.s", + "security/nss/lib/freebl/ldvector.c", + "security/nss/lib/freebl/loader.c", + "security/nss/lib/freebl/loader.h", + "security/nss/lib/freebl/manifest.mn", + "security/nss/lib/freebl/md2.c", + "security/nss/lib/freebl/md5.c", + "security/nss/lib/freebl/mpi/mpcpucache.c", + "security/nss/lib/freebl/mpi/mpcpucache_amd64.s", + "security/nss/lib/freebl/mpi/mpcpucache_x86.s", + "security/nss/lib/freebl/mpi/mpi.h", + "security/nss/lib/freebl/mpi/mpprime.c", + "security/nss/lib/freebl/nsslowhash.c", + "security/nss/lib/freebl/nsslowhash.h", + "security/nss/lib/freebl/pqg.c", + "security/nss/lib/freebl/prng_fips1861.c", + "security/nss/lib/freebl/rawhash.c", + "security/nss/lib/freebl/rijndael.c", + "security/nss/lib/freebl/rsa.c", + "security/nss/lib/freebl/sechash.h", + "security/nss/lib/freebl/seed.c", + "security/nss/lib/freebl/seed.h", + "security/nss/lib/freebl/sha512.c", + "security/nss/lib/freebl/sha_fast.c", + "security/nss/lib/freebl/shvfy.c", + "security/nss/lib/freebl/stubs.c", + "security/nss/lib/freebl/stubs.h", + "security/nss/lib/freebl/sysrand.c", + "security/nss/lib/freebl/tlsprfalg.c", + "security/nss/lib/jar/jarfile.c", + "security/nss/lib/libpkix/include/pkix.h", + "security/nss/lib/libpkix/include/pkix_certstore.h", + "security/nss/lib/libpkix/include/pkix_crlsel.h", + "security/nss/lib/libpkix/include/pkix_errorstrings.h", + "security/nss/lib/libpkix/include/pkix_params.h", + "security/nss/lib/libpkix/include/pkix_pl_pki.h", + "security/nss/lib/libpkix/include/pkix_revchecker.h", + "security/nss/lib/libpkix/include/pkix_sample_modules.h", + "security/nss/lib/libpkix/include/pkixt.h", + "security/nss/lib/libpkix/pkix/checker/manifest.mn", + "security/nss/lib/libpkix/pkix/checker/pkix_crlchecker.c", + "security/nss/lib/libpkix/pkix/checker/pkix_crlchecker.h", + "security/nss/lib/libpkix/pkix/checker/pkix_defaultcrlchecker.c", + "security/nss/lib/libpkix/pkix/checker/pkix_defaultcrlchecker.h", + "security/nss/lib/libpkix/pkix/checker/pkix_defaultrevchecker.c", + "security/nss/lib/libpkix/pkix/checker/pkix_defaultrevchecker.h", + "security/nss/lib/libpkix/pkix/checker/pkix_ekuchecker.c", + "security/nss/lib/libpkix/pkix/checker/pkix_ekuchecker.h", + "security/nss/lib/libpkix/pkix/checker/pkix_ocspchecker.c", + "security/nss/lib/libpkix/pkix/checker/pkix_ocspchecker.h", + "security/nss/lib/libpkix/pkix/checker/pkix_revocationchecker.c", + "security/nss/lib/libpkix/pkix/checker/pkix_revocationchecker.h", + "security/nss/lib/libpkix/pkix/checker/pkix_revocationmethod.c", + "security/nss/lib/libpkix/pkix/checker/pkix_revocationmethod.h", + "security/nss/lib/libpkix/pkix/crlsel/pkix_crlselector.c", + "security/nss/lib/libpkix/pkix/crlsel/pkix_crlselector.h", + "security/nss/lib/libpkix/pkix/params/pkix_procparams.c", + "security/nss/lib/libpkix/pkix/params/pkix_procparams.h", + "security/nss/lib/libpkix/pkix/params/pkix_trustanchor.c", + "security/nss/lib/libpkix/pkix/results/pkix_verifynode.c", + "security/nss/lib/libpkix/pkix/store/pkix_store.c", + "security/nss/lib/libpkix/pkix/store/pkix_store.h", + "security/nss/lib/libpkix/pkix/top/pkix_build.c", + "security/nss/lib/libpkix/pkix/top/pkix_build.c.orig", + "security/nss/lib/libpkix/pkix/top/pkix_build.h", + "security/nss/lib/libpkix/pkix/top/pkix_validate.c", + "security/nss/lib/libpkix/pkix/top/pkix_validate.c.orig", + "security/nss/lib/libpkix/pkix/top/pkix_validate.h", + "security/nss/lib/libpkix/pkix/util/pkix_error.c", + "security/nss/lib/libpkix/pkix/util/pkix_list.c", + "security/nss/lib/libpkix/pkix/util/pkix_logger.c", + "security/nss/lib/libpkix/pkix/util/pkix_logger.h", + "security/nss/lib/libpkix/pkix/util/pkix_tools.c", + "security/nss/lib/libpkix/pkix/util/pkix_tools.h", + "security/nss/lib/libpkix/pkix_pl_nss/module/manifest.mn", + "security/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_aiamgr.c", + "security/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_colcertstore.c", + "security/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ekuchecker.c", + "security/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ekuchecker.h", + "security/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_httpcertstore.c", + "security/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_httpdefaultclient.c", + "security/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_httpdefaultclient.h", + "security/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapcertstore.c", + "security/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_nsscontext.c", + "security/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_nsscontext.h", + "security/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_pk11certstore.c", + "security/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_cert.c", + "security/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_certpolicymap.c", + "security/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_crl.h", + "security/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_date.c", + "security/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_ocsprequest.c", + "security/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_ocsprequest.h", + "security/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_ocspresponse.c", + "security/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_ocspresponse.h", + "security/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_x500name.c", + "security/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_common.h", + "security/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_lifecycle.c", + "security/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_lifecycle.h", + "security/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c", + "security/nss/lib/nss/nss.def", + "security/nss/lib/nss/nss.h", + "security/nss/lib/pk11wrap/manifest.mn", + "security/nss/lib/pk11wrap/pk11akey.c", + "security/nss/lib/pk11wrap/pk11err.c", + "security/nss/lib/pk11wrap/pk11init.h", + "security/nss/lib/pk11wrap/pk11mech.c", + "security/nss/lib/pk11wrap/pk11merge.c", + "security/nss/lib/pk11wrap/pk11obj.c", + "security/nss/lib/pk11wrap/pk11slot.c", + "security/nss/lib/pk11wrap/secmod.h", + "security/nss/lib/pk11wrap/secmodi.h", + "security/nss/lib/pk11wrap/secmodt.h", + "security/nss/lib/pki/tdcache.c", + "security/nss/lib/smime/config.mk", + "security/nss/lib/softoken/Makefile", + "security/nss/lib/softoken/config.mk", + "security/nss/lib/softoken/legacydb/config.mk", + "security/nss/lib/softoken/manifest.mn", + "security/nss/lib/softoken/pk11init.h", + "security/nss/lib/softoken/pk11pars.h", + "security/nss/lib/softoken/pkcs11.c", + "security/nss/lib/softoken/pkcs11c.c", + "security/nss/lib/softoken/pkcs11t.h", + "security/nss/lib/softoken/pkcs11u.c", + "security/nss/lib/softoken/sdb.c", + "security/nss/lib/softoken/secmodt.h", + "security/nss/lib/softoken/sftkdb.c", + "security/nss/lib/softoken/sftkdb.h", + "security/nss/lib/softoken/sftkpars.c", + "security/nss/lib/softoken/softkver.h", + "security/nss/lib/softoken/softoken.h", + "security/nss/lib/sqlite/config.mk", + "security/nss/lib/ssl/config.mk", + "security/nss/lib/ssl/ssl3con.c", + "security/nss/lib/ssl/ssl3gthr.c", + "security/nss/lib/ssl/sslenum.c", + "security/nss/lib/ssl/sslimpl.h", + "security/nss/lib/ssl/sslinfo.c", + "security/nss/lib/ssl/sslmutex.c", + "security/nss/lib/ssl/sslmutex.h", + "security/nss/lib/ssl/sslproto.h", + "security/nss/lib/ssl/sslsnce.c", + "security/nss/lib/ssl/sslsock.c", + "security/nss/lib/ssl/sslt.h", + "security/nss/lib/ssl/win32err.c", + "security/nss/lib/util/nssutil.def", + "security/nss/lib/util/secitem.c", + "security/nss/lib/util/secoid.c", + "security/nss/lib/util/secoidt.h", + "security/nss/tests/README.txt", + "security/nss/tests/all.sh", + "security/nss/tests/chains/chains.sh", + "security/nss/tests/chains/scenarios/aia.cfg", + "security/nss/tests/chains/scenarios/anypolicy.cfg", + "security/nss/tests/chains/scenarios/anypolicywithlevel.cfg", + "security/nss/tests/chains/scenarios/bridge.cfg", + "security/nss/tests/chains/scenarios/bridgewithaia.cfg", + "security/nss/tests/chains/scenarios/bridgewithhalfaia.cfg", + "security/nss/tests/chains/scenarios/bridgewithpolicyextensionandmapping.cfg", + "security/nss/tests/chains/scenarios/dsa.cfg", + "security/nss/tests/chains/scenarios/extension.cfg", + "security/nss/tests/chains/scenarios/extension2.cfg", + "security/nss/tests/chains/scenarios/mapping.cfg", + "security/nss/tests/chains/scenarios/mapping2.cfg", + "security/nss/tests/chains/scenarios/megabridge_3_2.cfg", + "security/nss/tests/chains/scenarios/realcerts.cfg", + "security/nss/tests/chains/scenarios/scenarios", + "security/nss/tests/cipher/cipher.txt", + "security/nss/tests/cipher/symmkey.txt", + "security/nss/tests/dbtests/dbtests.sh", + "security/nss/tests/libpkix/libpkix.sh", + "security/nss/tests/memleak/ignored", + "security/nss/tests/memleak/memleak.sh", + "security/nss/tests/merge/merge.sh", + "security/nss/tests/ssl/ssl.sh" + ], + "components": [ + "NSS::Libraries" + ], + "directories": [ + "security/nss", + "dbm", + "security", + "security/dbm", + "dbm/include", + "dbm/tests", + "dbm/src", + "security/coreconf" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "f5436f305f3a8917c651c798be17d63aa051cdaa", + "author": "L. David Baron ", + "bug_id": 462188, + "desc": "Backed out changeset 9b832d90d637 (bug 462188) due to 7 test failures on Linux and 1 on Windows (0 on Mac).", + "pushdate": "2009-01-16 23:01:46", + "backsout": [ + "9b832d90d637d21c08ea8be077ebee04181e6037" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 21355427.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "editor/libeditor/html/nsHTMLEditRules.cpp", + "layout/generic/test/test_backspace_delete.html" + ], + "components": [], + "directories": [ + "editor/libeditor", + "layout", + "layout/generic", + "editor" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "79043b10f34c01764ab4e9a542fdd48257d0e369", + "author": "Igor Bukanov ", + "bug_id": 473721, + "desc": "Backed out changeset 562d8990f33a - with the fix for bug 473721 this workaround is no longer necessary.", + "pushdate": "2009-01-19 01:17:02", + "backsout": [ + "562d8990f33a007ffeb1f55faac701d95948b189" + ], + "backedoutby": "", + "author_email": "igor@mir2.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 18502923.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsapi.cpp" + ], + "components": [ + "Core::JavaScript Engine" + ], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "6f2d2ef53d758d199d16ddb88ca982ecd6e67845", + "author": "L. David Baron ", + "bug_id": 468645, + "desc": "Backed out changeset 6849ce51dfef (patch 3 from bug 468645) to fix bug 472353.", + "pushdate": "2009-01-20 21:59:23", + "backsout": [ + "6849ce51dfef0df9838e72af1acdd8a9f407a373" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 21697284.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/base/nsCSSFrameConstructor.cpp", + "layout/base/nsPresContext.cpp" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "929d0451c9b5ac985511f01d48d8347a5a788276", + "author": "Benjamin Smedberg ", + "bug_id": 470971, + "desc": "Backed out changeset 700bca4b693f due to reftest failure (bug 470971)", + "pushdate": "2009-01-21 00:00:44", + "backsout": [ + "700bca4b693f4e21805bc035f36e5b66ae9fdf60" + ], + "backedoutby": "", + "author_email": "benjamin@smedbergs.us", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 26464280.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "config/autoconf.mk.in", + "configure.in", + "js/src/xpconnect/shell/Makefile.in", + "js/src/xpconnect/shell/xpcshell.cpp" + ], + "components": [ + "Firefox Build System::General" + ], + "directories": [ + "js/src", + "config", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "3b4b3555239203608307ebb31e790e9345ac145c", + "author": "Benjamin Smedberg ", + "bug_id": 269538, + "desc": "Backed out changeset 525e42406396, bug 269538 (jscpucfg-ectomy) due to Windows TUnit bustage.", + "pushdate": "2009-01-21 22:35:10", + "backsout": [ + "525e4240639636002dc72e6f3df213b1801d8312" + ], + "backedoutby": "", + "author_email": "benjamin@smedbergs.us", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 26545546.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "build/autoconf/moznbytetype.m4", + "js/src/Makefile.in", + "js/src/build/autoconf/moznbytetype.m4", + "js/src/configure.in", + "js/src/js-config.h.in", + "js/src/jscpucfg.cpp", + "js/src/jscpucfg.h", + "js/src/jslock.cpp", + "js/src/jslong.cpp", + "js/src/jslong.h", + "js/src/jstypes.h", + "js/src/prmjtime.cpp" + ], + "components": [ + "Firefox Build System::General", + "Core::JavaScript Engine" + ], + "directories": [ + "build/autoconf", + "js", + "js/src", + "build" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "835e35dd544217fb4247d8060836be95497c9b59", + "author": "Daniel Holbert ", + "bug_id": 466410, + "desc": "Backed out changeset e6566d187edd (bug 466410) on suspicion of causing linux reftest failures in 'ogg-video/basic-1.html' and 'ogg-video/zoomed-1.html'", + "pushdate": "2009-01-22 06:37:50", + "backsout": [ + "e6566d187edd0a16c6a630719f2cc49bb4fe7b73" + ], + "backedoutby": "", + "author_email": "dholbert@cs.stanford.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 21775197.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/media/video/src/nsMediaDecoder.cpp", + "content/media/video/src/nsOggDecoder.cpp", + "content/media/video/test/test_onloadedmetadata.html" + ], + "components": [], + "directories": [ + "content", + "content/media" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "d27fe7afe11e276037b99a04b77481c687cd8241", + "author": "Peter Van der Beken ", + "bug_id": 464954, + "desc": "Backed out changeset 9fc993ac4427 (Bug 464954: Update Access-Control implementation to latest draft and fix some bugs. r/sr=bz) to fix orange.", + "pushdate": "2009-01-22 13:53:44", + "backsout": [ + "9fc993ac4427fd27314961058a0b708b7e8bb0cc" + ], + "backedoutby": "", + "author_email": "peterv@propagandism.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 18568251.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/base/public/nsContentUtils.h", + "content/base/src/nsContentUtils.cpp", + "content/base/src/nsCrossSiteListenerProxy.cpp", + "content/base/src/nsCrossSiteListenerProxy.h", + "content/base/src/nsXMLHttpRequest.cpp", + "content/base/test/Makefile.in", + "content/base/test/file_CrossSiteXHR_inner.html", + "content/base/test/file_CrossSiteXHR_inner.jar", + "content/base/test/file_CrossSiteXHR_inner_data.sjs", + "content/base/test/file_CrossSiteXHR_server.sjs", + "content/base/test/test_CrossSiteXHR.html", + "docshell/test/Makefile.in", + "dom/src/base/nsGlobalWindow.cpp", + "netwerk/base/public/nsNetUtil.h", + "testing/mochitest/server.js" + ], + "components": [ + "Testing::Mochitest" + ], + "directories": [ + "netwerk/base", + "dom/src", + "netwerk", + "docshell", + "testing/mochitest", + "dom", + "docshell/test", + "content/base", + "content", + "testing" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "dffc4413419a5c0b6a88fb51ef81a37bc6c814fe", + "author": "Peter Van der Beken ", + "bug_id": 464676, + "desc": "Back out changeset 32dc89bc34ad (Fix for bug 464676 (Cycle collector sometimes unlinks live cycles). r=bent, sr=jst.) to fix orange.", + "pushdate": "2009-01-23 16:06:05", + "backsout": [ + "32dc89bc34ad32b33cbaa6d03617540db6fa2ce7" + ], + "backedoutby": "", + "author_email": "peterv@propagandism.org", + "reviewers": [ + "bent", + "jst" + ], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 18662592.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/xpconnect/src/nsXPConnect.cpp", + "js/src/xpconnect/src/xpcwrappednativescope.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "173e57cbce97ad7ed4710aacf6486fba023ddbc7", + "author": "Peter Van der Beken ", + "bug_id": 462106, + "desc": "Backed out changeset 97907892496f (Bug 462106 - Clear the data copied to clipboard inside the private browsing mode after leaving it; r,sr=roc a=blocking-firefox3.1+) to fix orange.", + "pushdate": "2009-01-24 13:28:32", + "backsout": [ + "97907892496fe9fe3533056e2c82ff6b5cbfa563" + ], + "backedoutby": "", + "author_email": "peterv@propagandism.org", + "reviewers": [ + "roc", + "blocking-firefox3.1" + ], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 18739539.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "widget/src/gtk2/nsClipboard.cpp", + "widget/src/gtk2/nsClipboard.h", + "widget/src/photon/nsClipboard.cpp", + "widget/src/photon/nsClipboard.h", + "widget/src/qt/nsClipboard.cpp", + "widget/src/qt/nsClipboard.h", + "widget/src/xpwidgets/Makefile.in", + "widget/src/xpwidgets/nsBaseClipboard.cpp", + "widget/src/xpwidgets/nsBaseClipboard.h", + "widget/src/xpwidgets/nsClipboardPrivacyHandler.cpp", + "widget/src/xpwidgets/nsClipboardPrivacyHandler.h", + "widget/tests/Makefile.in", + "widget/tests/test_bug462106.xul" + ], + "components": [], + "directories": [ + "widget/tests", + "widget", + "widget/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "6718f7e66778dc26dadec571c108b29b37df0822", + "author": "Peter Van der Beken ", + "bug_id": 464676, + "desc": "Back out changeset e919f0c1dfa9 (Fix for bug 464676 (Cycle collector sometimes unlinks live cycles). r=bent, sr=jst.) to try to fix red on leak tinderboxes.", + "pushdate": "2009-01-24 22:14:11", + "backsout": [ + "e919f0c1dfa9eff51063f3ba1df87e117cc76178" + ], + "backedoutby": "", + "author_email": "peterv@propagandism.org", + "reviewers": [ + "bent", + "jst" + ], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 18771078.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/xpconnect/src/nsXPConnect.cpp", + "js/src/xpconnect/src/xpcwrappednativescope.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "4d6ed97f82f3c86991c11b90f7f8aabc19f05094", + "author": "Peter Van der Beken ", + "bug_id": 464676, + "desc": "Backed out changeset 81428de4b5dc (Fix for bug 464676 (Cycle collector sometimes unlinks live cycles). r=bent, sr=jst.).", + "pushdate": "2009-01-26 08:11:21", + "backsout": [ + "81428de4b5dc5de515d03ed6a3abd5b63f50fdd0" + ], + "backedoutby": "", + "author_email": "peterv@propagandism.org", + "reviewers": [ + "bent", + "jst" + ], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 18893308.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/xpconnect/src/nsXPConnect.cpp", + "js/src/xpconnect/src/xpcprivate.h", + "js/src/xpconnect/src/xpcwrappednative.cpp", + "js/src/xpconnect/src/xpcwrappednativescope.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "73bfcdaa1a516a2c25ca7d9f6106ba30a3ca11c5", + "author": "Igor Bukanov ", + "bug_id": 474801, + "desc": "Backed out changeset 6657640cbbb2 - the patch from the bug 474801 caused leak and crash test failures", + "pushdate": "2009-01-27 21:40:57", + "backsout": [ + "6657640cbbb202218a8a87fe0a37e20568b8a219" + ], + "backedoutby": "", + "author_email": "igor@mir2.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 19267558.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "dom/src/base/nsJSEnvironment.cpp", + "js/src/jsapi.cpp", + "js/src/jsapi.h", + "js/src/jscntxt.h", + "js/src/jsgc.cpp", + "js/src/shell/js.cpp" + ], + "components": [ + "Core::JavaScript Engine" + ], + "directories": [ + "dom", + "js", + "dom/src", + "js/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "2bed5117722e6f63ebf50ec02562946c129bed3f", + "author": "Andreas Gal ", + "bug_id": 462027, + "desc": "Backed out changeset 17663da1b840 (bug 462027).", + "pushdate": "2009-01-27 21:40:57", + "backsout": [ + "17663da1b840384852133b3b97f6fc0298682d91" + ], + "backedoutby": "", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 18092979.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/builtins.tbl", + "js/src/imacro_asm.js.in", + "js/src/imacros.c.out", + "js/src/imacros.jsasm", + "js/src/jsbuiltins.cpp", + "js/src/jscntxt.h", + "js/src/jsgc.cpp", + "js/src/jsinterp.cpp", + "js/src/jsopcode.tbl", + "js/src/jstracer.cpp", + "js/src/jstracer.h", + "js/src/trace-test.js" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "6e5e50fe7ca61ddf885122b938f825af08c81ee2", + "author": "Andreas Gal ", + "bug_id": 24106, + "desc": "Backed out changeset 05cbbc9f1ae2, which backed out bug 24106 (so this is re-landing 24106).", + "pushdate": "2009-01-27 21:40:57", + "backsout": [ + "05cbbc9f1ae27bc382dad2032c26df0341d1d1db" + ], + "backedoutby": "", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 18092979.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jstracer.cpp", + "js/src/trace-test.js" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "799a55cfae002c1a1b0e8a6a089b3b3c007f0668", + "author": "Andreas Gal ", + "bug_id": 474771, + "desc": "Backed out changeset d50d3681b94e (attempted re-landing of 474771).", + "pushdate": "2009-01-28 18:59:34", + "backsout": [ + "d50d3681b94e" + ], + "backedoutby": "", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 18169696.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jscntxt.h", + "js/src/jsinterp.cpp", + "js/src/jsobj.cpp", + "js/src/jsstaticcheck.h", + "js/src/jstracer.cpp", + "js/src/trace-test.js" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "0cbd3800749f3bffc26297d2307262908464c554", + "author": "L. David Baron ", + "bug_id": 475128, + "desc": "Backed out changeset 24917a339f2e (bug 475128) because it didn't patch the IsRoot check nsRuleNode::Sweep, which it needs to.", + "pushdate": "2009-01-29 22:37:28", + "backsout": [ + "24917a339f2e1e6dbe955e5d318d2a6be975abc5" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 22477169.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/base/nsPresContext.h", + "layout/style/nsStyleContext.cpp", + "layout/style/nsStyleSet.cpp", + "layout/style/nsStyleSet.h" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "layout/style", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "6efc982bb051993be0ab7d97a8efc25745dbb945", + "author": "Justin Dolske ", + "bug_id": 451352, + "desc": "Backout changeset 8dd2e82503cd (bug 451352), it broke password manager.", + "pushdate": "2009-01-30 20:02:08", + "backsout": [ + "8dd2e82503cd3d6759178d1066193c07559251c3" + ], + "backedoutby": "", + "author_email": "dolske@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 19701372.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/components/passwordmgr/content/passwordManager.js" + ], + "components": [], + "directories": [ + "toolkit/components", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "6a6d6d76ebc8fad447f77cf8d537dea380361855", + "author": "shaver@mozilla.org", + "bug_id": 469625, + "desc": "Backed out changeset 7246c4dcf997 (bug 469625) due to trace-test.js failures.", + "pushdate": "2009-01-31 19:45:42", + "backsout": [ + "7246c4dcf99709f0fe1e0aefbf812e701f1961ad" + ], + "backedoutby": "", + "author_email": "shaver@mozilla.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 27399378.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsarray.cpp", + "js/src/jsemit.cpp", + "js/src/jsobj.cpp", + "js/src/jstracer.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "143ac6c35cfacf6ec31a1cb8bce9d295d3889aaf", + "author": "Ted Mielczarek ", + "bug_id": 460515, + "desc": "Backed out changeset 7c7ec4bd36a6 (bug 460515 - Remove assumption that xpcshell etc in same directory as app executable) because it's broken on OS X.", + "pushdate": "2009-02-04 20:43:14", + "backsout": [ + "7c7ec4bd36a6aae629950758362b7c589b0e4564" + ], + "backedoutby": "", + "author_email": "ted.mielczarek@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 27748430.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "build/pgo/automation.py.in", + "testing/mochitest/runtests.py.in", + "testing/mochitest/server.js" + ], + "components": [ + "Testing::Mochitest" + ], + "directories": [ + "testing/mochitest", + "build/pgo", + "testing", + "build" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "674246a64ed25f818e72b1982cc20168502c2988", + "author": "L. David Baron ", + "bug_id": 474655, + "desc": "Backed out changeset eec3076f3bab (Bug 474655, Warn when nsIDOMCSSStyleDeclaration::GetPropertyCSSValue is called) because we trigger the warning too much ourselves (Bug 475311)", + "pushdate": "2009-02-04 21:25:12", + "backsout": [ + "eec3076f3bab68a031a39a4b01617a3e4c97834b" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 22991233.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "dom/locales/en-US/chrome/layout/css.properties", + "layout/style/nsCSSRules.cpp", + "layout/style/nsComputedDOMStyle.cpp", + "layout/style/nsComputedDOMStyle.h", + "layout/style/nsDOMCSSDeclaration.cpp", + "layout/style/nsStyleUtil.cpp", + "layout/style/nsStyleUtil.h" + ], + "components": [ + "Core::DOM: CSS Object Model", + "Core::CSS Parsing and Computation" + ], + "directories": [ + "dom", + "layout", + "dom/locales", + "layout/style" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "c5044341110e9e79210a7547b1a3e75f01b6e58a", + "author": "L. David Baron ", + "bug_id": 476345, + "desc": "Backed out changeset d9eff1fb5e60 (bug 476345) due to Windows bustage.", + "pushdate": "2009-02-04 22:39:56", + "backsout": [ + "d9eff1fb5e6034d114cfae7757b4af4542d31f28" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 22995717.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/style/nsCSSValue.h" + ], + "components": [ + "Core::CSS Parsing and Computation" + ], + "directories": [ + "layout/style", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "c1dabe868c329e83fc95183ba931d0da48e7d865", + "author": "Peter Van der Beken ", + "bug_id": 445087, + "desc": "Backed out changeset d679ac3a8de0 (Bug 445087. Add extra pixel on each side of the glyph's black box returned by GetGlyphOutlineW, to avoid clipping ClearType pixels. r=vlad) to fix orange.", + "pushdate": "2009-02-05 14:35:14", + "backsout": [ + "d679ac3a8de0c6de7339056d80c7d0470b7c0a95" + ], + "backedoutby": "", + "author_email": "peterv@propagandism.org", + "reviewers": [ + "vlad" + ], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 19780341.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "gfx/cairo/README", + "gfx/cairo/cairo/src/cairo-win32-font.c", + "gfx/cairo/win32-cleartype-clipping.patch" + ], + "components": [ + "Core::Graphics" + ], + "directories": [ + "gfx/cairo", + "gfx" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "1dabc169a3c4f6afea7acec07e2fe983bdce6186", + "author": "Benjamin Smedberg ", + "bug_id": 476643, + "desc": "Backed out changeset 64d5b7cdeb69 - bug 476643 because of Windows bustage (js_LeaveTrace is not a friend API)", + "pushdate": "2009-02-06 01:20:20", + "backsout": [ + "64d5b7cdeb698e8fc8543ff863680d22fce7748c" + ], + "backedoutby": "", + "author_email": "benjamin@smedbergs.us", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 27851456.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "dom/src/base/nsJSEnvironment.cpp", + "dom/src/base/nsJSEnvironment.h", + "js/src/xpconnect/src/xpcprivate.h", + "js/src/xpconnect/src/xpcwrappedjsclass.cpp" + ], + "components": [], + "directories": [ + "dom", + "js", + "dom/src", + "js/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "27d46c33caddcf8b00b874230d539e283e9ddfa2", + "author": "L. David Baron ", + "bug_id": 460882, + "desc": "Backed out changeset 423eea03fb54 (Bug 460882) for being one of the two changesets that's causing chrome and a11y tests not to start.", + "pushdate": "2009-02-07 04:58:06", + "backsout": [ + "423eea03fb546ce9c44c47b091d92068c8462eb7" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 23191207.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "dom/src/base/nsDOMClassInfo.cpp", + "js/src/jsdbgapi.cpp", + "js/src/jsinterp.cpp", + "js/src/jsscope.h", + "js/src/xpconnect/idl/nsIXPConnect.idl", + "js/src/xpconnect/src/XPCCrossOriginWrapper.cpp", + "js/src/xpconnect/src/nsXPConnect.cpp", + "js/src/xpconnect/src/xpccallcontext.cpp", + "js/src/xpconnect/src/xpcprivate.h", + "js/src/xpconnect/src/xpcwrappednativejsops.cpp", + "js/src/xpconnect/src/xpcwrappednativescope.cpp" + ], + "components": [], + "directories": [ + "dom", + "js", + "dom/src", + "js/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "7a4f890c862d61c7d8d26f656a1f438e81c6c9d5", + "author": "Phil Ringnalda ", + "bug_id": 320954, + "desc": "Backed out changeset c8d43645a578 (bug 320954) for burning leak tests", + "pushdate": "2009-02-07 22:40:16", + "backsout": [ + "c8d43645a578b3e2d933328ed3088cbd4d98d371" + ], + "backedoutby": "", + "author_email": "philringnalda@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 20554026.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "security/manager/ssl/src/nsNSSModule.cpp" + ], + "components": [], + "directories": [ + "security/manager", + "security" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "7581b9caf300976be72d4be0a74041533a586396", + "author": "Marco Bonardo ", + "bug_id": 469831, + "desc": "Backed out changeset 92a47ed3d54e - Michael Ventnor \u2014 Bug 469831 - need gtk2 drawing code for test plugin - due to mochitest leak failures (crash?)", + "pushdate": "2009-02-10 00:37:27", + "backsout": [ + "92a47ed3d54e2e388b7fb4360a476fdc765d75d7" + ], + "backedoutby": "", + "author_email": "mbonardo@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 474492.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "modules/plugin/test/reftest/reftest.list", + "modules/plugin/test/testplugin/Makefile.in", + "modules/plugin/test/testplugin/nptest_gtk2.cpp" + ], + "components": [], + "directories": [ + "modules/plugin", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "4bb932755d5c4d2a79ce867b256e95cbb3118fcd", + "author": "Marco Zehe ", + "bug_id": 475522, + "desc": "Backout changeset 4767c92771e6 from bug 475522 because of burning tree", + "pushdate": "2009-02-12 14:37:38", + "backsout": [ + "4767c92771e658f69cc9d908b2fd147f9b0d37bc" + ], + "backedoutby": "", + "author_email": "marco.zehe@googlemail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 21778772.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "accessible/src/base/Makefile.in", + "accessible/src/base/nsAccessibilityAtomList.h", + "accessible/src/base/nsTextAttrs.cpp", + "accessible/src/base/nsTextAttrs.h", + "accessible/src/base/nsTextUtils.cpp", + "accessible/src/base/nsTextUtils.h", + "accessible/src/html/nsHyperTextAccessible.cpp", + "accessible/src/html/nsHyperTextAccessible.h", + "accessible/tests/mochitest/attributes.js", + "accessible/tests/mochitest/test_textattrs.html" + ], + "components": [ + "Core::Disability Access APIs" + ], + "directories": [ + "accessible/src", + "accessible", + "accessible/tests" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "8dccd5c59ad200b7187886fd95d6847b11d03607", + "author": "L. David Baron ", + "bug_id": 474536, + "desc": "Backed out changeset 4bd7dd7645c2 (Bug 474536)", + "pushdate": "2009-02-19 20:38:52", + "backsout": [ + "4bd7dd7645c209ec5065bab824994739587a7e51" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 24284453.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "modules/libjar/nsJARChannel.cpp", + "modules/libjar/nsJARChannel.h", + "netwerk/base/public/nsChannelProperties.h", + "netwerk/base/public/nsNetStrings.h", + "netwerk/base/public/nsNetUtil.h", + "netwerk/base/src/nsNetStrings.cpp", + "netwerk/protocol/http/src/nsHttpAtomList.h", + "netwerk/streamconv/test/Makefile.in", + "uriloader/base/nsURILoader.cpp" + ], + "components": [ + "Core::DOM: Navigation", + "Core::Networking: JAR" + ], + "directories": [ + "netwerk/base", + "modules/libjar", + "netwerk/protocol", + "netwerk", + "uriloader/base", + "netwerk/streamconv", + "uriloader", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "0590dccbad048faa84af827bb1eaefe978e95260", + "author": "L. David Baron ", + "bug_id": 322475, + "desc": "Backed out changeset fde0b361f25e (bug 322475, main patch) due to Mac talos startup failures and hitting the NS_ABORT_IF_FALSE in SetupBackgroundClip, which may be related.", + "pushdate": "2009-02-19 21:52:07", + "backsout": [ + "fde0b361f25eb13e1b18cab08150e8d3f7a34272" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 24288848.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "accessible/src/base/nsTextAttrs.cpp", + "content/html/content/src/nsGenericHTMLElement.cpp", + "content/mathml/content/src/nsMathMLElement.cpp", + "gfx/thebes/public/gfxContext.h", + "layout/base/nsCSSRendering.cpp", + "layout/base/nsDisplayList.cpp", + "layout/base/nsLayoutUtils.cpp", + "layout/base/nsPresContext.cpp", + "layout/base/nsStyleConsts.h", + "layout/generic/nsFrame.cpp", + "layout/reftests/backgrounds/aqua-32x32.png", + "layout/reftests/backgrounds/blue-32x32.png", + "layout/reftests/backgrounds/fallback-color-1.xhtml", + "layout/reftests/backgrounds/fallback-color-2.xhtml", + "layout/reftests/backgrounds/fallback-color-3.xhtml", + "layout/reftests/backgrounds/fallback-color-4.xhtml", + "layout/reftests/backgrounds/fallback-color-5.xhtml", + "layout/reftests/backgrounds/fallback-color-6.xhtml", + "layout/reftests/backgrounds/fallback-color-7.xhtml", + "layout/reftests/backgrounds/fallback-color-8.xhtml", + "layout/reftests/backgrounds/fallback-color-9.xhtml", + "layout/reftests/backgrounds/fallback-color-ref.xhtml", + "layout/reftests/backgrounds/fuchsia-32x32.png", + "layout/reftests/backgrounds/layers-layer-count-1-ref.xhtml", + "layout/reftests/backgrounds/layers-layer-count-2-ref.xhtml", + "layout/reftests/backgrounds/layers-layer-count-cascade-1.xhtml", + "layout/reftests/backgrounds/layers-layer-count-cascade-2.xhtml", + "layout/reftests/backgrounds/layers-layer-count-inheritance-1.xhtml", + "layout/reftests/backgrounds/layers-layer-count-inheritance-2.xhtml", + "layout/reftests/backgrounds/layers-stacking-order-ref.xhtml", + "layout/reftests/backgrounds/layers-stacking-order.xhtml", + "layout/reftests/backgrounds/lime-32x32.png", + "layout/reftests/backgrounds/malformed.png", + "layout/reftests/backgrounds/red-32x32.png", + "layout/reftests/backgrounds/reftest.list", + "layout/reftests/backgrounds/transparent-32x32.png", + "layout/reftests/backgrounds/yellow-32x32.png", + "layout/reftests/reftest.list", + "layout/style/nsCSSDataBlock.cpp", + "layout/style/nsCSSDeclaration.cpp", + "layout/style/nsCSSParser.cpp", + "layout/style/nsCSSPropList.h", + "layout/style/nsCSSProps.cpp", + "layout/style/nsCSSStruct.cpp", + "layout/style/nsCSSStruct.h", + "layout/style/nsComputedDOMStyle.cpp", + "layout/style/nsComputedDOMStyle.h", + "layout/style/nsRuleNode.cpp", + "layout/style/nsStyleStruct.cpp", + "layout/style/nsStyleStruct.h", + "layout/style/test/property_database.js", + "layout/style/test/test_shorthand_property_getters.html", + "layout/tables/nsTablePainter.cpp", + "layout/xul/base/src/tree/src/nsTreeBodyFrame.cpp", + "xpcom/glue/nsTArray.h" + ], + "components": [ + "Core::Layout", + "Core::DOM: CSS Object Model", + "Core::CSS Parsing and Computation" + ], + "directories": [ + "xpcom/glue", + "layout/generic", + "layout/tables", + "accessible/src", + "accessible", + "content/mathml", + "gfx/thebes", + "layout/xul", + "content", + "xpcom", + "content/html", + "layout/style", + "gfx", + "layout", + "layout/base", + "layout/reftests" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "6e008e161a0fed680d40e4f811254f51ece7b7bf", + "author": "Shawn Wilsher ", + "bug_id": 474749, + "desc": "Backed out changeset 690209fc5b6b (bug 474749) due to unit test failures.", + "pushdate": "2009-02-22 06:44:40", + "backsout": [ + "690209fc5b6b4d2816f4d02b592c1ed0739a5cf5" + ], + "backedoutby": "", + "author_email": "me@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 7464381.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "media/liboggplay/src/liboggplay/oggplay_yuv2rgb.c", + "media/liboggplay/update.sh", + "media/liboggplay/yuv_fix_mmx.patch" + ], + "components": [], + "directories": [ + "media", + "media/liboggplay" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "0e56b82242f20ff27016b2816acf79363ce9190e", + "author": "Shawn Wilsher ", + "bug_id": 479543, + "desc": "Backed out changeset f8926cd4a7b2 (bug 479543) since it breaks unit tests in\ndebug builds.", + "pushdate": "2009-02-23 22:35:40", + "backsout": [ + "f8926cd4a7b24a307d61d80dced150183ffd30de" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 22834109.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "storage/src/mozStorageConnection.cpp" + ], + "components": [], + "directories": [ + "storage/src", + "storage" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "87097563da9eb475bae4354e8b4953530d70ab25", + "author": "L. David Baron ", + "bug_id": 476245, + "desc": "Backed out changeset a328b5ae57e0 (bug 476245) for causing failures of test_videocontrols.html across platforms (although Linux hasn't cycled yet).", + "pushdate": "2009-02-24 21:39:20", + "backsout": [ + "a328b5ae57e0062d856efe7489d224d4f3df88cf" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 24720081.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/base/public/nsIContent.h", + "content/base/public/nsINode.h", + "content/base/src/nsGenericDOMDataNode.cpp", + "content/base/src/nsGenericElement.cpp", + "content/xbl/src/nsXBLBinding.cpp", + "layout/base/nsCSSFrameConstructor.cpp" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "content/base", + "content", + "content/xbl", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "596366a3c3413b7b303f75f0beb8e2ebb36ca3a9", + "author": "Jonas Sicking ", + "bug_id": 479521, + "desc": "Backed out changeset 4130ff1e52f3 (bug 479521) due to test failures.", + "pushdate": "2009-02-24 23:38:22", + "backsout": [ + "4130ff1e52f30d3cd309448fc2b3cb825d5ae300" + ], + "backedoutby": "", + "author_email": "jonas@sicking.cc", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 17628917.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "build/automation.py.in", + "content/base/src/nsCrossSiteListenerProxy.cpp", + "content/base/src/nsCrossSiteListenerProxy.h", + "content/base/src/nsXMLHttpRequest.cpp", + "content/base/test/file_CrossSiteXHR_server.sjs", + "content/base/test/test_CrossSiteXHR.html", + "modules/libpref/src/init/all.js", + "netwerk/protocol/http/src/nsHttpChannel.cpp", + "netwerk/protocol/http/src/nsHttpHandler.cpp", + "netwerk/protocol/http/src/nsHttpHandler.h" + ], + "components": [], + "directories": [ + "modules/libpref", + "netwerk/protocol", + "netwerk", + "build", + "content/base", + "content", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "34ee950622aa5c2f92b3143421fee9eef6952c5a", + "author": "Andreas Gal ", + "bug_id": 24968, + "desc": "Back out a2b6a4c57a05 (bug 24968). Cross-platform orange.", + "pushdate": "2009-02-25 09:05:38", + "backsout": [ + "a2b6a4c57a0557c922bef92bc96c388441192384" + ], + "backedoutby": "", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 20553260.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jstracer.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "939103e7a4abcecf6035ba8ff205410c958e4ec1", + "author": "Dave Camp ", + "bug_id": 479393, + "desc": "Backed out changeset 209a7cc3150e (Bug 479393)", + "pushdate": "2009-02-26 05:51:42", + "backsout": [ + "209a7cc3150ef1ab3208a0702c426af9eb3185c6" + ], + "backedoutby": "", + "author_email": "dcamp@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 21180440.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "security/manager/ssl/src/nsNSSComponent.cpp" + ], + "components": [], + "directories": [ + "security/manager", + "security" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "c395bb2cf30ab1144bc0e41da4e3accd44209589", + "author": "Johnathan Nightingale ", + "bug_id": 479499, + "desc": "Backed out changeset fdbe218cdcc7 - Causing crashtest hangs on linux. Tracked by bug 479499.", + "pushdate": "2009-03-03 14:47:16", + "backsout": [ + "fdbe218cdcc70e324f22e689e697fce690abeb6c" + ], + "backedoutby": "", + "author_email": "johnath@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 16886130.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "parser/htmlparser/tests/crashtests/crashtests.list" + ], + "components": [ + "Core::XML" + ], + "directories": [ + "parser/htmlparser", + "parser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "f8b100b574f316c48f77427708315ac7921e00a4", + "author": "Igor Bukanov ", + "bug_id": 480700, + "desc": "Backed out changeset 5befb6301e9b for bug 480700 - the patch broke 32-bit linux build.", + "pushdate": "2009-03-09 18:47:08", + "backsout": [ + "5befb6301e9bfb47fd23ef695cfd1bc2017bdda8" + ], + "backedoutby": "", + "author_email": "igor@mir2.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 22799529.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsbit.h", + "js/src/jslog2.cpp", + "js/src/jsprvtd.h", + "js/src/jstypes.h", + "js/src/jsutil.cpp" + ], + "components": [ + "Core::JavaScript Engine" + ], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "14bc4dbf10cb18b41e6a7e2f79039e6cd0eb71ea", + "author": "Joe Drew ", + "bug_id": 480267, + "desc": "Backed out changeset 635b1c8783a6 - bug 480267 - because it seems to have\ncaused a reftest failure.", + "pushdate": "2009-03-10 16:26:18", + "backsout": [ + "635b1c8783a6dabfa80aab6b55d3815ea41606cc" + ], + "backedoutby": "", + "author_email": "joe@drew.ca", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 17568506.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "gfx/thebes/public/gfxFontUtils.h", + "gfx/thebes/src/gfxFontUtils.cpp", + "gfx/thebes/src/gfxQuartzFontCache.mm", + "gfx/thebes/src/gfxWindowsFonts.cpp", + "layout/reftests/font-face/reftest.list", + "layout/reftests/font-face/synthetic-weight-style-ref.html", + "layout/reftests/font-face/synthetic-weight-style.html" + ], + "components": [ + "Core::CSS Parsing and Computation" + ], + "directories": [ + "layout/reftests", + "gfx/thebes", + "gfx", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "44cd744842422ca215443df7c86c7490686773ef", + "author": "Karl Tomlinson ", + "bug_id": 481881, + "desc": "backout dac7c3176b33 from bug 481881", + "pushdate": "2009-03-11 04:09:25", + "backsout": [ + "dac7c3176b331762557a4c3d74e32840cb002fe0" + ], + "backedoutby": "", + "author_email": "karlt+@karlt.net", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 21344141.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/generic/nsFrame.cpp", + "layout/generic/nsTextFrameThebes.cpp", + "layout/inspector/src/inDeepTreeWalker.cpp", + "layout/inspector/src/inDeepTreeWalker.h", + "layout/tables/nsCellMap.cpp", + "layout/tables/nsCellMap.h", + "layout/tables/nsTableFrame.cpp" + ], + "components": [ + "Core::Layout: Tables" + ], + "directories": [ + "layout/inspector", + "layout/generic", + "layout/tables", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "ad96e3d1ab56c30857baab534d1b353d121dc61f", + "author": "Ehsan Akhgari ", + "bug_id": 463256, + "desc": "Backed out changeset 113bda3be8df (bug 463256) due to test failures on Mac", + "pushdate": "2009-03-12 10:10:39", + "backsout": [ + "113bda3be8df2698fdd52a65b54c7d24b2eda2be" + ], + "backedoutby": "", + "author_email": "ehsan.akhgari@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 21044305.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/components/privatebrowsing/src/nsPrivateBrowsingService.js", + "browser/components/privatebrowsing/test/browser/Makefile.in", + "browser/components/privatebrowsing/test/browser/browser_privatebrowsing_sslsite_transition.js", + "toolkit/components/downloads/test/unit/test_privatebrowsing.js" + ], + "components": [], + "directories": [ + "toolkit/components", + "browser/components", + "toolkit", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "73379b9ca6ce67e1c061de3b7f450f3f613f2915", + "author": "Ehsan Akhgari ", + "bug_id": 464800, + "desc": "Backed out changeset 69322c1764ff (bug 464800) due to test failures on Mac", + "pushdate": "2009-03-12 10:10:39", + "backsout": [ + "69322c1764ffd21bd5756e54a4068fcb4c4ac077" + ], + "backedoutby": "", + "author_email": "ehsan.akhgari@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 21044305.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/mozapps/downloads/content/downloads.js", + "toolkit/mozapps/downloads/tests/chrome/Makefile.in", + "toolkit/mozapps/downloads/tests/chrome/test_privatebrowsing_title.xul" + ], + "components": [], + "directories": [ + "toolkit/mozapps", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "fbd0299ee9becb64574199c7c2ba727bf1a0055f", + "author": "Graydon Hoare ", + "bug_id": 482800, + "desc": "Backout changeset 5e0cc374593c for bug 482800.", + "pushdate": "2009-03-13 01:56:58", + "backsout": [ + "5e0cc374593c24989fb28dd1e98022373204b8ca" + ], + "backedoutby": "", + "author_email": "graydon@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 21285817.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jstracer.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "6ed065a2a0d82c1ecf4d7e15b8fbbca18075bb0d", + "author": "Igor Bukanov ", + "bug_id": 437325, + "desc": "Backed out changeset 57de81309176 - bug 437325 - due to mochitest leaks on tinderbox", + "pushdate": "2009-03-13 20:34:49", + "backsout": [ + "57de813091765f87edb63835fda7e72b6de9df5b" + ], + "backedoutby": "", + "author_email": "igor@mir2.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 23151590.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsapi.cpp", + "js/src/jscntxt.cpp", + "js/src/jscntxt.h", + "js/src/jsdbgapi.cpp", + "js/src/jsfun.cpp", + "js/src/jsgc.cpp", + "js/src/jsgc.h", + "js/src/jsinterp.cpp", + "js/src/jsinterp.h", + "js/src/jsprvtd.h", + "js/src/jsscript.cpp", + "js/src/jstracer.cpp", + "js/src/jstracer.h", + "js/src/xpconnect/src/xpcjsruntime.cpp" + ], + "components": [ + "Core::JavaScript Engine" + ], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "96fb69f98cc2c3ad734d89428918adfcf945a885", + "author": "Andreas Gal ", + "bug_id": 457065, + "desc": "Backed out changeset 10b781704400 (bug 457065).", + "pushdate": "2009-03-16 22:50:44", + "backsout": [ + "10b781704400c1b969761a460d787de171f5cb73" + ], + "backedoutby": "", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 22244366.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jstracer.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "33c68c49af9dc25355f3855452fc043c2c84b4d2", + "author": "Dave Townsend ", + "bug_id": 482659, + "desc": "Backed out changeset 55d159b75f41 from bug 482659.", + "pushdate": "2009-03-17 11:09:29", + "backsout": [ + "55d159b75f41141d92ad9bb2c52780d082ed11a0" + ], + "backedoutby": "", + "author_email": "dtownsend@oxymoronical.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 24798327.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/base/src/nsFrameLoader.cpp", + "content/html/document/test/Makefile.in", + "content/html/document/test/test_bug482659.html", + "layout/reftests/bugs/482659-1-ref.html", + "layout/reftests/bugs/482659-1a.html", + "layout/reftests/bugs/482659-1b.html", + "layout/reftests/bugs/482659-1c.html", + "layout/reftests/bugs/482659-1d.html", + "layout/reftests/bugs/reftest.list", + "netwerk/build/nsNetCID.h", + "netwerk/build/nsNetModule.cpp", + "netwerk/protocol/about/src/nsAboutProtocolHandler.cpp", + "netwerk/protocol/about/src/nsAboutProtocolHandler.h", + "netwerk/test/unit/test_aboutblank.js" + ], + "components": [ + "Core::Layout", + "Core::Networking" + ], + "directories": [ + "netwerk/protocol", + "netwerk", + "netwerk/test", + "netwerk/build", + "content/base", + "content", + "content/html", + "layout", + "layout/reftests" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "830772ae7bf41b96b9ad77c2ce55215d2f1d93cf", + "author": "Andreas Gal ", + "bug_id": 479110, + "desc": "Backed out changeset e71cb3993380 (bug 479110).", + "pushdate": "2009-03-18 06:58:56", + "backsout": [ + "e71cb3993380e6f98caffee8be67a3fff87adea0" + ], + "backedoutby": "", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 22360058.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jstracer.cpp", + "js/src/jstracer.h", + "js/src/math-trace-tests.js" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "0424abce8965b1c95c1a6ff6a893bf21b43d6253", + "author": "Gavin Sharp ", + "bug_id": 483634, + "desc": "Back out changeset 699fc684188c from bug 483634 due to unit test failures", + "pushdate": "2009-03-19 04:56:56", + "backsout": [ + "699fc684188c2ebba72ce592b644a12e3f02c6ff" + ], + "backedoutby": "", + "author_email": "gavin@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 23859563.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "dom/base/nsDOMWindowUtils.cpp", + "dom/interfaces/base/nsIDOMWindowUtils.idl", + "dom/tests/mochitest/general/Makefile.in", + "dom/tests/mochitest/general/test_domWindowUtils_scrollXY.html" + ], + "components": [ + "Core::DOM: Core & HTML" + ], + "directories": [ + "dom", + "dom/interfaces", + "dom/tests", + "dom/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "100e73c6c9e8b3315fb8b9eaec85dbb9b8b3040a", + "author": "Peter Van der Beken ", + "bug_id": 484764, + "desc": "Backed out changeset 83944488fbe6 (Preparation for fix for bug 484764 (Set up DOM prototype chains from PostCreateProto instead of PostCreate)).", + "pushdate": "2009-03-24 13:47:26", + "backsout": [ + "83944488fbe65335798cfc0e1f724e845beca785" + ], + "backedoutby": "", + "author_email": "peterv@propagandism.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 23838273.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "dom/base/nsDOMClassInfo.cpp", + "dom/base/nsDOMClassInfo.h" + ], + "components": [], + "directories": [ + "dom", + "dom/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "124a3d626d1e059fc0c13ff7549df8e2a69e6b34", + "author": "Igor Bukanov ", + "bug_id": 437325, + "desc": "Backed out changeset e117c22cc1d1 - the landed patch for bug 437325 has a shutdown leak.", + "pushdate": "2009-03-24 17:50:03", + "backsout": [ + "e117c22cc1d1a33f058191484ea339556c5ee654" + ], + "backedoutby": "", + "author_email": "igor@mir2.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 24092104.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsapi.cpp", + "js/src/jscntxt.cpp", + "js/src/jscntxt.h", + "js/src/jsdbgapi.cpp", + "js/src/jsfun.cpp", + "js/src/jsgc.cpp", + "js/src/jsgc.h", + "js/src/jsinterp.cpp", + "js/src/jsinterp.h", + "js/src/jsprvtd.h", + "js/src/jsscript.cpp", + "js/src/jstracer.cpp", + "js/src/jstracer.h", + "js/src/xpconnect/src/xpcjsruntime.cpp" + ], + "components": [ + "Core::JavaScript Engine" + ], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "a43288e59420590e1df46280dace88f4db30dbbe", + "author": "Dave Townsend ", + "bug_id": 484764, + "desc": "Backed out changeset 94673272aeab from bug 484764: Set up DOM prototype chain\nfrom nsDOMClassInfo::PostCreateProto.", + "pushdate": "2009-03-26 14:54:57", + "backsout": [ + "94673272aeab8bab601581b74567472e2985484d" + ], + "backedoutby": "", + "author_email": "dtownsend@oxymoronical.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 25589455.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "dom/base/nsDOMClassInfo.cpp", + "dom/base/nsDOMClassInfo.h" + ], + "components": [], + "directories": [ + "dom", + "dom/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "cc7213e51266945396c0f03f6bdff7e804e087b6", + "author": "Shawn Wilsher ", + "bug_id": 483980, + "desc": "Backed out changeset 2d1f7c7c7a2b (bug 483980)", + "pushdate": "2009-03-27 22:34:53", + "backsout": [ + "2d1f7c7c7a2b51459482072435cc6572f4ea7dec" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 25598862.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/components/places/src/nsNavBookmarks.cpp", + "toolkit/components/places/src/nsNavBookmarks.h", + "toolkit/components/places/src/nsNavHistory.cpp", + "toolkit/components/places/src/nsNavHistory.h", + "toolkit/components/places/src/nsNavHistoryExpire.cpp", + "toolkit/components/places/src/nsPlacesDBFlush.js", + "toolkit/components/places/src/nsPlacesMacros.h", + "toolkit/components/places/tests/unit/nsDummyObserver.js", + "toolkit/components/places/tests/unit/test_bookmark_catobs.js", + "toolkit/components/places/tests/unit/test_history_catobs.js" + ], + "components": [], + "directories": [ + "toolkit/components", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "711c24ec63bd94e0c7d1c7993cc341ab60ec5b7e", + "author": "Igor Bukanov ", + "bug_id": 485178, + "desc": "Backed out changeset 0b36bddcefe4 for bug 485178 to fix compiletaion errors on some platforms.", + "pushdate": "2009-03-29 20:42:33", + "backsout": [ + "0b36bddcefe45e07c2b4ead1f001062c9f1a4890" + ], + "backedoutby": "", + "author_email": "igor@mir2.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 24534454.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/shell/js.cpp" + ], + "components": [ + "Core::JavaScript Engine" + ], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "b39c0c0674fb5f8f3cab177d0f25dae8096fcde3", + "author": "Marco Bonardo ", + "bug_id": 427633, + "desc": "backout changeset 459c8e138144 \u2013 test for Bug 427633, due to failures on OS X", + "pushdate": "2009-03-30 22:59:52", + "backsout": [ + "459c8e138144c00e3b90d309a3284e18d7cf809e" + ], + "backedoutby": "", + "author_email": "mbonardo@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 4702237.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/components/places/tests/chrome/Makefile.in", + "browser/components/places/tests/chrome/test_editBookmarkOverlay.xul" + ], + "components": [], + "directories": [ + "browser/components", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "70cd538fd48aa091def4ad7c5df003283988b487", + "author": "Benjamin Smedberg ", + "bug_id": 485390, + "desc": "Backed out changeset f66fabdbc090 (bug 485390) - the problem is not in utils.lockFile, and you shouldn't really need to hold the file descriptor", + "pushdate": "2009-03-31 14:39:36", + "backsout": [ + "f66fabdbc090034cab166dd4d823ba082c0466ed" + ], + "backedoutby": "", + "author_email": "benjamin@smedbergs.us", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 32478612.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "config/utils.py" + ], + "components": [], + "directories": [ + "config" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "54dda9955a7fdc7f5dd468ce8ea06c3fa004f617", + "author": "L. David Baron ", + "bug_id": 395668, + "desc": "Backed out changeset 5263468b1d60 (bug 395668) due to unit test timeouts in test_tooltip.xul and test_tooltip_noautohide.xul", + "pushdate": "2009-04-02 18:06:14", + "backsout": [ + "5263468b1d60cce3af4feba31a8a2d380f7b7c13" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 27904095.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/xul/base/src/nsXULTooltipListener.cpp", + "layout/xul/base/src/nsXULTooltipListener.h" + ], + "components": [], + "directories": [ + "layout/xul", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "b025b0c6e3806754edac056176b8132b80b37c08", + "author": "Joe Drew ", + "bug_id": 481926, + "desc": "Backed out changeset 6f3c2171bbb2:\nBug 481926 - Rewrite color management component. r=joe,ted sr=vlad", + "pushdate": "2009-04-03 20:29:59", + "backsout": [ + "6f3c2171bbb22238f1e2dd13c7f748ac6e62145b" + ], + "backedoutby": "", + "author_email": "joe@drew.ca", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 19656727.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "config/autoconf.mk.in", + "config/static-config.mk", + "configure.in", + "content/canvas/src/Makefile.in", + "gfx/Makefile.in", + "gfx/qcms/Makefile.in", + "gfx/qcms/iccread.c", + "gfx/qcms/qcms.h", + "gfx/qcms/qcmsint.h", + "gfx/qcms/qcmstypes.h", + "gfx/qcms/transform.c", + "gfx/src/thebes/Makefile.in", + "gfx/thebes/public/gfxPlatform.h", + "gfx/thebes/public/gfxPlatformGtk.h", + "gfx/thebes/public/gfxPlatformMac.h", + "gfx/thebes/public/gfxQtPlatform.h", + "gfx/thebes/public/gfxWindowsPlatform.h", + "gfx/thebes/src/Makefile.in", + "gfx/thebes/src/gfxContext.cpp", + "gfx/thebes/src/gfxPattern.cpp", + "gfx/thebes/src/gfxPlatform.cpp", + "gfx/thebes/src/gfxPlatformGtk.cpp", + "gfx/thebes/src/gfxPlatformMac.cpp", + "gfx/thebes/src/gfxQtPlatform.cpp", + "gfx/thebes/src/gfxWindowsPlatform.cpp", + "gfx/thebes/test/Makefile.in", + "layout/base/Makefile.in", + "layout/mathml/Makefile.in", + "layout/svg/base/src/Makefile.in", + "modules/libpr0n/build/Makefile.in", + "modules/libpr0n/decoders/gif/Makefile.in", + "modules/libpr0n/decoders/gif/nsGIFDecoder2.cpp", + "modules/libpr0n/decoders/jpeg/Makefile.in", + "modules/libpr0n/decoders/jpeg/nsJPEGDecoder.cpp", + "modules/libpr0n/decoders/jpeg/nsJPEGDecoder.h", + "modules/libpr0n/decoders/png/Makefile.in", + "modules/libpr0n/decoders/png/nsPNGDecoder.cpp", + "modules/libpr0n/decoders/png/nsPNGDecoder.h", + "modules/libpr0n/test/reftest/pngsuite-ancillary/ccwn2c08.html", + "modules/libpr0n/test/reftest/pngsuite-ancillary/ccwn3p08.html", + "toolkit/library/libxul-rules.mk", + "toolkit/toolkit-makefiles.sh", + "toolkit/toolkit-tiers.mk", + "widget/src/build/Makefile.in", + "widget/src/cocoa/Makefile.in", + "widget/src/cocoa/nsCocoaWindow.mm", + "widget/src/gtk2/Makefile.in", + "widget/src/os2/Makefile.in", + "widget/src/qt/Makefile.in", + "widget/src/windows/Makefile.in", + "widget/src/xpwidgets/Makefile.in", + "widget/src/xpwidgets/nsXPLookAndFeel.cpp" + ], + "components": [ + "Core::Graphics", + "Firefox Build System::General" + ], + "directories": [ + "content/canvas", + "widget", + "toolkit", + "modules/libpr0n", + "config", + "gfx/thebes", + "layout/mathml", + "layout/svg", + "gfx/qcms", + "content", + "widget/src", + "toolkit/library", + "gfx/src", + "gfx", + "layout", + "layout/base", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "a55a5e3c4276ff60142187e0e6c230032323337c", + "author": "Andreas Gal ", + "bug_id": 484693, + "desc": "Backed out changeset b512be855093 (bug 484693). See bug for details.", + "pushdate": "2009-04-06 01:25:14", + "backsout": [ + "b512be855093b30f1a232035e856387964dc13c4" + ], + "backedoutby": "", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 23981636.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jscntxt.h", + "js/src/jstracer.cpp", + "js/src/jstracer.h" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "6eca563de031cb584b8a86fdd74238c3357fd198", + "author": "Jason Orendorff ", + "bug_id": 484693, + "desc": "Backout changeset 143e997c858e (bug 484693) because it caused crashes on Mac tinderboxen.", + "pushdate": "2009-04-08 04:43:16", + "backsout": [ + "143e997c858e116553451c2b7566d1679db3bccb" + ], + "backedoutby": "", + "author_email": "jorendorff@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 27070325.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jscntxt.h", + "js/src/jstracer.cpp", + "js/src/jstracer.h", + "js/src/trace-test.js" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "3c7cd3a8f785ec9a09fb4b5244f1c095f26c6fc1", + "author": "Boris Zbarsky ", + "bug_id": 484448, + "desc": "Backed out changeset 0ea22856b5d9 (bug 484448).", + "pushdate": "2009-04-08 19:58:02", + "backsout": [ + "0ea22856b5d9e25e2b687e3fb6f3da557274f42a" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 23665990.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/base/src/nsGenericDOMDataNode.cpp", + "content/base/src/nsGenericDOMDataNode.h", + "layout/base/nsCSSFrameConstructor.cpp", + "layout/base/nsCSSFrameConstructor.h", + "layout/generic/nsTextFrameThebes.cpp", + "layout/mathml/nsMathMLmtableFrame.h", + "layout/reftests/table-anonymous-boxes/3-blocks-ref.html", + "layout/reftests/table-anonymous-boxes/3-tables-ref.html", + "layout/reftests/table-anonymous-boxes/372641-1-ref.xhtml", + "layout/reftests/table-anonymous-boxes/372641-1a.xhtml", + "layout/reftests/table-anonymous-boxes/372641-1b.xhtml", + "layout/reftests/table-anonymous-boxes/372641-1c.xhtml", + "layout/reftests/table-anonymous-boxes/3x3-cols-ref.html", + "layout/reftests/table-anonymous-boxes/3x3-ref.html", + "layout/reftests/table-anonymous-boxes/dynamic-removal-14.html", + "layout/reftests/table-anonymous-boxes/infer-cells-1.html", + "layout/reftests/table-anonymous-boxes/reftest.list", + "layout/reftests/table-anonymous-boxes/white-space-1-ref.html", + "layout/reftests/table-anonymous-boxes/white-space-1.html", + "layout/reftests/table-anonymous-boxes/white-space-10.html", + "layout/reftests/table-anonymous-boxes/white-space-11.html", + "layout/reftests/table-anonymous-boxes/white-space-12.html", + "layout/reftests/table-anonymous-boxes/white-space-13.html", + "layout/reftests/table-anonymous-boxes/white-space-14.html", + "layout/reftests/table-anonymous-boxes/white-space-15.html", + "layout/reftests/table-anonymous-boxes/white-space-16.html", + "layout/reftests/table-anonymous-boxes/white-space-17.html", + "layout/reftests/table-anonymous-boxes/white-space-18.html", + "layout/reftests/table-anonymous-boxes/white-space-19.html", + "layout/reftests/table-anonymous-boxes/white-space-2.html", + "layout/reftests/table-anonymous-boxes/white-space-20.html", + "layout/reftests/table-anonymous-boxes/white-space-21.html", + "layout/reftests/table-anonymous-boxes/white-space-22.html", + "layout/reftests/table-anonymous-boxes/white-space-23.html", + "layout/reftests/table-anonymous-boxes/white-space-24.html", + "layout/reftests/table-anonymous-boxes/white-space-25.html", + "layout/reftests/table-anonymous-boxes/white-space-26.html", + "layout/reftests/table-anonymous-boxes/white-space-3.html", + "layout/reftests/table-anonymous-boxes/white-space-4.html", + "layout/reftests/table-anonymous-boxes/white-space-5.html", + "layout/reftests/table-anonymous-boxes/white-space-6.html", + "layout/reftests/table-anonymous-boxes/white-space-7.html", + "layout/reftests/table-anonymous-boxes/white-space-8.html", + "layout/reftests/table-anonymous-boxes/white-space-9.html", + "layout/reftests/table-anonymous-boxes/white-space-pre-1.html", + "layout/reftests/table-anonymous-boxes/white-space-pre-ref.html", + "layout/reftests/table-anonymous-boxes/white-space-ref.html", + "layout/tables/nsTableColFrame.h", + "layout/tables/nsTableColGroupFrame.h", + "layout/tables/nsTableFrame.h", + "layout/tables/nsTableOuterFrame.h", + "layout/tables/nsTableRowFrame.h", + "layout/tables/nsTableRowGroupFrame.h" + ], + "components": [ + "Core::Layout", + "Core::Layout: Tables", + "Core::MathML" + ], + "directories": [ + "layout/generic", + "layout/tables", + "layout/mathml", + "content/base", + "content", + "layout/reftests", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "f12b13dbd0530765cb71c97e5c80a1da2af14038", + "author": "Boris Zbarsky ", + "bug_id": 483552, + "desc": "Backed out changeset 510bd328a29d (bug 483552) due to landing on orange tree.", + "pushdate": "2009-04-09 16:04:18", + "backsout": [ + "510bd328a29d5025f7137d9f03506a41e693bc42" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 23738366.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/content/widgets/scrollbox.xml" + ], + "components": [], + "directories": [ + "toolkit/content", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "781e16e5112d9d75ea5c5045c35d27ed20c462ba", + "author": "Boris Zbarsky ", + "bug_id": 486933, + "desc": "Backed out changeset 86c8e18f20eb (bug 486933) due to landing on orange tree.", + "pushdate": "2009-04-09 16:04:18", + "backsout": [ + "86c8e18f20eb21fd20cd63e7fbb69203365a900d" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 23738366.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/base/nsCSSRendering.cpp", + "layout/base/nsCSSRendering.h", + "layout/base/nsLayoutUtils.cpp", + "layout/reftests/image/reftest.list" + ], + "components": [ + "Core::Layout", + "Core::Layout: Images, Video, and HTML Frames" + ], + "directories": [ + "layout/reftests", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "a3185147886829944da575f05300b2f5599db234", + "author": "Boris Zbarsky ", + "bug_id": 485563, + "desc": "Backed out changeset 0233d2bb8a07 (bug 485563) on suspicion of causing intermittent leak orange.", + "pushdate": "2009-04-09 16:04:18", + "backsout": [ + "0233d2bb8a0787ca9e26180f8ec0258ee5b5a050" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 23738366.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/components/sessionstore/src/nsSessionStore.js", + "browser/components/sessionstore/test/browser/Makefile.in", + "browser/components/sessionstore/test/browser/browser_485563.js" + ], + "components": [], + "directories": [ + "browser/components", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "2d6fa1ee649a41e608968c51ff46c2a002ef1d23", + "author": "Boris Zbarsky ", + "bug_id": 419612, + "desc": "Backed out changeset 17abd3beeabf (bug 419612) on suspicion of causing intermittent leak orange.", + "pushdate": "2009-04-09 16:04:18", + "backsout": [ + "17abd3beeabfc5a00a44e5f2157017300c94920b" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 23738366.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/base/content/test/Makefile.in", + "browser/base/content/test/browser_bug419612.js" + ], + "components": [], + "directories": [ + "browser/base", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "1a29fad0c1bbab453c89bf79dec70018e96eff0a", + "author": "Boris Zbarsky ", + "bug_id": 481598, + "desc": "Backed out changeset b1237eca3670 (bug 481598) on suspicion of causing intermittent leak orange.", + "pushdate": "2009-04-09 16:04:18", + "backsout": [ + "b1237eca36703defb4b7b1e3a42b843b523b4dfc" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 23738366.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/components/privatebrowsing/src/nsPrivateBrowsingService.js" + ], + "components": [], + "directories": [ + "browser/components", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "fca91e13946daba978e4a7f5d394abbfac8aeec3", + "author": "Boris Zbarsky ", + "bug_id": 486821, + "desc": "Backed out changeset 716fc2e4f7d3 (bug 486821) on suspicion of causing intermittent leak orange.", + "pushdate": "2009-04-09 16:04:18", + "backsout": [ + "716fc2e4f7d393f1f54a7602485549600beb128e" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 23738366.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/content/widgets/autocomplete.xml", + "toolkit/content/widgets/richlistbox.xml" + ], + "components": [], + "directories": [ + "toolkit/content", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "686e89bbc76494c130f48b5fb11cbabd9b6c3ae4", + "author": "Boris Zbarsky ", + "bug_id": 473732, + "desc": "Backed out changeset 50940a1eb1e9 (bug 473732) because it causes Linux unit\ntest orange.", + "pushdate": "2009-04-09 18:48:24", + "backsout": [ + "50940a1eb1e93bb1c788e79959bb5478ca62becd" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 23748212.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "accessible/src/base/nsARIAMap.cpp", + "accessible/src/base/nsARIAMap.h", + "accessible/src/base/nsAccUtils.cpp", + "accessible/src/base/nsAccessible.cpp", + "accessible/tests/mochitest/Makefile.in", + "accessible/tests/mochitest/test_actions_aria.html", + "accessible/tests/mochitest/test_actions_doc.html", + "accessible/tests/mochitest/test_nsIAccessibleDocument.html" + ], + "components": [ + "Core::Disability Access APIs" + ], + "directories": [ + "accessible/src", + "accessible", + "accessible/tests" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "c0542ed38b98aebddcfdc1ee39bbd6774cfeb04e", + "author": "Justin Dolske ", + "bug_id": 487719, + "desc": "Backed out changeset dde29bfff639 (bug 487719)", + "pushdate": "2009-04-13 08:30:54", + "backsout": [ + "dde29bfff639502f81f585b3f83c584343132a81" + ], + "backedoutby": "", + "author_email": "dolske@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 25967098.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/content/widgets/videocontrols.xml" + ], + "components": [], + "directories": [ + "toolkit/content", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "86fdfc20dccb81d978f338c850e5a028aad4e850", + "author": "Justin Dolske ", + "bug_id": 475317, + "desc": "Backed out changeset dddef115ddd2 (bug 475317)", + "pushdate": "2009-04-13 08:30:54", + "backsout": [ + "dddef115ddd26123f998caf97afc9affd635f8ce" + ], + "backedoutby": "", + "author_email": "dolske@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 25967098.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/content/widgets/videocontrols.css", + "toolkit/content/widgets/videocontrols.xml", + "toolkit/themes/pinstripe/global/jar.mn", + "toolkit/themes/pinstripe/global/media/videocontrols.css", + "toolkit/themes/pinstripe/global/media/volumeThumb.png", + "toolkit/themes/winstripe/global/jar.mn", + "toolkit/themes/winstripe/global/media/videocontrols.css", + "toolkit/themes/winstripe/global/media/volumeThumb.png" + ], + "components": [], + "directories": [ + "toolkit/content", + "toolkit", + "toolkit/themes" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "f82e3ab11e63ed737b47fcdc7ec9369931e4cb10", + "author": "Justin Dolske ", + "bug_id": 475318, + "desc": "Backed out changeset 1e38c7369a3d (bug 475318)", + "pushdate": "2009-04-13 08:30:54", + "backsout": [ + "1e38c7369a3d5d36b494f8827758fe0d1c34ef9f" + ], + "backedoutby": "", + "author_email": "dolske@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 25967098.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/content/tests/widgets/test_videocontrols.html", + "toolkit/content/widgets/videocontrols.css", + "toolkit/content/widgets/videocontrols.xml", + "toolkit/themes/pinstripe/global/jar.mn", + "toolkit/themes/pinstripe/global/media/scrubberThumb.png", + "toolkit/themes/pinstripe/global/media/scrubberThumbWide.png", + "toolkit/themes/pinstripe/global/media/videocontrols.css", + "toolkit/themes/winstripe/global/jar.mn", + "toolkit/themes/winstripe/global/media/scrubberThumb.png", + "toolkit/themes/winstripe/global/media/scrubberThumbWide.png", + "toolkit/themes/winstripe/global/media/videocontrols.css" + ], + "components": [ + "Toolkit::Video/Audio Controls" + ], + "directories": [ + "toolkit/content", + "toolkit", + "toolkit/themes" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "e9a0a746f0fa37a354e71dc69d4810d49e736b1f", + "author": "Boris Zbarsky ", + "bug_id": 477014, + "desc": "Backed out changeset 524ab31ef073 (bug 477014) in an attempt to fix the unit test orange on Mac.", + "pushdate": "2009-04-13 19:35:35", + "backsout": [ + "524ab31ef073f6c265a2e8b6657794bae66619e1" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 24096643.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/base/content/tabbrowser.xml", + "browser/base/content/test/Makefile.in", + "browser/base/content/test/browser_bug477014.js", + "toolkit/content/widgets/browser.xml" + ], + "components": [], + "directories": [ + "browser/base", + "toolkit", + "browser", + "toolkit/content" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "d7567548bc8f4af71f62079afafb1e00f20c5405", + "author": "Boris Zbarsky ", + "bug_id": 487631, + "desc": "Backed out changeset 05fd6a9c8ff7 (bug 487631) on suspicion of causing Windows unit test orange in CLOSED TREE.", + "pushdate": "2009-04-13 21:50:07", + "backsout": [ + "05fd6a9c8ff7172fec210ebf36518785cc9853f0" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 24104715.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/content/tests/chrome/Makefile.in", + "toolkit/content/tests/chrome/window_largemenu.xul", + "toolkit/content/tests/widgets/Makefile.in", + "toolkit/content/tests/widgets/test_contextmenu_list.xul", + "toolkit/content/tests/widgets/test_popupincontent.xul" + ], + "components": [], + "directories": [ + "toolkit/content", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "1e9079e22c18aadb40ebe1eba26c2cbf531bcfc2", + "author": "Andreas Gal ", + "bug_id": 487845, + "desc": "Backed out changeset 4c157cfe2289 (bug 487845).", + "pushdate": "2009-04-15 21:40:40", + "backsout": [ + "4c157cfe22891e402bbbdac575c1483713e97200" + ], + "backedoutby": "", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 24832162.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jscntxt.h", + "js/src/jstracer.cpp", + "js/src/jstracer.h", + "js/src/trace-test.js" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "c221393049dcc32dfa4a15f763372da262a6f888", + "author": "Igor Bukanov ", + "bug_id": 480301, + "desc": "Backed out changeset f97f196dcb58 - bug 480301 needs more work", + "pushdate": "2009-04-16 00:13:30", + "backsout": [ + "f97f196dcb58542c4f2e242b0fa525e7f4242214" + ], + "backedoutby": "", + "author_email": "igor@mir2.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 26015911.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsapi.cpp", + "js/src/jsgc.cpp", + "js/src/jslock.cpp" + ], + "components": [ + "Core::JavaScript Engine" + ], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "64d7df1fe160a1e8f595e1d936c179699eba21ce", + "author": "Andreas Gal ", + "bug_id": 488203, + "desc": "Backed out changeset e8c23c42db7f (bug 488203) to see whether it causes the leak.", + "pushdate": "2009-04-18 15:37:12", + "backsout": [ + "e8c23c42db7f0165c370b45094780502d5d66936" + ], + "backedoutby": "062ea62f9bda22be55d94c71dc98e780d91342e6", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 25069554.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsinterp.cpp", + "js/src/jsinterp.h", + "js/src/jstracer.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "062ea62f9bda22be55d94c71dc98e780d91342e6", + "author": "Andreas Gal ", + "bug_id": 488203, + "desc": "Backed out changeset 64d7df1fe160 (re-landing 488203).", + "pushdate": "2009-04-18 15:37:12", + "backsout": [ + "64d7df1fe160a1e8f595e1d936c179699eba21ce" + ], + "backedoutby": "4273c0708552544e8a0317e84c02e515b0a02476", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 25069554.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsinterp.cpp", + "js/src/jsinterp.h", + "js/src/jstracer.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "4273c0708552544e8a0317e84c02e515b0a02476", + "author": "Andreas Gal ", + "bug_id": 488203, + "desc": "Backed out changeset 062ea62f9bda (backed out bug 488203 again).", + "pushdate": "2009-04-18 15:37:12", + "backsout": [ + "062ea62f9bda22be55d94c71dc98e780d91342e6" + ], + "backedoutby": "", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 25069554.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsinterp.cpp", + "js/src/jsinterp.h", + "js/src/jstracer.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "5bd1161481752fa00ec6154dddf36fa239dd0dcc", + "author": "Andreas Gal ", + "bug_id": 487204, + "desc": "Backed out changeset d1a4ee3d0c59 (bug 487204, due to possible leak).", + "pushdate": "2009-04-18 15:37:12", + "backsout": [ + "d1a4ee3d0c595c2697bd586697d399d337e09c2a" + ], + "backedoutby": "324bb9dc8372bc9353711fffa97ecaa9c61eef31", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 25069554.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsarray.cpp", + "js/src/jsbuiltins.cpp", + "js/src/jsinterp.cpp", + "js/src/jsinterp.h", + "js/src/jsobj.cpp", + "js/src/jsobj.h", + "js/src/jsscope.cpp", + "js/src/jsscope.h", + "js/src/jstracer.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "324bb9dc8372bc9353711fffa97ecaa9c61eef31", + "author": "Andreas Gal ", + "bug_id": 487204, + "desc": "Backed out changeset 5bd116148175 (attempting to re-land bug 487204).", + "pushdate": "2009-04-18 15:37:12", + "backsout": [ + "5bd1161481752fa00ec6154dddf36fa239dd0dcc" + ], + "backedoutby": "9c63c15b92b5b606f14fc7b07f51d9edf91cd6bd", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 25069554.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsarray.cpp", + "js/src/jsbuiltins.cpp", + "js/src/jsinterp.cpp", + "js/src/jsinterp.h", + "js/src/jsobj.cpp", + "js/src/jsobj.h", + "js/src/jsscope.cpp", + "js/src/jsscope.h", + "js/src/jstracer.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "9c63c15b92b5b606f14fc7b07f51d9edf91cd6bd", + "author": "Andreas Gal ", + "bug_id": 487204, + "desc": "Backed out changeset 324bb9dc8372 (bug 487204 is implicated in top site failures).", + "pushdate": "2009-04-18 15:37:12", + "backsout": [ + "324bb9dc8372bc9353711fffa97ecaa9c61eef31" + ], + "backedoutby": "", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 25069554.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsarray.cpp", + "js/src/jsbuiltins.cpp", + "js/src/jsinterp.cpp", + "js/src/jsinterp.h", + "js/src/jsobj.cpp", + "js/src/jsobj.h", + "js/src/jsscope.cpp", + "js/src/jsscope.h", + "js/src/jstracer.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "c0a409243f7b5262a069d05a91a70f160c4e55c8", + "author": "Igor Bukanov ", + "bug_id": 488414, + "desc": "Backed out changeset f4662701526b (bug 488414) to fix !JS_THREADSAFE compilation errors", + "pushdate": "2009-04-20 18:44:02", + "backsout": [ + "f4662701526b6c7d3402fdd8021b576a295218ec" + ], + "backedoutby": "", + "author_email": "igor@mir2.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 26428143.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsapi.cpp", + "js/src/jsbuiltins.cpp", + "js/src/jscntxt.cpp", + "js/src/jscntxt.h", + "js/src/jsgc.cpp", + "js/src/jsgc.h", + "js/src/jsinterp.cpp", + "js/src/jsinterp.h", + "js/src/jsobj.cpp", + "js/src/jsscope.cpp", + "js/src/jsscope.h" + ], + "components": [ + "Core::JavaScript Engine" + ], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "f58de2414f51ac92548b9b52e2ee85abc9b35456", + "author": "Joe Drew ", + "bug_id": 67752, + "desc": "Backed out changeset 6a452e522e07 - Boris Zbarsky \u2013 Bug 67752. Implement interruptible reflow. r=roc,dbaron - because of apparent Tp hangs.", + "pushdate": "2009-04-22 03:13:36", + "backsout": [ + "6a452e522e0775c1993c41085fb2851acd3aaf5b" + ], + "backedoutby": "", + "author_email": "joe@drew.ca", + "reviewers": [ + "dbaron", + "roc" + ], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 21236144.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/base/public/mozFlushType.h", + "content/base/src/nsDocument.cpp", + "content/events/src/nsEventStateManager.cpp", + "content/html/content/src/nsGenericHTMLElement.cpp", + "content/html/document/src/nsHTMLContentSink.cpp", + "content/xml/document/src/nsXMLContentSink.cpp", + "layout/base/nsIPresShell.h", + "layout/base/nsPresContext.cpp", + "layout/base/nsPresContext.h", + "layout/base/nsPresShell.cpp", + "layout/generic/nsAbsoluteContainingBlock.cpp", + "layout/generic/nsAbsoluteContainingBlock.h", + "layout/generic/nsBlockFrame.cpp", + "layout/generic/nsBlockFrame.h", + "layout/generic/nsColumnSetFrame.cpp", + "layout/generic/nsGfxScrollFrame.cpp", + "layout/generic/nsLineLayout.cpp", + "layout/reftests/bugs/67752-1-ref.html", + "layout/reftests/bugs/67752-1.html", + "layout/reftests/bugs/67752-2-ref.html", + "layout/reftests/bugs/67752-2.html", + "layout/reftests/bugs/reftest.list", + "layout/svg/base/src/nsSVGForeignObjectFrame.cpp", + "widget/public/nsIWidget.h", + "widget/src/cocoa/nsAppShell.mm", + "widget/src/cocoa/nsChildView.h", + "widget/src/cocoa/nsChildView.mm", + "widget/src/cocoa/nsCocoaWindow.h", + "widget/src/cocoa/nsCocoaWindow.mm", + "widget/src/gtk2/nsWindow.cpp", + "widget/src/gtk2/nsWindow.h", + "widget/src/os2/nsWindow.cpp", + "widget/src/os2/nsWindow.h", + "widget/src/windows/nsWindow.cpp", + "widget/src/windows/nsWindow.h", + "widget/src/xpwidgets/nsBaseWidget.cpp", + "widget/src/xpwidgets/nsBaseWidget.h" + ], + "components": [ + "Core::Layout: Columns", + "Core::Layout: Block and Inline", + "Core::Layout", + "Core::Layout: Scrolling and Overflow", + "Core::Layout: Positioned" + ], + "directories": [ + "widget", + "layout/generic", + "layout/svg", + "content/base", + "content", + "widget/public", + "widget/src", + "content/html", + "content/xml", + "layout", + "layout/base", + "content/events", + "layout/reftests" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "1a1611bb10630cda771042ef8089b7b6060c3f55", + "author": "Ehsan Akhgari ", + "bug_id": 489585, + "desc": "Backed out changeset 88f76db49467 (bug 489585) due to test failures on OS X", + "pushdate": "2009-04-23 07:16:09", + "backsout": [ + "88f76db49467b87ce93ed43653b5855d19e6bcc9" + ], + "backedoutby": "", + "author_email": "ehsan.akhgari@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 24662635.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "netwerk/test/unit/test_bug248970_cache.js" + ], + "components": [ + "Core::Networking" + ], + "directories": [ + "netwerk/test", + "netwerk" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "a0e5385d86c43e251b192f74e88de4b35753172f", + "author": "D\u00e3o Gottwald ", + "bug_id": 487250, + "desc": "Backed out changeset 69f84bd26700 (bug 487250) to fix browser_privatebrowsing_searchbar.js failure", + "pushdate": "2009-04-23 09:48:27", + "backsout": [ + "69f84bd267008c385528fcb71c8fa9c842d6bde6" + ], + "backedoutby": "", + "author_email": "dao@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 27286570.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/base/content/browser.css", + "browser/themes/pinstripe/browser/browser.css", + "browser/themes/pinstripe/browser/searchbar.css", + "toolkit/content/tests/widgets/test_textbox_emptytext.xul", + "toolkit/content/textbox.css", + "toolkit/content/widgets/textbox.xml", + "toolkit/themes/gnomestripe/global/textbox.css", + "toolkit/themes/pinstripe/global/textbox.css", + "toolkit/themes/winstripe/global/textbox-aero.css", + "toolkit/themes/winstripe/global/textbox.css" + ], + "components": [ + "Firefox::General" + ], + "directories": [ + "browser/base", + "toolkit/content", + "toolkit", + "browser/themes", + "browser", + "toolkit/themes" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "0cb354f894d1ca1c72edf04893250e2d2513021c", + "author": "Ehsan Akhgari ", + "bug_id": 490879, + "desc": "Backout revision 12536e9936b2 (bug 490879) because of unknown potential problems for Thunderbird 3.next", + "pushdate": "2009-05-03 18:02:56", + "backsout": [ + "12536e9936b2c43538eb5803937d5314ec3c4cf8" + ], + "backedoutby": "", + "author_email": "ehsan.akhgari@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 25565442.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "editor/libeditor/html/nsHTMLDataTransfer.cpp", + "editor/libeditor/html/tests/Makefile.in", + "editor/libeditor/html/tests/green.png", + "editor/libeditor/html/tests/test_bug490879.xul" + ], + "components": [], + "directories": [ + "editor/libeditor", + "editor" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "38512deaca7e5ca4fcd39ca9c60f2640fa3ad773", + "author": "Andreas Gal ", + "bug_id": 491013, + "desc": "Backed out changeset 6534f8b9aa74 (bug 491013, assert on startup).", + "pushdate": "2009-05-05 18:41:02", + "backsout": [ + "6534f8b9aa74ba67ee31dc87e5250eeeb3c185aa" + ], + "backedoutby": "", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 26549384.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsapi.cpp", + "js/src/jsfun.cpp", + "js/src/jsfun.h", + "js/src/jsinterp.cpp", + "js/src/jsobj.cpp", + "js/src/jsobj.h", + "js/src/jsproto.tbl", + "js/src/jsregexp.cpp", + "js/src/jsregexp.h", + "js/src/jsscope.cpp", + "js/src/jsscript.cpp", + "js/src/jsxdrapi.h", + "js/src/jsxml.cpp", + "js/src/jsxml.h" + ], + "components": [ + "Core::JavaScript Engine" + ], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "f2151b06463e21d8546b27ffaf382a68c6314251", + "author": "Josh Aas ", + "bug_id": 491834, + "desc": "Backed out changeset 7df4317278f5, bug 491834.", + "pushdate": "2009-05-07 13:25:33", + "backsout": [ + "7df4317278f56284fa394c0681a542f74275ce3c" + ], + "backedoutby": "", + "author_email": "joshmoz@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 27162294.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "modules/plugin/base/src/nsPluginDirServiceProvider.cpp", + "modules/plugin/base/src/nsPluginHostImpl.cpp", + "modules/plugin/base/src/nsPluginHostImpl.h" + ], + "components": [], + "directories": [ + "modules/plugin", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "d525ab89ac0229543a0c14d0cfe1bd1ead465090", + "author": "Josh Aas ", + "bug_id": 480080, + "desc": "Backed out changeset 9f9b05760fff, bug 480080, to see if it fixes orange", + "pushdate": "2009-05-08 17:43:16", + "backsout": [ + "9f9b05760fffaf3a5ec11c1ad4fd51514a4e7aa3" + ], + "backedoutby": "", + "author_email": "joshmoz@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 27264157.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/components/viewsource/content/viewSource.js" + ], + "components": [], + "directories": [ + "toolkit/components", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "c60c37d487cae83cbcbb7db59b1b867d6eba27e2", + "author": "Shawn Wilsher ", + "bug_id": 490833, + "desc": "Backed out changeset b6f09258a505 (bug 490833).", + "pushdate": "2009-05-09 02:58:20", + "backsout": [ + "b6f09258a505f54e81d64221d35b096d68e7a844" + ], + "backedoutby": "", + "author_email": "me@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 14017201.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "storage/public/mozIStorageStatement.idl", + "storage/src/mozStorageStatement.cpp", + "storage/src/mozStorageStatementParams.cpp", + "storage/test/unit/test_storage_statement.js" + ], + "components": [ + "Toolkit::Storage" + ], + "directories": [ + "storage/src", + "storage", + "storage/test", + "storage/public" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "88df6943633f8f75d3df5460ae720d860f4307a1", + "author": "Steven Michaud ", + "bug_id": 489864, + "desc": "Backed out changeset add33a95e3ef to fix talos crashes. b=489864", + "pushdate": "2009-05-11 20:41:08", + "backsout": [ + "add33a95e3ef643243db7d287251cacbadecf515" + ], + "backedoutby": "", + "author_email": "smichaud@pobox.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 27487690.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "docshell/build/nsDocShellModule.cpp", + "modules/libpr0n/decoders/icon/mac/nsIconChannelCocoa.mm", + "netwerk/mime/public/nsIMIMEInfo.idl", + "uriloader/exthandler/Makefile.in", + "uriloader/exthandler/mac/nsInternetConfig.h", + "uriloader/exthandler/mac/nsInternetConfig.mm", + "uriloader/exthandler/mac/nsInternetConfigService.h", + "uriloader/exthandler/mac/nsInternetConfigService.mm", + "uriloader/exthandler/mac/nsMIMEInfoMac.mm", + "uriloader/exthandler/mac/nsOSHelperAppService.h", + "uriloader/exthandler/mac/nsOSHelperAppService.mm", + "uriloader/exthandler/nsExternalHelperAppService.cpp", + "uriloader/exthandler/nsIInternetConfigService.idl", + "uriloader/exthandler/nsMIMEInfoImpl.cpp", + "uriloader/exthandler/nsMIMEInfoImpl.h", + "widget/src/cocoa/nsLookAndFeel.mm" + ], + "components": [ + "Firefox::File Handling", + "Core::DOM: Navigation" + ], + "directories": [ + "widget", + "netwerk", + "modules/libpr0n", + "docshell", + "netwerk/mime", + "widget/src", + "uriloader", + "uriloader/exthandler", + "docshell/build", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "29692abf4c295b6018f546a3a68e6309bf57cafd", + "author": "Jonas Sicking ", + "bug_id": 492037, + "desc": "Backed out changeset 888aff8f57d2. Bug 492037", + "pushdate": "2009-05-13 00:05:00", + "backsout": [ + "888aff8f57d2309ea008b3aa86f865f4a1775948" + ], + "backedoutby": "", + "author_email": "jonas@sicking.cc", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 24283315.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/xul/templates/src/crashtests/441785-1.xul", + "content/xul/templates/src/nsXULTreeBuilder.cpp" + ], + "components": [], + "directories": [ + "content/xul", + "content" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "9a308a1a5a9436005c74d7209fbe1e84dc836283", + "author": "Andreas Gal ", + "bug_id": 492664, + "desc": "Backed out changeset c8a74fe0f9af (bug 492664).", + "pushdate": "2009-05-13 03:21:33", + "backsout": [ + "c8a74fe0f9af820db21be004f0aaabea1c085b8b" + ], + "backedoutby": "", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 27185415.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jstracer.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "3415a6e08696e5c501a8dc98e69cae825c33247d", + "author": "Peter Van der Beken ", + "bug_id": 492483, + "desc": "Backed out changeset 3e3d2d8cc70f (bug 492483 - fixing !JS_THREADSAFE build failure.) to try to fix Tshutdown regression.", + "pushdate": "2009-05-15 14:40:55", + "backsout": [ + "3e3d2d8cc70f30d55765cf414c69977ec1c2f266" + ], + "backedoutby": "", + "author_email": "peterv@propagandism.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 28334282.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jscntxt.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "0f55d91d7724eccced6bc37570f08ec59c6c7ec0", + "author": "Peter Van der Beken ", + "bug_id": 490592, + "desc": "Backed out changeset 5e867032abe5 (Fix for bug 490592 (Possible to GC way too much during shutdown due to XUL and XBL prototypes).) to try to fix Tshutdown regression.", + "pushdate": "2009-05-15 14:40:55", + "backsout": [ + "5e867032abe58fde99cb01a689dc456eb47c98ea" + ], + "backedoutby": "", + "author_email": "peterv@propagandism.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 28334282.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/xbl/src/nsXBLDocumentInfo.cpp", + "content/xul/document/src/nsXULPrototypeDocument.cpp", + "dom/base/nsDOMScriptObjectFactory.cpp", + "js/src/xpconnect/loader/mozJSComponentLoader.cpp" + ], + "components": [], + "directories": [ + "js/src", + "dom/base", + "dom", + "content/xul", + "content", + "content/xbl", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "e720085bf9ba7617e54c9e64888e6fa91830268d", + "author": "Josh Aas ", + "bug_id": 488042, + "desc": "Backed out changeset 7ff6eeaad3d1, bug 488042", + "pushdate": "2009-05-16 06:06:11", + "backsout": [ + "7ff6eeaad3d16a34be7d2cf3a0cb685693fde65f" + ], + "backedoutby": "", + "author_email": "joshmoz@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 27913532.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "modules/plugin/base/src/nsPluginDirServiceProvider.cpp", + "modules/plugin/base/src/nsPluginHostImpl.cpp", + "modules/plugin/base/src/nsPluginHostImpl.h", + "modules/plugin/base/src/nsPluginsDirWin.cpp" + ], + "components": [], + "directories": [ + "modules/plugin", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "fb7f8956aff514c965cbe93b858369fe02d48cc9", + "author": "Peter Van der Beken ", + "bug_id": 475737, + "desc": "Backed out changeset 0c8d4f846be8 (Fix for bug 475737 (Windows stay alive too long because nsJSContext doesn't unlink correctly).) to try to fix Tshutdown regression.", + "pushdate": "2009-05-16 14:18:37", + "backsout": [ + "0c8d4f846be88e2b6c7c0ca131e51b4876c83bbd" + ], + "backedoutby": "", + "author_email": "peterv@propagandism.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 28419344.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "dom/base/nsJSEnvironment.cpp", + "dom/base/nsJSEnvironment.h", + "js/src/jscntxt.cpp", + "js/src/xpconnect/src/xpcjsruntime.cpp", + "xpcom/base/nsAgg.h", + "xpcom/glue/nsCycleCollectionParticipant.h" + ], + "components": [ + "Core::DOM: Core & HTML" + ], + "directories": [ + "xpcom/glue", + "js/src", + "xpcom/base", + "dom/base", + "dom", + "xpcom", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "6e86393b03ad1e2e801dfc1b26d81f39a3087f4e", + "author": "Josh Aas ", + "bug_id": 488181, + "desc": "Backed out changeset accd95d7ba9d. [OS/2] fix build break following bug 488181", + "pushdate": "2009-05-17 01:11:47", + "backsout": [ + "accd95d7ba9d1a85a2fbc2dfe3a0d8a3f9492018" + ], + "backedoutby": "", + "author_email": "joshmoz@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 27982268.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "modules/plugin/base/src/nsPluginsDirOS2.cpp" + ], + "components": [], + "directories": [ + "modules/plugin", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "687daa472dd409cc7a175a7cf8fbe5b056296734", + "author": "Josh Aas ", + "bug_id": 488181, + "desc": "Backed out changeset 7cd22106e8d9. Simplify code for exposing plugin file names vs. full path. b=488181", + "pushdate": "2009-05-17 01:11:47", + "backsout": [ + "7cd22106e8d9784eed2acc3c063f716ffaf2605e" + ], + "backedoutby": "", + "author_email": "joshmoz@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 27982268.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "dom/locales/en-US/chrome/plugins.properties", + "modules/plugin/base/src/nsPluginHostImpl.cpp", + "modules/plugin/base/src/nsPluginsDirBeOS.cpp", + "modules/plugin/base/src/nsPluginsDirOS2.cpp", + "modules/plugin/base/src/nsPluginsDirUnix.cpp", + "modules/plugin/base/src/nsPluginsDirWin.cpp", + "toolkit/content/plugins.html" + ], + "components": [], + "directories": [ + "toolkit/content", + "toolkit", + "modules/plugin", + "dom/locales", + "dom", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "e3b0b664e5ddfc425fd84409b6dc8678508a4487", + "author": "Shawn Wilsher ", + "bug_id": 486974, + "desc": "Backed out changeset d88e6b8fab83 (bug 486974) due to reftest parsing issues.", + "pushdate": "2009-05-18 16:32:46", + "backsout": [ + "d88e6b8fab83f1f7fbbec25484a74e10cefbac7f" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 30069935.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "gfx/thebes/crashtests/486974-1.html", + "gfx/thebes/crashtests/crashtests.list" + ], + "components": [], + "directories": [ + "gfx/thebes", + "gfx" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "6fecf8267e038e5e6709c46c8c37035539e1c220", + "author": "Shawn Wilsher ", + "bug_id": 493560, + "desc": "Backed out changeset 4480c18255f2 (bug 493560)", + "pushdate": "2009-05-19 20:47:31", + "backsout": [ + "4480c18255f27af5832ca804bec4dae58bdb8561" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 30171620.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "db/sqlite3/src/sqlite3.c", + "db/sqlite3/src/sqlite3.h" + ], + "components": [], + "directories": [ + "db/sqlite3", + "db" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "e54a1c608d8cb0e3a801b9928c6b8bb7b7080cca", + "author": "Shawn Wilsher ", + "bug_id": 493560, + "desc": "Backed out changeset dd3d70e5849e (bug 493560)", + "pushdate": "2009-05-19 20:47:31", + "backsout": [ + "dd3d70e5849edf509953ab09422c6f49fec969d8" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 30171620.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "configure.in", + "db/sqlite3/README.MOZILLA" + ], + "components": [], + "directories": [ + "db/sqlite3", + "db" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "c4cea7365f4e9199f0da846b74fee206d42b4c91", + "author": "Andreas Gal ", + "bug_id": 493657, + "desc": "Backed out changeset cec8ee353407 (bug 493657).", + "pushdate": "2009-05-20 16:22:49", + "backsout": [ + "cec8ee353407eb98805af87a926b19746139784b" + ], + "backedoutby": "8f6c242a75ffee31f467c7d81fea114d226a4fd8", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 27837091.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jstracer.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "8f6c242a75ffee31f467c7d81fea114d226a4fd8", + "author": "Andreas Gal ", + "bug_id": 493657, + "desc": "Backed out changeset c4cea7365f4e (re-landing 493657).", + "pushdate": "2009-05-20 16:22:49", + "backsout": [ + "c4cea7365f4e9199f0da846b74fee206d42b4c91" + ], + "backedoutby": "a18035c7c3d2016c4b347d5a6e4109f402125b80", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 27837091.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jstracer.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "a18035c7c3d2016c4b347d5a6e4109f402125b80", + "author": "Andreas Gal ", + "bug_id": 493657, + "desc": "Backed out changeset 8f6c242a75ff (backing out bug 493657 again).", + "pushdate": "2009-05-20 16:22:49", + "backsout": [ + "8f6c242a75ffee31f467c7d81fea114d226a4fd8" + ], + "backedoutby": "", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 27837091.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jstracer.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "288e71bdc98a83a5b891129aa9ef4bf329f53866", + "author": "L. David Baron ", + "bug_id": 480205, + "desc": "Backed out changeset 1abeb6c87131 (Bug 480205 - Implement a wrapper for exposing chrome objects to content (aka COWs)) due to mochitest failures and leaks.", + "pushdate": "2009-05-21 10:58:20", + "backsout": [ + "1abeb6c87131ef99f9a4b84ff3d0c6ddb3ba1e2a" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 32112021.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/components/feeds/src/FeedWriter.js", + "dom/base/nsDOMClassInfo.cpp", + "dom/base/nsDOMClassInfo.h", + "js/src/xpconnect/idl/nsIXPConnect.idl", + "js/src/xpconnect/src/Makefile.in", + "js/src/xpconnect/src/XPCChromeObjectWrapper.cpp", + "js/src/xpconnect/src/XPCWrapper.h", + "js/src/xpconnect/src/nsXPConnect.cpp", + "js/src/xpconnect/src/xpcconvert.cpp", + "js/src/xpconnect/src/xpcjsruntime.cpp", + "js/src/xpconnect/src/xpcprivate.h", + "js/src/xpconnect/src/xpcwrappednative.cpp" + ], + "components": [], + "directories": [ + "js/src", + "dom/base", + "browser/components", + "dom", + "browser", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "10908cb7ea5b38e13b19eb0f1d71cdc713054d4d", + "author": "Benjamin Smedberg ", + "bug_id": 326628, + "desc": "Backed out changeset eea9639048b8, bug 326628 main patch, due to regression bug 494899", + "pushdate": "2009-05-27 13:28:12", + "backsout": [ + "eea9639048b867e81504e14b46515a1f07bfaef9" + ], + "backedoutby": "", + "author_email": "benjamin@smedbergs.us", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 37399128.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "dom/base/nsDOMClassInfo.cpp", + "dom/base/nsDOMClassInfoID.h", + "dom/base/nsGlobalWindow.cpp", + "dom/base/nsGlobalWindow.h", + "dom/interfaces/base/Makefile.in", + "dom/interfaces/base/nsIDOMPkcs11.idl", + "security/manager/ssl/public/Makefile.in", + "security/manager/ssl/public/nsIPKCS11.idl", + "security/manager/ssl/src/nsCrypto.cpp", + "security/manager/ssl/src/nsCrypto.h" + ], + "components": [], + "directories": [ + "dom/interfaces", + "security", + "dom/base", + "dom", + "security/manager" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "4156a420a7325be68b97f67bf1d7b3fdb07bdc07", + "author": "Benjamin Smedberg ", + "bug_id": 326628, + "desc": "Backed out changeset 1aaacee9b2d0, bug 326628 string removal due to regression bug 494899", + "pushdate": "2009-05-27 13:28:12", + "backsout": [ + "1aaacee9b2d0b18915088807125c0103767c358b" + ], + "backedoutby": "", + "author_email": "benjamin@smedbergs.us", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 37399128.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "security/manager/locales/en-US/chrome/pipnss/pipnss.properties" + ], + "components": [ + "Core::Security: PSM" + ], + "directories": [ + "security/manager", + "security" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "a0154ac712c96a49c13a43bae52c8fa00dc75aa4", + "author": "Benjamin Smedberg ", + "bug_id": 487980, + "desc": "Backed out changeset c41b9f3a9d83 - bug 487980 due to backing out 326628, due to regression bug 494899", + "pushdate": "2009-05-27 13:28:12", + "backsout": [ + "c41b9f3a9d83a8f9194b5103f22454642e46cf21" + ], + "backedoutby": "", + "author_email": "benjamin@smedbergs.us", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 37399128.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "dom/base/nsGlobalWindow.cpp", + "dom/interfaces/base/domstubs.idl", + "dom/interfaces/base/nsIDOMWindowInternal.idl" + ], + "components": [ + "Core::DOM: Core & HTML" + ], + "directories": [ + "dom", + "dom/interfaces", + "dom/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "30aa3539cedca522384c7a574ecfab59902cb40b", + "author": "Dave Townsend ", + "bug_id": 481406, + "desc": "Backed out changeset ddd616e58309 from bug 481406 due to tinderbox shortlog\nspam", + "pushdate": "2009-05-28 11:20:17", + "backsout": [ + "ddd616e583093f3079a7a6c29f55ef39bdf27fff" + ], + "backedoutby": "", + "author_email": "dtownsend@oxymoronical.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 31019775.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "testing/mochitest/browser-harness.xul", + "testing/mochitest/browser-test.js", + "testing/mochitest/tests/browser/browser_pass.js" + ], + "components": [ + "Testing::Mochitest" + ], + "directories": [ + "testing/mochitest", + "testing" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "f5e133f0c13282882e632df0129993dbeb36b51b", + "author": "Andreas Gal ", + "bug_id": 496482, + "desc": "Backed out changeset 17664f5cab40 (bug 496482, also backing out the bug that introduced this bug).", + "pushdate": "2009-06-05 08:41:32", + "backsout": [ + "17664f5cab40ca0cb7b807ae1e5b02898ba7371e" + ], + "backedoutby": "", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 29191814.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jstracer.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "47ae3c6dcf9ee2b9783fa4e2f9642965b035294a", + "author": "Andreas Gal ", + "bug_id": 495958, + "desc": "Backed out changeset 2ad658e9f42a (bug 495958, re-opened).", + "pushdate": "2009-06-05 08:41:32", + "backsout": [ + "2ad658e9f42ad5e92d0fe3439c464c21f1d32ce3" + ], + "backedoutby": "", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 29191814.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jstracer.cpp", + "js/src/jstracer.h" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "6bced1a34c8f04226e23cc7021fe4fe6ebf68c92", + "author": "Markus Stange ", + "bug_id": 482681, + "desc": "Backed out changeset 04f5a3303ebf, bug 482681 due to test failures", + "pushdate": "2009-06-11 11:15:19", + "backsout": [ + "04f5a3303ebf0c3c67c4872f028b4838eea84a68" + ], + "backedoutby": "", + "author_email": "mstange@themasta.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 29929415.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/themes/pinstripe/global/button.css", + "toolkit/themes/pinstripe/global/global.css" + ], + "components": [], + "directories": [ + "toolkit/themes", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "97e7f0da28d6c7c4e311a49eefd8c218ca563b7d", + "author": "Shawn Wilsher ", + "bug_id": 483980, + "desc": "Backed out changeset d891a7418d95 (bug 483980)", + "pushdate": "2009-06-11 23:08:59", + "backsout": [ + "d891a7418d9514991182f2a9df9e360ebd0848db" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 32167308.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/components/places/tests/unit/head_bookmarks.js", + "browser/components/places/tests/unit/tail_bookmarks.js", + "toolkit/components/places/src/nsNavBookmarks.cpp", + "toolkit/components/places/src/nsNavBookmarks.h", + "toolkit/components/places/src/nsNavHistory.cpp", + "toolkit/components/places/src/nsNavHistory.h", + "toolkit/components/places/src/nsNavHistoryExpire.cpp", + "toolkit/components/places/src/nsPlacesDBFlush.js", + "toolkit/components/places/src/nsPlacesMacros.h", + "toolkit/components/places/tests/autocomplete/head_000.js", + "toolkit/components/places/tests/autocomplete/tail_autocomplete.js", + "toolkit/components/places/tests/bookmarks/head_bookmarks.js", + "toolkit/components/places/tests/bookmarks/tail_bookmarks.js", + "toolkit/components/places/tests/bookmarks/test_384228.js", + "toolkit/components/places/tests/bookmarks/test_448584.js", + "toolkit/components/places/tests/queries/head_queries.js", + "toolkit/components/places/tests/queries/tail_queries.js", + "toolkit/components/places/tests/sync/head_sync.js", + "toolkit/components/places/tests/sync/tail_sync.js", + "toolkit/components/places/tests/unit/head_bookmarks.js", + "toolkit/components/places/tests/unit/nsDummyObserver.js", + "toolkit/components/places/tests/unit/tail_bookmarks.js", + "toolkit/components/places/tests/unit/test_000_frecency.js", + "toolkit/components/places/tests/unit/test_421180.js", + "toolkit/components/places/tests/unit/test_454977.js", + "toolkit/components/places/tests/unit/test_bookmark_catobs.js", + "toolkit/components/places/tests/unit/test_history.js", + "toolkit/components/places/tests/unit/test_history_catobs.js", + "toolkit/components/places/tests/unit/test_migrateFrecency.js" + ], + "components": [ + "Firefox::Bookmarks & History", + "Toolkit::Places" + ], + "directories": [ + "toolkit/components", + "browser/components", + "toolkit", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "06027b3d50d99bb1d03ed761fb8c6e99597b718f", + "author": "Shawn Wilsher ", + "bug_id": 119061, + "desc": "Backed out changeset f3fcd36fcbd1 (bug 119061) for linux orange.", + "pushdate": "2009-06-11 23:58:06", + "backsout": [ + "f3fcd36fcbd190362e1869607d5387e23a892a51" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 32170255.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/svg/content/test/Makefile.in", + "content/svg/content/test/test_moveUnderMouse.xhtml", + "layout/reftests/svg/dynamic-move-under-mouse.svg", + "layout/reftests/svg/reftest.list", + "layout/svg/base/src/nsSVGOuterSVGFrame.cpp" + ], + "components": [ + "Core::SVG" + ], + "directories": [ + "layout/svg", + "content", + "content/svg", + "layout/reftests", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "f0b1b5b7ae6269b70c953d939a9231beb7c53472", + "author": "Marco Zehe ", + "bug_id": 493723, + "desc": "Backed out changeset 2928cc356e14 of bug 493723 to fix screen reader bustage", + "pushdate": "2009-06-12 14:32:48", + "backsout": [ + "2928cc356e14d01ffe4670a9657c5e7cc90970e4" + ], + "backedoutby": "", + "author_email": "marco.zehe@googlemail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 32146482.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "accessible/src/atk/Makefile.in", + "accessible/src/atk/nsARIAGridAccessibleWrap.h", + "accessible/src/base/nsAccessibilityService.cpp", + "accessible/src/mac/Makefile.in", + "accessible/src/mac/nsARIAGridAccessibleWrap.h", + "accessible/src/msaa/Makefile.in", + "accessible/src/msaa/nsARIAGridAccessibleWrap.cpp", + "accessible/src/msaa/nsARIAGridAccessibleWrap.h", + "accessible/src/other/Makefile.in", + "accessible/src/other/nsARIAGridAccessibleWrap.h" + ], + "components": [], + "directories": [ + "accessible/src", + "accessible" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "be99fcdb6addb56c5bd73d9b18fda04490ac7eda", + "author": "Karl Tomlinson ", + "bug_id": 450930, + "desc": "backout 06a7d2def034 and 58c89ce9719d as possible cause of failure in test_bug450930.xhtml", + "pushdate": "2009-06-15 06:41:26", + "backsout": [ + "06a7d2def034ecb21b9fb5658dcc1fe090e1b586" + ], + "backedoutby": "", + "author_email": "karlt+@karlt.net", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 29647662.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "gfx/thebes/public/gfxAtsuiFonts.h", + "gfx/thebes/public/gfxCoreTextFonts.h", + "gfx/thebes/src/gfxAtsuiFonts.cpp", + "gfx/thebes/src/gfxCoreTextFonts.cpp", + "gfx/thebes/src/gfxWindowsFonts.cpp", + "layout/reftests/bugs/308406-1-ref.html", + "layout/reftests/bugs/308406-1.html", + "layout/reftests/bugs/308406-2-ref.html", + "layout/reftests/bugs/308406-2.html", + "layout/reftests/bugs/363858-5-ref.html", + "layout/reftests/bugs/363858-5a.html", + "layout/reftests/bugs/363858-5b.html", + "layout/reftests/bugs/363858-6-ref.html", + "layout/reftests/bugs/363858-6a.html", + "layout/reftests/bugs/363858-6b.html", + "layout/reftests/bugs/387876-1-ref.html", + "layout/reftests/bugs/387876-1.html", + "layout/reftests/bugs/reftest.list" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "layout/reftests", + "gfx/thebes", + "gfx", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "72f6372d784a147d2335c0371aca0602ae0678d7", + "author": "Arpad Borsos ", + "bug_id": 493701, + "desc": "Back out 7d502207183d (Bug 493701), it really did cause the windows dhtml regression", + "pushdate": "2009-06-16 12:44:37", + "backsout": [ + "7d502207183da020cfe9071055394ce9dc9df77d" + ], + "backedoutby": "", + "author_email": "arpad.borsos@googlemail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 31847699.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "uriloader/base/nsDocLoader.cpp", + "xpcom/tests/TestObserverArray.cpp" + ], + "components": [ + "Core::DOM: Navigation" + ], + "directories": [ + "uriloader/base", + "xpcom/tests", + "xpcom", + "uriloader" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "f9c14b122aa2ead4b62b6c3329c28d014cf711a3", + "author": "Arpad Borsos ", + "bug_id": 474369, + "desc": "Back out b8e531a6c961 (Bug 474369), it really did cause the windows dhtml regression", + "pushdate": "2009-06-16 12:44:37", + "backsout": [ + "b8e531a6c961d7e4814efb7a0bb24c3ebfd3aacd" + ], + "backedoutby": "", + "author_email": "arpad.borsos@googlemail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 31847699.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "caps/include/nsPrincipal.h", + "caps/src/nsPrincipal.cpp", + "chrome/src/nsChromeRegistry.cpp", + "chrome/src/nsChromeRegistry.h", + "db/morkreader/nsMorkReader.cpp", + "docshell/base/nsDocShell.cpp", + "dom/base/nsIDOMClassInfo.h", + "dom/src/storage/nsDOMStorage.h", + "editor/libeditor/base/nsSelectionState.cpp", + "editor/txmgr/src/nsTransactionManager.cpp", + "embedding/components/commandhandler/src/nsCommandGroup.h", + "extensions/java/xpcom/src/nsJavaXPTCStub.cpp", + "extensions/java/xpcom/src/nsJavaXPTCStub.h", + "extensions/layout-debug/src/nsRegressionTester.cpp", + "extensions/pref/system-pref/src/gconf/nsSystemPrefService.cpp", + "extensions/pref/system-pref/src/gconf/nsSystemPrefService.h", + "extensions/spellcheck/src/mozPersonalDictionary.h", + "extensions/spellcheck/src/mozSpellChecker.h", + "intl/locale/src/nsLocale.cpp", + "layout/inspector/src/inCSSValueSearch.cpp", + "layout/style/nsCSSRuleProcessor.cpp", + "modules/libpref/src/nsPrefBranch.cpp", + "modules/libpref/src/nsPrefBranch.h", + "netwerk/cache/src/nsCacheService.cpp", + "security/manager/ssl/src/nsKeygenHandler.cpp", + "security/manager/ssl/src/nsKeygenHandler.h", + "tools/trace-malloc/leaksoup.cpp", + "uriloader/base/nsDocLoader.cpp", + "uriloader/base/nsDocLoader.h", + "view/src/nsViewManager.cpp", + "view/src/nsViewManager.h", + "xpcom/glue/nsTObserverArray.h", + "xpinstall/src/nsXPITriggerInfo.h" + ], + "components": [ + "Core::Spelling checker", + "Core::DOM: Navigation" + ], + "directories": [ + "xpcom/glue", + "modules/libpref", + "docshell/base", + "extensions/java", + "extensions/layout-debug", + "dom/base", + "editor", + "view", + "uriloader", + "caps/include", + "db", + "modules", + "embedding/components", + "netwerk", + "uriloader/base", + "caps/src", + "dom", + "extensions", + "layout/inspector", + "chrome/src", + "layout/style", + "layout", + "xpinstall", + "tools/trace-malloc", + "dom/src", + "extensions/spellcheck", + "netwerk/cache", + "docshell", + "caps", + "view/src", + "editor/txmgr", + "security/manager", + "xpcom", + "db/morkreader", + "intl/locale", + "xpinstall/src", + "editor/libeditor", + "embedding", + "extensions/pref", + "security", + "intl", + "tools", + "chrome" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "83ba7296195e738749ce695f89d242ea98d4bcc6", + "author": "Shawn Wilsher ", + "bug_id": 490085, + "desc": "Backed out changeset d546bd2c46a4 (bug 490085) because it's broken (and thunderbird's test caught it)", + "pushdate": "2009-06-17 20:45:30", + "backsout": [ + "d546bd2c46a4271215bbae1cbe87fdc6975afe21" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 32677099.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "storage/public/Makefile.in", + "storage/public/mozIStorageBindingParams.idl", + "storage/public/mozIStorageBindingParamsArray.idl", + "storage/public/mozIStorageStatement.idl", + "storage/src/Makefile.in", + "storage/src/mozStorageAsyncStatementExecution.cpp", + "storage/src/mozStorageAsyncStatementExecution.h", + "storage/src/mozStorageBindingParams.cpp", + "storage/src/mozStorageBindingParams.h", + "storage/src/mozStorageBindingParamsArray.cpp", + "storage/src/mozStorageBindingParamsArray.h", + "storage/src/mozStorageConnection.cpp", + "storage/src/mozStorageStatement.cpp", + "storage/src/mozStorageStatement.h", + "storage/src/mozStorageStatementData.h", + "storage/test/unit/test_connection_executeAsync.js", + "storage/test/unit/test_statement_executeAsync.js", + "storage/test/unit/test_storage_statement_executeAsync.js" + ], + "components": [ + "Toolkit::Storage" + ], + "directories": [ + "storage/src", + "storage", + "storage/test", + "storage/public" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "78f649cdd7f81ab9a45d60a6daecb16f44aa4d26", + "author": "Igor Bukanov ", + "bug_id": 498899, + "desc": "Backed out changeset 7ab1be136cfa - that patch for bug 498899 has a bug.", + "pushdate": "2009-06-19 13:23:15", + "backsout": [ + "7ab1be136cfa78376328f6de33f80d110a62149f" + ], + "backedoutby": "", + "author_email": "igor@mir2.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 31592896.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsinterp.cpp", + "js/src/jsinterp.h", + "js/src/jslock.cpp", + "js/src/jslock.h" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "1e873ec2be87523bc8b5a77e581859eef40a6151", + "author": "Shawn Wilsher ", + "bug_id": 488148, + "desc": "Backed out changeset 0997bcc75daf (bug 488148). Silly me - this patch is wrong!", + "pushdate": "2009-06-19 19:22:34", + "backsout": [ + "0997bcc75daf217886ccf010cdb0b37dc3e30b26" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 32844923.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "storage/src/mozStorageAsyncStatementExecution.cpp", + "storage/src/mozStorageAsyncStatementExecution.h", + "storage/src/mozStorageConnection.cpp", + "storage/src/mozStorageConnection.h" + ], + "components": [], + "directories": [ + "storage/src", + "storage" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "3ffbe0634669f82d3b3b6a3f81b3080058575301", + "author": "Peter Van der Beken ", + "bug_id": 499777, + "desc": "Backed out c8297c309ab3 (Fix for bug 499777 (Cannot convert WrappedNative to function (NS_ERROR_XPC_CANT_CONVERT_WN_TO_FUN)). r/sr=mrbkap.) to fix orange.", + "pushdate": "2009-06-23 14:47:03", + "backsout": [ + "c8297c309ab3a9de623027c7f975c7da29a2a5d3" + ], + "backedoutby": "", + "author_email": "peterv@propagandism.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 31704250.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "dom/base/nsDOMClassInfo.cpp" + ], + "components": [], + "directories": [ + "dom", + "dom/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "a8fafd6b563eefb05f2c5bbef81312a075343ccb", + "author": "Andreas Gal ", + "bug_id": 499664, + "desc": "Backed out changeset 55a8910d8436 (no consensus whether patch should be applied, bug 499664).", + "pushdate": "2009-06-30 19:21:13", + "backsout": [ + "55a8910d8436234482f6d000f5d008dc65c34ac9" + ], + "backedoutby": "", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 31390195.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/nanojit/Assembler.cpp", + "js/src/nanojit/LIR.cpp", + "js/src/nanojit/LIRopcode.tbl" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "dd5b7ac3f7d3e1ed9ae4410dcf0ece1ec6b4ca85", + "author": "Karl Tomlinson ", + "bug_id": 498143, + "desc": "backout a2d8f3384b3c due to mochitest failures b=498143", + "pushdate": "2009-07-09 03:36:29", + "backsout": [ + "a2d8f3384b3ca6aa22eaf843b624d53a580a4034" + ], + "backedoutby": "", + "author_email": "karlt+@karlt.net", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 31710165.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "widget/src/gtk2/nsWindow.cpp" + ], + "components": [], + "directories": [ + "widget", + "widget/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "9d7f4b459a18e821fa66f17d8d61f94a69ab748e", + "author": "Peter Van der Beken ", + "bug_id": 503990, + "desc": "Backed out changeset c5433450795f (Bug 503990: make isStmt() table-driven).", + "pushdate": "2009-07-14 09:23:52", + "backsout": [ + "c5433450795f1f6f4b560b82938f8bf217f6e6c2" + ], + "backedoutby": "", + "author_email": "peterv@propagandism.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 33499259.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/lirasm/lirasm.cpp", + "js/src/nanojit/Fragmento.cpp", + "js/src/nanojit/LIR.cpp", + "js/src/nanojit/LIR.h", + "js/src/nanojit/LIRopcode.tbl" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "6b7b67ed41b913e9871c41dd956ad81e97783155", + "author": "Peter Van der Beken ", + "bug_id": 503463, + "desc": "Backed out changeset 2073d5aae8b6 (Avoid integer math for GC trigger factor calculation in allocation path (bug 503463)).", + "pushdate": "2009-07-14 09:50:08", + "backsout": [ + "2073d5aae8b6d4fd5ae00b8c560f1ba44a2d5da4" + ], + "backedoutby": "", + "author_email": "peterv@propagandism.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 33500835.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsapi.cpp", + "js/src/jscntxt.h", + "js/src/jsgc.cpp" + ], + "components": [ + "Core::JavaScript Engine" + ], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "17a10b614f99d9486cc5e3f14585a49216ef1f45", + "author": "Jonathan Kew ", + "bug_id": 503718, + "desc": "Backed out changeset 705ef05105e8 for causing bug 503718 on OS X", + "pushdate": "2009-07-15 11:14:22", + "backsout": [ + "705ef05105e82731347566a66da9151961fbf240" + ], + "backedoutby": "", + "author_email": "jfkthame@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 19932958.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "gfx/thebes/public/gfxAtsuiFonts.h", + "gfx/thebes/public/gfxCoreTextFonts.h", + "gfx/thebes/src/gfxAtsuiFonts.cpp", + "gfx/thebes/src/gfxCoreTextFonts.cpp", + "layout/reftests/bugs/363858-5-ref.html", + "layout/reftests/bugs/363858-5a.html", + "layout/reftests/bugs/363858-5b.html", + "layout/reftests/bugs/363858-6-ref.html", + "layout/reftests/bugs/363858-6a.html", + "layout/reftests/bugs/363858-6b.html", + "layout/reftests/bugs/387876-1-ref.html", + "layout/reftests/bugs/387876-1.html", + "layout/reftests/bugs/reftest.list" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "layout/reftests", + "gfx/thebes", + "gfx", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "980e61b2e20b207ff3d0e2c63b1c6953d5be9a84", + "author": "Jonathan Kew ", + "bug_id": 503718, + "desc": "Backed out changeset b6d407af386f for causing bug 503718 on Windows", + "pushdate": "2009-07-15 11:14:22", + "backsout": [ + "b6d407af386fac51cbc7c511aafc01c28f9f9aba" + ], + "backedoutby": "", + "author_email": "jfkthame@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 19932958.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "gfx/thebes/src/gfxWindowsFonts.cpp", + "layout/reftests/bugs/308406-1-ref.html", + "layout/reftests/bugs/308406-1.html", + "layout/reftests/bugs/308406-2-ref.html", + "layout/reftests/bugs/308406-2.html" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "layout/reftests", + "gfx/thebes", + "gfx", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "191ef763e892a81b56685717adad3788fad266fd", + "author": "L. David Baron ", + "bug_id": 503942, + "desc": "Backed out changeset ebea850caba8 (Bug 503942) for causing timeouts of dom/tests/mochitest/geolocation/test_allowCurrent.html and test_allowWatch.html", + "pushdate": "2009-07-15 23:52:59", + "backsout": [ + "ebea850caba803942ef77addabd73a0dd9ce9087" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 36910500.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "dom/interfaces/geolocation/Makefile.in", + "dom/interfaces/geolocation/nsIDOMGeoPosition.idl", + "dom/interfaces/geolocation/nsIDOMGeoPositionAddress.idl", + "dom/src/geolocation/NetworkGeolocationProvider.js" + ], + "components": [ + "Core::DOM: Geolocation" + ], + "directories": [ + "dom", + "dom/interfaces", + "dom/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "c0d86da168885b0cd20af7eefacb33c5e330e128", + "author": "L. David Baron ", + "bug_id": 503597, + "desc": "Backed out changeset 6e11834d07c9 (Bug 503597) until x86_64 Linux tinderboxes (bug 505215) and maybe other tinderboxes (bug 505203, bug 505204) are updated.", + "pushdate": "2009-07-20 12:58:59", + "backsout": [ + "6e11834d07c9e5eb2d5d0370119b072ba14b060f" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 37303260.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "configure.in" + ], + "components": [], + "directories": [], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "080ff82bff5ed421cc1e4f2c65bda3aab190fcca", + "author": "Andreas Gal ", + "bug_id": 504705, + "desc": "Backed out changeset 692e8a1325f8 (bug 504705). Crashes with TMFLAGS=full on browser startup.", + "pushdate": "2009-07-21 04:58:00", + "backsout": [ + "692e8a1325f8ed8744de4020523bf9e7ff0f1785" + ], + "backedoutby": "", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 33152802.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsregexp.cpp", + "js/src/jstracer.cpp", + "js/src/lirasm/lirasm.cpp", + "js/src/nanojit/LIR.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "d75d6cd530413239b644ed14ef8ec76d010ecd56", + "author": "Andreas Gal ", + "bug_id": 501232, + "desc": "Backed out changeset 8877e1f8645b (bug 501232).", + "pushdate": "2009-07-21 04:58:00", + "backsout": [ + "8877e1f8645b8e2d0ee5e91ac593fdead31d841b" + ], + "backedoutby": "", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 33152802.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/nanojit/LIR.cpp", + "js/src/nanojit/LIR.h", + "js/src/nanojit/LIRopcode.tbl", + "js/src/nanojit/NativeARM.cpp", + "js/src/nanojit/NativeSparc.cpp", + "js/src/nanojit/Nativei386.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "e81b6512fc4ae2668a847bcbd136b81145934aa6", + "author": "Benjamin Smedberg ", + "bug_id": 448375, + "desc": "Backed out changeset 6722800f261e - bug 448375 because it broke at least x86-64... turns out we do actually use DBUS bits from within libxul.so, and the fix for that bug may be quite a bit more complicated.", + "pushdate": "2009-07-23 17:45:58", + "backsout": [ + "6722800f261ef0787bd1a767c6e3cd8e9a70c3db" + ], + "backedoutby": "", + "author_email": "benjamin@smedbergs.us", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 42339394.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/library/Makefile.in" + ], + "components": [], + "directories": [ + "toolkit/library", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "2772a410e518ffa9ef8aba6cfcb235f75c92297a", + "author": "Gavin Sharp ", + "bug_id": 506116, + "desc": "Backed out changeset 870f451d8385 from bug 506116", + "pushdate": "2009-07-28 07:41:27", + "backsout": [ + "870f451d8385af4fdeee958e7b1067bbf69b96da" + ], + "backedoutby": "", + "author_email": "gavin@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 35187834.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/base/content/browser.js", + "toolkit/content/contentAreaUtils.js" + ], + "components": [ + "Toolkit::General", + "Firefox::General" + ], + "directories": [ + "browser/base", + "toolkit", + "browser", + "toolkit/content" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "069d94d0d7ef237e07669cc9399444bf08a5a5a5", + "author": "Boris Zbarsky ", + "bug_id": 495176, + "desc": "Backed out changeset 9d5e247b5052 to see whether bug 495176 might be causing\nthe WinXP Txul regression.", + "pushdate": "2009-07-28 18:39:06", + "backsout": [ + "9d5e247b505267fe6d1aaf9ae0db8a30c20d808b" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 33251654.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "caps/src/nsScriptSecurityManager.cpp" + ], + "components": [], + "directories": [ + "caps", + "caps/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "78b2c479870c73c5da37cdcf1b012061c60be326", + "author": "Boris Zbarsky ", + "bug_id": 495176, + "desc": "Backed out changeset b55e7e3c0bfb to see whether bug 495176 might be causing the WinXP Txul regression", + "pushdate": "2009-07-28 18:39:06", + "backsout": [ + "b55e7e3c0bfb2f1e09c54d41e64f6069e9987890" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 33251654.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "caps/src/nsScriptSecurityManager.cpp", + "dom/locales/en-US/chrome/security/caps.properties" + ], + "components": [ + "Core::Security" + ], + "directories": [ + "caps", + "dom", + "dom/locales", + "caps/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "0468583f64f4ba451040840369df0dd03ce35e75", + "author": "Boris Zbarsky ", + "bug_id": 496823, + "desc": "Backed out changeset 622a29736f33 to see whether bug 496823 causes the WinXP Txul regression.", + "pushdate": "2009-07-28 18:39:06", + "backsout": [ + "622a29736f33891b79d0187dabe1d0ea2ef4615b" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 33251654.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/base/nsCSSFrameConstructor.cpp", + "layout/generic/nsBlockFrame.cpp", + "layout/generic/nsBlockFrame.h", + "layout/generic/nsFrame.cpp", + "layout/generic/nsIFrame.h" + ], + "components": [ + "Core::Layout", + "Core::Layout: Block and Inline" + ], + "directories": [ + "layout/generic", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "c1ab8650e0cee5e6e3592bdce8d8103fd16bea1a", + "author": "Boris Zbarsky ", + "bug_id": 505988, + "desc": "Backed out changeset 03c40c5a2d4b (bug 505988) to fix password manager test orange.", + "pushdate": "2009-07-30 15:03:51", + "backsout": [ + "03c40c5a2d4be8a6cf2e7fa37050e78ff064ac3c" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 33411539.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/xpconnect/src/xpcprivate.h", + "js/src/xpconnect/src/xpcvariant.cpp", + "js/src/xpconnect/tests/mochitest/Makefile.in", + "js/src/xpconnect/tests/mochitest/test_bug384632.html" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "60b97c3496c4517e74445b2e741629f9d5373e95", + "author": "Shawn Wilsher ", + "bug_id": 504422, + "desc": "Backed out changeset 06433d3dafd9 (bug 504422) because the patch is wrong.", + "pushdate": "2009-07-30 17:34:32", + "backsout": [ + "06433d3dafd932539aa3c64d404e4ed04208da52" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 36380841.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "build/automationutils.py", + "toolkit/components/places/src/SQLFunctions.cpp", + "toolkit/components/places/src/SQLFunctions.h" + ], + "components": [], + "directories": [ + "toolkit/components", + "toolkit", + "build" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "236a7507a0f1e0127782daff0d5cb2d2683e5f69", + "author": "Shawn Wilsher ", + "bug_id": 504384, + "desc": "Backed out changeset 246b44df7dd3 (bug 504384).\nThis fix was wrong.", + "pushdate": "2009-07-30 17:34:32", + "backsout": [ + "246b44df7dd37aba850e536fdae31221f8de424b" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 36380841.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/content/widgets/autocomplete.xml" + ], + "components": [], + "directories": [ + "toolkit/content", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "6fa97a14dde15f0c89160cc15a4e7ba928ea55f2", + "author": "Shawn Wilsher ", + "bug_id": 504311, + "desc": "Backed out changeset 8506b25206cf (bug 504311) because the test added uses enablePrivilege which hangs tinderbox asking for privileges.", + "pushdate": "2009-07-30 20:17:53", + "backsout": [ + "8506b25206cf63f5da2f4c4d7902c5140e2724e5" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 36390642.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/style/crashtests/504311-1.xul", + "layout/style/crashtests/crashtests.list", + "layout/style/nsStyleStruct.cpp" + ], + "components": [ + "Core::CSS Parsing and Computation" + ], + "directories": [ + "layout/style", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "c6cab4ce7379c19306d34d7e923a59ea538cd62a", + "author": "L. David Baron ", + "bug_id": 499655, + "desc": "Backed out changeset 358af1196dc2 (bug 499655) until we get bug 507487 sorted out.", + "pushdate": "2009-07-31 16:41:01", + "backsout": [ + "358af1196dc2b298080cbe73efc9d5570153876e" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 38266982.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/style/nsCSSParser.cpp", + "layout/style/nsCSSRuleProcessor.cpp", + "layout/style/nsCSSStyleRule.cpp", + "layout/style/nsICSSStyleRule.h", + "layout/style/test/Makefile.in", + "layout/style/test/test_bug499655.html", + "layout/style/test/test_bug499655.xhtml", + "layout/xul/base/src/tree/src/nsTreeBodyFrame.cpp" + ], + "components": [ + "Core::CSS Parsing and Computation" + ], + "directories": [ + "layout/xul", + "layout/style", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "d556710b95a87c8f2d69e085c1d399d36886d25c", + "author": "Josh Aas ", + "bug_id": 506812, + "desc": "Backed out changeset ad9a4a3a5409, bug 506812. CLOSED TREE", + "pushdate": "2009-07-31 20:50:50", + "backsout": [ + "ad9a4a3a54095479c020f18fc6c57d65dd4b28f6" + ], + "backedoutby": "", + "author_email": "joshmoz@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 34533011.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "xpcom/io/nsLocalFileOSX.h", + "xpcom/io/nsLocalFileOSX.mm" + ], + "components": [], + "directories": [ + "xpcom/io", + "xpcom" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "8e2681f2fcba3a5d56f421d28e6ee0a9a5f4658f", + "author": "Josh Aas ", + "bug_id": 506812, + "desc": "Backed out changeset 4318f781ab87 to investigate Ts changes, b=506812 CLOSED TREE", + "pushdate": "2009-07-31 20:54:50", + "backsout": [ + "4318f781ab87deddf9d4f6f9bca7501567323bf2" + ], + "backedoutby": "", + "author_email": "joshmoz@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 34533251.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/xre/nsAppRunner.cpp" + ], + "components": [ + "Toolkit::Startup and Profile System" + ], + "directories": [ + "toolkit", + "toolkit/xre" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "1708ccd0ffe4a65523cadc76d5e94c1f83cbd5ba", + "author": "L. David Baron ", + "bug_id": 501608, + "desc": "Backed out changeset 8cd49a8cbb88 (bug 501608) on suspicion of causing lots of mochitest-browser-chrome timeouts and leaks (bug 507698).", + "pushdate": "2009-07-31 21:54:27", + "backsout": [ + "8cd49a8cbb88c1316079b79b7a10b5b135fb4e9a" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 38285788.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/content/tests/browser/Makefile.in", + "toolkit/content/tests/browser/browser_keyevents_during_autoscrolling.js", + "toolkit/content/widgets/browser.xml" + ], + "components": [ + "Toolkit::UI Widgets" + ], + "directories": [ + "toolkit/content", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "850b96d836c46b5c3aa67c7b9207e22ffc1f0822", + "author": "L. David Baron ", + "bug_id": 507605, + "desc": "Backed out changeset 6a5f22ccbe0e (no bug) to see if it is the cause of the mozilla-browser-chrome orange (bug 507605 and bug 507698)", + "pushdate": "2009-08-01 02:38:15", + "backsout": [ + "6a5f22ccbe0e" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 38302816.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/components/sessionstore/test/browser/browser_483330.js", + "browser/components/sessionstore/test/browser/browser_491168.js" + ], + "components": [], + "directories": [ + "browser/components", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "94e882183752b48c85bf046e13908bfe26a72ffe", + "author": "Ehsan Akhgari ", + "bug_id": 125282, + "desc": "Backed out changeset 8366e5cc9f57 (bug 125282) because of four windows unit test oranges in a row (all timed out when running mochitest-plain)", + "pushdate": "2009-08-02 10:41:59", + "backsout": [ + "8366e5cc9f57cbcb1168385cdd38b7da124e95a4" + ], + "backedoutby": "", + "author_email": "ehsan.akhgari@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 33401385.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/base/content/test/Makefile.in", + "browser/base/content/test/browser_bug125282.js", + "dom/base/nsFocusManager.cpp" + ], + "components": [ + "Core::DOM: Core & HTML" + ], + "directories": [ + "browser/base", + "dom/base", + "dom", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "7fb86c108ae7981111030e5520593c10859d3562", + "author": "Boris Zbarsky ", + "bug_id": 502288, + "desc": "Backed out changeset 25462849adcc (bug 502288) to get some talos cycles for the tracemonkey merge without this patch in.", + "pushdate": "2009-08-03 19:12:58", + "backsout": [ + "25462849adcc87648a7fa7fc362b34dd3931a82b" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 33772086.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/base/nsCSSFrameConstructor.cpp", + "layout/base/nsCSSFrameConstructor.h", + "layout/base/nsChangeHint.h", + "layout/base/nsFrameManager.cpp", + "layout/style/nsStyleStruct.cpp" + ], + "components": [ + "Core::Layout", + "Core::CSS Parsing and Computation" + ], + "directories": [ + "layout/style", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "c29765db7521970a25767c46a0876f12ef39e1ee", + "author": "Ted Mielczarek ", + "bug_id": 459114, + "desc": "Backed out changeset 9ddc25fb2246 - bug 459114 - helper function to provide a clean profile directory for xpcshell tests. r=sdwilsh - for test failures", + "pushdate": "2009-08-05 19:36:30", + "backsout": [ + "9ddc25fb224655f0300f78c8fe9c8ebbd4a70488" + ], + "backedoutby": "", + "author_email": "ted.mielczarek@gmail.com", + "reviewers": [ + "sdwilsh" + ], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 43469226.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/components/places/tests/unit/head_bookmarks.js", + "extensions/cookie/test/unit/test_permmanager_removeall.js", + "modules/plugin/test/unit/head_plugins.js", + "modules/plugin/test/unit/test_bug455213.js", + "netwerk/test/unit/test_bug248970_cache.js", + "testing/xpcshell/example/unit/test_get_file.js", + "testing/xpcshell/example/unit/test_profile.js", + "testing/xpcshell/head.js", + "testing/xpcshell/runxpcshelltests.py", + "toolkit/components/downloads/test/schema_migration/head_migration.js", + "toolkit/components/downloads/test/unit/head_download_manager.js", + "toolkit/components/downloads/test/unit/test_bug_382825.js", + "toolkit/components/downloads/test/unit/test_bug_395092.js", + "toolkit/components/downloads/test/unit/test_bug_401430.js", + "toolkit/components/downloads/test/unit/test_bug_401582.js", + "toolkit/components/downloads/test/unit/test_bug_409179.js", + "toolkit/components/downloads/test/unit/test_bug_420230.js", + "toolkit/components/downloads/test/unit/test_download_manager.js", + "toolkit/components/downloads/test/unit/test_privatebrowsing.js", + "toolkit/components/passwordmgr/test/unit/head_storage_legacy_1.js", + "toolkit/components/places/tests/autocomplete/head_000.js", + "toolkit/components/places/tests/bookmarks/head_bookmarks.js", + "toolkit/components/places/tests/queries/head_queries.js", + "toolkit/components/places/tests/unit/head_bookmarks.js", + "toolkit/components/satchel/test/unit/head_satchel.js", + "toolkit/components/url-classifier/tests/unit/head_urlclassifier.js", + "toolkit/mozapps/extensions/test/unit/head_extensionmanager.js", + "toolkit/mozapps/extensions/test/unit/tail_extensionmanager.js" + ], + "components": [ + "Core::Networking", + "Toolkit::Form Manager", + "Testing::XPCShell Harness", + "Toolkit::Safe Browsing", + "Firefox::Bookmarks & History", + "Toolkit::Places" + ], + "directories": [ + "testing/xpcshell", + "toolkit", + "netwerk", + "toolkit/components", + "modules/plugin", + "netwerk/test", + "extensions/cookie", + "browser/components", + "toolkit/mozapps", + "extensions", + "browser", + "testing", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "227c1358d161e4ec2745b8cb9f777d6ad9695d92", + "author": "L. David Baron ", + "bug_id": 505718, + "desc": "Backed out changeset bae405b94b96 (testing to see if it affected bug 505718, bug 508767) to re-enable leaked url dump for unit test boxes.", + "pushdate": "2009-08-07 15:23:53", + "backsout": [ + "bae405b94b961ea90c8793b05e19992ffe7bed48" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 38867154.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "netwerk/base/src/nsStandardURL.h" + ], + "components": [], + "directories": [ + "netwerk/base", + "netwerk" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "b3631e1453f29a5020a393b960b1eb851a770279", + "author": "Markus Stange ", + "bug_id": 429954, + "desc": "Backed out changeset b52fa2372a3a, bug 429954 because of test_popup_preventdefault_chrome.xul orange.", + "pushdate": "2009-08-12 23:44:06", + "backsout": [ + "b52fa2372a3aa6c622ab865987fa7d6e6f6354ea" + ], + "backedoutby": "", + "author_email": "mstange@themasta.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 35331142.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "widget/src/cocoa/nsCocoaWindow.h", + "widget/src/cocoa/nsCocoaWindow.mm" + ], + "components": [], + "directories": [ + "widget", + "widget/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "157b3aa1100f993e37b419c048e30c9d2b61b26f", + "author": "Jason Orendorff ", + "bug_id": 510193, + "desc": "Backed out changeset a17cbb14793f (bug 510193) which caused trace-test.js to fail (spuriously) on x86.", + "pushdate": "2009-08-13 21:38:45", + "backsout": [ + "a17cbb14793f5db1218a2634a185715bf720c477" + ], + "backedoutby": "", + "author_email": "jorendorff@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 38104054.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jitstats.tbl", + "js/src/jstracer.cpp", + "js/src/trace-test.js" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "6c04c1cdedcb5489ee4e2ea3871e574efbfefb65", + "author": "Markus Stange ", + "bug_id": 494927, + "desc": "Backed out changeset 43fdf17e10a3, bug 494927, because of a 2.5% Mac Txul regression", + "pushdate": "2009-08-14 04:53:30", + "backsout": [ + "43fdf17e10a33aa10bee5fcbcb289e023c403802" + ], + "backedoutby": "", + "author_email": "mstange@themasta.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 35436106.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/themes/pinstripe/browser/Toolbar.png", + "browser/themes/pinstripe/browser/browser.css" + ], + "components": [], + "directories": [ + "browser/themes", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "a6fa91f76877b834d4e7db0d5b847a9353156e3e", + "author": "Ted Mielczarek ", + "bug_id": 378528, + "desc": "Backed out changeset 21ad4f1ce214 - Ted Mielczarek \u2013 bug 378528 - crash reporter should allow resubmission of pending reports, due to leaks", + "pushdate": "2009-08-17 18:45:00", + "backsout": [ + "21ad4f1ce2145b76592c958153009bf35f66a442" + ], + "backedoutby": "", + "author_email": "ted.mielczarek@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 44502936.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/crashreporter/content/crash-submit-form.xhtml", + "toolkit/crashreporter/content/crashes.js", + "toolkit/crashreporter/content/crashes.xhtml", + "toolkit/crashreporter/jar.mn", + "toolkit/crashreporter/test/Makefile.in", + "toolkit/crashreporter/test/browser/aboutcrashes_utils.js", + "toolkit/crashreporter/test/browser/browser_aboutCrashes.js", + "toolkit/crashreporter/test/browser/browser_aboutCrashesResubmit.js", + "toolkit/crashreporter/test/browser/crashreport.sjs" + ], + "components": [ + "Toolkit::Crash Reporting" + ], + "directories": [ + "toolkit", + "toolkit/crashreporter" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "ae162a38f56ed5090f6b3b3ebf92d0ff13cff9b1", + "author": "Dave Townsend ", + "bug_id": 502307, + "desc": "Backed out changeset 405a715a4d81 from bug 502307 due to test failures", + "pushdate": "2009-08-19 09:38:41", + "backsout": [ + "405a715a4d8148131ccdc89a1dcd799bf96b0fe0" + ], + "backedoutby": "", + "author_email": "dtownsend@oxymoronical.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 38184879.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/base/content/browser.js", + "toolkit/content/globalOverlay.js" + ], + "components": [ + "Toolkit::General", + "Firefox::General" + ], + "directories": [ + "browser/base", + "toolkit", + "browser", + "toolkit/content" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "36d3597620c7b8392cfb99cc056dcbd2caea2de4", + "author": "L. David Baron ", + "bug_id": 482935, + "desc": "Backed out changeset 3a829715fd39 (Bug 482935) on suspicion of causing mochitest-plain leaks.", + "pushdate": "2009-08-20 19:23:10", + "backsout": [ + "3a829715fd3983cadb48d9de83b78bf85daffd2e" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 40004711.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/base/test/Makefile.in", + "content/base/test/bug482935.sjs", + "content/base/test/test_bug482935.html", + "netwerk/protocol/http/src/nsHttpChannel.cpp" + ], + "components": [], + "directories": [ + "content/base", + "content", + "netwerk/protocol", + "netwerk" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "85899e12310f9eb9be0db8ec7fd421c238c40a26", + "author": "L. David Baron ", + "bug_id": 445765, + "desc": "Backed out changeset 6b686281f9ac (Bug 445765) for causing a 3% Txul (Twinopen) regression on Linux.", + "pushdate": "2009-08-23 15:07:40", + "backsout": [ + "6b686281f9acdf3af782754eb1bac0966eea0851" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 40248581.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/base/nsLayoutUtils.cpp" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "201784b33fc94a3a55139cc7dc8684e66aee803c", + "author": "Boris Zbarsky ", + "bug_id": 488249, + "desc": "Backed out changeset eb32cbfba7f5 (bug 488249 followup) to fix test orange.", + "pushdate": "2009-08-25 00:52:50", + "backsout": [ + "eb32cbfba7f58425d354abb870ce697465bed3c2" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 35606878.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "accessible/src/base/nsAccessible.cpp" + ], + "components": [], + "directories": [ + "accessible/src", + "accessible" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "7687616b2a35d841691da03b55eb482965eb1548", + "author": "Boris Zbarsky ", + "bug_id": 488249, + "desc": "Backed out changeset 59ae87416f96 (bug 488249 followup) to fix test orange.", + "pushdate": "2009-08-25 00:52:50", + "backsout": [ + "59ae87416f96691b00ea478036eb2ef04546eb18" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 35606878.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/base/nsCSSFrameConstructor.cpp", + "widget/src/cocoa/nsMenuBarX.mm", + "widget/src/cocoa/nsNativeThemeCocoa.mm" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "widget", + "layout", + "layout/base", + "widget/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "2e8b6f1bf670fc64652d0f82cd140fc339b96daf", + "author": "Boris Zbarsky ", + "bug_id": 488249, + "desc": "Backed out changeset 4aa19414e651 (bug 488249) to fix test orange.", + "pushdate": "2009-08-25 00:52:50", + "backsout": [ + "4aa19414e651669fa16f4c4a5ac53567f8f471c9" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 35606878.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "accessible/src/base/nsAccessibilityService.cpp", + "accessible/src/base/nsAccessible.cpp", + "accessible/src/base/nsAccessibleTreeWalker.cpp", + "accessible/src/base/nsCoreUtils.cpp", + "accessible/src/base/nsTextEquivUtils.cpp", + "accessible/src/html/nsHTMLSelectAccessible.cpp", + "accessible/src/html/nsHyperTextAccessible.cpp", + "content/base/public/nsIContent.h", + "content/base/public/nsINode.h", + "content/base/src/mozSanitizingSerializer.cpp", + "content/base/src/nsContentUtils.cpp", + "content/base/src/nsCopySupport.cpp", + "content/base/src/nsDOMAttributeMap.cpp", + "content/base/src/nsDocument.cpp", + "content/base/src/nsFrameLoader.cpp", + "content/base/src/nsGenericElement.cpp", + "content/base/src/nsNodeUtils.cpp", + "content/base/src/nsObjectLoadingContent.cpp", + "content/base/src/nsPlainTextSerializer.cpp", + "content/base/src/nsScriptElement.cpp", + "content/base/src/nsXHTMLContentSerializer.cpp", + "content/base/src/nsXMLContentSerializer.cpp", + "content/events/src/nsContentEventHandler.cpp", + "content/events/src/nsEventStateManager.cpp", + "content/html/content/src/nsGenericHTMLElement.cpp", + "content/html/content/src/nsGenericHTMLElement.h", + "content/html/content/src/nsHTMLMediaElement.cpp", + "content/html/content/src/nsHTMLOptGroupElement.cpp", + "content/html/content/src/nsHTMLOptionElement.cpp", + "content/html/content/src/nsHTMLSelectElement.cpp", + "content/html/content/src/nsHTMLTableCellElement.cpp", + "content/html/content/src/nsHTMLTableRowElement.cpp", + "content/html/document/src/nsHTMLDocument.cpp", + "content/mathml/content/src/nsMathMLElement.cpp", + "content/svg/content/src/nsSVGElement.cpp", + "content/svg/content/src/nsSVGLength2.cpp", + "content/xbl/src/nsXBLContentSink.cpp", + "content/xbl/src/nsXBLPrototypeHandler.cpp", + "content/xbl/src/nsXBLService.cpp", + "content/xslt/src/xpath/txMozillaXPathTreeWalker.cpp", + "content/xslt/src/xpath/txXPathTreeWalker.h", + "content/xslt/src/xslt/txMozillaXMLOutput.cpp", + "content/xul/content/src/nsXULElement.cpp", + "content/xul/content/src/nsXULElement.h", + "content/xul/templates/src/nsXULContentBuilder.cpp", + "content/xul/templates/src/nsXULSortService.cpp", + "content/xul/templates/src/nsXULTemplateBuilder.cpp", + "docshell/base/nsDocShell.cpp", + "dom/base/nsDOMClassInfo.cpp", + "dom/base/nsFocusManager.cpp", + "embedding/components/find/src/nsFind.cpp", + "layout/base/nsCSSFrameConstructor.cpp", + "layout/base/nsPresShell.cpp", + "layout/forms/nsListControlFrame.cpp", + "layout/forms/nsTextControlFrame.cpp", + "layout/generic/nsBlockFrame.cpp", + "layout/generic/nsContainerFrame.cpp", + "layout/generic/nsFrame.cpp", + "layout/generic/nsFrameFrame.cpp", + "layout/generic/nsFrameSetFrame.cpp", + "layout/generic/nsImageMap.cpp", + "layout/generic/nsInlineFrame.cpp", + "layout/generic/nsObjectFrame.cpp", + "layout/generic/nsSelection.cpp", + "layout/mathml/nsMathMLContainerFrame.cpp", + "layout/printing/nsPrintEngine.cpp", + "layout/printing/nsPrintPreviewListener.cpp", + "layout/style/nsCSSRuleProcessor.cpp", + "layout/style/nsHTMLStyleSheet.cpp", + "layout/style/nsStyleUtil.cpp", + "layout/svg/base/src/nsSVGContainerFrame.cpp", + "layout/svg/base/src/nsSVGSwitchFrame.cpp", + "layout/xul/base/src/nsBox.cpp", + "layout/xul/base/src/nsListBoxBodyFrame.cpp", + "layout/xul/base/src/tree/src/nsTreeBodyFrame.cpp", + "layout/xul/base/src/tree/src/nsTreeContentView.cpp", + "toolkit/components/typeaheadfind/src/nsTypeAheadFind.cpp", + "widget/src/gtk2/nsNativeThemeGTK.cpp", + "widget/src/windows/nsNativeThemeWin.cpp", + "widget/src/xpwidgets/nsNativeTheme.cpp" + ], + "components": [ + "Core::DOM: Core & HTML", + "Core::CSS Parsing and Computation", + "Core::DOM: Navigation", + "Core::Layout: Block and Inline", + "Core::Layout: Form Controls", + "Core::Layout: Images, Video, and HTML Frames", + "Core::MathML", + "Core::Layout" + ], + "directories": [ + "accessible/src", + "accessible", + "docshell/base", + "layout/mathml", + "dom/base", + "content/xul", + "content/base", + "content", + "content/html", + "embedding/components", + "layout/generic", + "toolkit", + "dom", + "content/xslt", + "layout/style", + "layout", + "toolkit/components", + "layout/xul", + "docshell", + "layout/forms", + "layout/base", + "widget", + "embedding", + "content/mathml", + "layout/printing", + "layout/svg", + "content/svg", + "content/xbl", + "widget/src", + "content/events" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "b5c5bf855c53870a43f0681f68012ce2bf362366", + "author": "Boris Zbarsky ", + "bug_id": 474536, + "desc": "Backed out changeset 6ee269c6c118 (test for bug 474536) because it hangs on Tinderbox", + "pushdate": "2009-09-02 17:35:49", + "backsout": [ + "6ee269c6c118762de6d21b86025c2792290750f6" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 36358257.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "netwerk/test/unit/data/bug474536/foo.jar", + "netwerk/test/unit/data/bug474536/foo.jar^headers^", + "netwerk/test/unit/test_bug474536.js" + ], + "components": [], + "directories": [ + "netwerk/test", + "netwerk" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "941346617e4fa0946dea86a611917d7362765d10", + "author": "Josh Aas ", + "bug_id": 510920, + "desc": "Backed out changeset e8c01867056a, breakpad update b=510920", + "pushdate": "2009-09-04 04:02:57", + "backsout": [ + "e8c01867056a2dea44260030f35f743f73c7e272" + ], + "backedoutby": "", + "author_email": "joshmoz@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 37496538.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/crashreporter/google-breakpad/Makefile.am", + "toolkit/crashreporter/google-breakpad/Makefile.in", + "toolkit/crashreporter/google-breakpad/aclocal.m4", + "toolkit/crashreporter/google-breakpad/src/breakpad_googletest_includes.h", + "toolkit/crashreporter/google-breakpad/src/client/linux/handler/exception_handler.cc", + "toolkit/crashreporter/google-breakpad/src/client/linux/handler/exception_handler.h", + "toolkit/crashreporter/google-breakpad/src/client/linux/handler/minidump_generator.cc", + "toolkit/crashreporter/google-breakpad/src/client/mac/Breakpad.xcodeproj/project.pbxproj", + "toolkit/crashreporter/google-breakpad/src/client/mac/Framework/Breakpad.h", + "toolkit/crashreporter/google-breakpad/src/client/mac/Framework/Breakpad.mm", + "toolkit/crashreporter/google-breakpad/src/client/mac/Framework/Breakpad_Prefix.pch", + "toolkit/crashreporter/google-breakpad/src/client/mac/Framework/Info.plist", + "toolkit/crashreporter/google-breakpad/src/client/mac/Framework/OnDemandServer.h", + "toolkit/crashreporter/google-breakpad/src/client/mac/Framework/OnDemandServer.mm", + "toolkit/crashreporter/google-breakpad/src/client/mac/UnitTests-Info.plist", + "toolkit/crashreporter/google-breakpad/src/client/mac/crash_generation/Inspector.h", + "toolkit/crashreporter/google-breakpad/src/client/mac/crash_generation/Inspector.mm", + "toolkit/crashreporter/google-breakpad/src/client/mac/crash_generation/InspectorMain.mm", + "toolkit/crashreporter/google-breakpad/src/client/mac/gcov/libgcov.a", + "toolkit/crashreporter/google-breakpad/src/client/mac/handler/exception_handler.cc", + "toolkit/crashreporter/google-breakpad/src/client/mac/handler/exception_handler.h", + "toolkit/crashreporter/google-breakpad/src/client/mac/handler/exception_handler_test.cc", + "toolkit/crashreporter/google-breakpad/src/client/mac/handler/minidump_generator.cc", + "toolkit/crashreporter/google-breakpad/src/client/mac/handler/minidump_generator.h", + "toolkit/crashreporter/google-breakpad/src/client/mac/handler/minidump_generator_test.cc", + "toolkit/crashreporter/google-breakpad/src/client/mac/handler/testcases/testdata/dump_syms_i386_breakpad.sym", + "toolkit/crashreporter/google-breakpad/src/client/mac/sender/Breakpad.nib/classes.nib", + "toolkit/crashreporter/google-breakpad/src/client/mac/sender/Breakpad.nib/info.nib", + "toolkit/crashreporter/google-breakpad/src/client/mac/sender/Breakpad.nib/keyedobjects.nib", + "toolkit/crashreporter/google-breakpad/src/client/mac/sender/English.lproj/InfoPlist.strings", + "toolkit/crashreporter/google-breakpad/src/client/mac/sender/English.lproj/Localizable.strings", + "toolkit/crashreporter/google-breakpad/src/client/mac/sender/ReporterIcon.graffle", + "toolkit/crashreporter/google-breakpad/src/client/mac/sender/crash_report_sender-Info.plist", + "toolkit/crashreporter/google-breakpad/src/client/mac/sender/crash_report_sender.h", + "toolkit/crashreporter/google-breakpad/src/client/mac/sender/crash_report_sender.icns", + "toolkit/crashreporter/google-breakpad/src/client/mac/sender/crash_report_sender.m", + "toolkit/crashreporter/google-breakpad/src/client/mac/testapp/Controller.h", + "toolkit/crashreporter/google-breakpad/src/client/mac/testapp/Controller.m", + "toolkit/crashreporter/google-breakpad/src/client/mac/testapp/English.lproj/InfoPlist.strings", + "toolkit/crashreporter/google-breakpad/src/client/mac/testapp/English.lproj/MainMenu.nib/classes.nib", + "toolkit/crashreporter/google-breakpad/src/client/mac/testapp/English.lproj/MainMenu.nib/info.nib", + "toolkit/crashreporter/google-breakpad/src/client/mac/testapp/English.lproj/MainMenu.nib/keyedobjects.nib", + "toolkit/crashreporter/google-breakpad/src/client/mac/testapp/Info.plist", + "toolkit/crashreporter/google-breakpad/src/client/mac/testapp/TestClass.h", + "toolkit/crashreporter/google-breakpad/src/client/mac/testapp/TestClass.mm", + "toolkit/crashreporter/google-breakpad/src/client/mac/testapp/bomb.icns", + "toolkit/crashreporter/google-breakpad/src/client/mac/testapp/crashInMain", + "toolkit/crashreporter/google-breakpad/src/client/mac/testapp/crashduringload", + "toolkit/crashreporter/google-breakpad/src/client/mac/testapp/main.m", + "toolkit/crashreporter/google-breakpad/src/client/mac/tests/BreakpadFramework_Test.mm", + "toolkit/crashreporter/google-breakpad/src/client/mac/tests/SimpleStringDictionaryTest.h", + "toolkit/crashreporter/google-breakpad/src/client/mac/tests/SimpleStringDictionaryTest.mm", + "toolkit/crashreporter/google-breakpad/src/client/minidump_file_writer_unittest.cc", + "toolkit/crashreporter/google-breakpad/src/client/windows/crash_generation/crash_generation_server.cc", + "toolkit/crashreporter/google-breakpad/src/client/windows/crash_generation/crash_generation_server.h", + "toolkit/crashreporter/google-breakpad/src/client/windows/handler/exception_handler.cc", + "toolkit/crashreporter/google-breakpad/src/client/windows/handler/exception_handler.h", + "toolkit/crashreporter/google-breakpad/src/client/windows/sender/crash_report_sender.cc", + "toolkit/crashreporter/google-breakpad/src/client/windows/sender/crash_report_sender.vcproj", + "toolkit/crashreporter/google-breakpad/src/common/linux/dump_symbols.cc", + "toolkit/crashreporter/google-breakpad/src/common/linux/dump_symbols.h", + "toolkit/crashreporter/google-breakpad/src/common/linux/file_id.cc", + "toolkit/crashreporter/google-breakpad/src/common/mac/GTMDefines.h", + "toolkit/crashreporter/google-breakpad/src/common/mac/GTMGarbageCollection.h", + "toolkit/crashreporter/google-breakpad/src/common/mac/GTMLogger.h", + "toolkit/crashreporter/google-breakpad/src/common/mac/GTMLogger.m", + "toolkit/crashreporter/google-breakpad/src/common/mac/MachIPC.h", + "toolkit/crashreporter/google-breakpad/src/common/mac/MachIPC.mm", + "toolkit/crashreporter/google-breakpad/src/common/mac/SimpleStringDictionary.h", + "toolkit/crashreporter/google-breakpad/src/common/mac/SimpleStringDictionary.mm", + "toolkit/crashreporter/google-breakpad/src/common/mac/testing/GTMSenTestCase.h", + "toolkit/crashreporter/google-breakpad/src/common/mac/testing/GTMSenTestCase.m", + "toolkit/crashreporter/google-breakpad/src/common/solaris/dump_symbols.cc", + "toolkit/crashreporter/google-breakpad/src/common/solaris/file_id.cc", + "toolkit/crashreporter/google-breakpad/src/common/windows/http_upload.cc", + "toolkit/crashreporter/google-breakpad/src/common/windows/http_upload.h", + "toolkit/crashreporter/google-breakpad/src/google_breakpad/common/minidump_cpu_ppc.h", + "toolkit/crashreporter/google-breakpad/src/google_breakpad/processor/basic_source_line_resolver.h", + "toolkit/crashreporter/google-breakpad/src/google_breakpad/processor/minidump.h", + "toolkit/crashreporter/google-breakpad/src/google_breakpad/processor/minidump_processor.h", + "toolkit/crashreporter/google-breakpad/src/google_breakpad/processor/source_line_resolver_interface.h", + "toolkit/crashreporter/google-breakpad/src/google_breakpad/processor/symbol_supplier.h", + "toolkit/crashreporter/google-breakpad/src/processor/basic_source_line_resolver.cc", + "toolkit/crashreporter/google-breakpad/src/processor/basic_source_line_resolver_unittest.cc", + "toolkit/crashreporter/google-breakpad/src/processor/contained_range_map-inl.h", + "toolkit/crashreporter/google-breakpad/src/processor/minidump_processor.cc", + "toolkit/crashreporter/google-breakpad/src/processor/minidump_processor_unittest.cc", + "toolkit/crashreporter/google-breakpad/src/processor/minidump_stackwalk.cc", + "toolkit/crashreporter/google-breakpad/src/processor/simple_symbol_supplier.cc", + "toolkit/crashreporter/google-breakpad/src/processor/simple_symbol_supplier.h", + "toolkit/crashreporter/google-breakpad/src/processor/stackwalker.cc", + "toolkit/crashreporter/google-breakpad/src/tools/linux/dump_syms/dump_syms.cc", + "toolkit/crashreporter/google-breakpad/src/tools/mac/crash_report/crash_report.mm", + "toolkit/crashreporter/google-breakpad/src/tools/mac/crash_report/on_demand_symbol_supplier.h", + "toolkit/crashreporter/google-breakpad/src/tools/mac/crash_report/on_demand_symbol_supplier.mm", + "toolkit/crashreporter/google-breakpad/src/tools/windows/symupload/symupload.cc" + ], + "components": [ + "Toolkit::Crash Reporting", + "Firefox Build System::General" + ], + "directories": [ + "toolkit", + "toolkit/crashreporter" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "845b66a2eb91290ec6ef4a5cf2c2ec587b5c8ca3", + "author": "D\u00e3o Gottwald ", + "bug_id": 514891, + "desc": "Backed out changeset b652e12fc7e3 because of bug 514891", + "pushdate": "2009-09-07 12:18:27", + "backsout": [ + "b652e12fc7e3a68a2a0aca08f6515477be3d32c5" + ], + "backedoutby": "", + "author_email": "dao@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 39132370.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/base/content/browser-tabPreviews.js" + ], + "components": [], + "directories": [ + "browser/base", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "ce62745a7c9c72cd51034b9f9710af3d2e45d038", + "author": "D\u00e3o Gottwald ", + "bug_id": 514891, + "desc": "Backed out changeset 83ba2c6e25eb because of bug 514891", + "pushdate": "2009-09-07 12:18:27", + "backsout": [ + "83ba2c6e25eb1fb9f3962eebeb4e041176133fb9" + ], + "backedoutby": "", + "author_email": "dao@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 39132370.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/xul/base/src/nsMenuPopupFrame.cpp" + ], + "components": [], + "directories": [ + "layout/xul", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "c1e5dcec20dd02e3de3d6f785408840aaa91b48d", + "author": "Josh Aas ", + "bug_id": 506812, + "desc": "Back out changeset 845b625b5eb5. b=506812", + "pushdate": "2009-09-09 13:59:18", + "backsout": [ + "845b625b5eb532b65346e0ca5f3e199d8fbfe13e" + ], + "backedoutby": "", + "author_email": "joshmoz@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 37964319.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/xre/nsAppRunner.cpp" + ], + "components": [ + "Toolkit::Startup and Profile System" + ], + "directories": [ + "toolkit", + "toolkit/xre" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "6119349e864e7d27faf80076cb7ceb790a846fc5", + "author": "Jeff Muizelaar ", + "bug_id": 514803, + "desc": "Backout ffcfaed61bed: Taras Glek \u2013 Bug 514803 - Fix for new Date().toLocaleString() triggers \"An error occured throwing an exception\". Moved more charset files to jar r=bsmedberg\n\nThis caused an unexplained Ts improvement and obj-c exceptions during Ts.", + "pushdate": "2009-09-14 20:55:06", + "backsout": [ + "ffcfaed61bedaeed17963c98015d8beb53d39e9b" + ], + "backedoutby": "", + "author_email": "jmuizelaar@mozilla.com", + "reviewers": [ + "bsmedberg" + ], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 30589658.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/installer/package-manifest.in", + "browser/installer/removed-files.in", + "intl/uconv/src/Makefile.in", + "intl/uconv/src/jar.mn" + ], + "components": [ + "Firefox::Installer" + ], + "directories": [ + "browser/installer", + "intl", + "browser", + "intl/uconv" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "71e1c4bdc3c8c9be8e849c871e294dc8a11c8be7", + "author": "Justin Dolske ", + "bug_id": 497495, + "desc": "Backed out changeset a3f33def2dca (bug 497495 part 4)", + "pushdate": "2009-09-15 00:27:03", + "backsout": [ + "a3f33def2dca968d2b335c55c2daf92a10499282" + ], + "backedoutby": "", + "author_email": "dolske@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 39330067.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/base/nsIPresShell.h", + "layout/base/nsPresArena.cpp", + "layout/base/nsPresArena.h", + "layout/base/nsPresShell.cpp", + "layout/generic/nsFrame.cpp", + "layout/generic/nsFrame.h", + "layout/generic/nsQueryFrame.h" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "layout/generic", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "dc2598d08078bade237e66b83bf0b29ebc6b7db7", + "author": "Andreas Gal ", + "bug_id": 504516, + "desc": "Backed out changeset 48c039f7ac4f (bug 504516).", + "pushdate": "2009-09-16 23:16:27", + "backsout": [ + "48c039f7ac4f41126099492743718e83095baea0" + ], + "backedoutby": "3a8acec844913490ca457c9daa16663cbaf5a411", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 38143509.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jstracer.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "0ae65841fcf88595e023f93b86451f5fd341824e", + "author": "Brendan Eich ", + "bug_id": 471214, + "desc": "Back out changeset aff171a8c4f0 (bug 471214).", + "pushdate": "2009-09-16 23:16:27", + "backsout": [ + "aff171a8c4f0009224cb87eb97b47372318bc493" + ], + "backedoutby": "", + "author_email": "brendan@mozilla.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 40358494.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/imacros.c.out", + "js/src/jsapi.cpp", + "js/src/jsarray.cpp", + "js/src/jsemit.cpp", + "js/src/jsinterp.cpp", + "js/src/jsiter.cpp", + "js/src/jsobj.cpp", + "js/src/jsobj.h", + "js/src/jsopcode.cpp", + "js/src/jsopcode.tbl", + "js/src/jsops.cpp", + "js/src/jsparse.cpp", + "js/src/jsscope.cpp", + "js/src/jsscope.h", + "js/src/jstracer.cpp", + "js/src/jstypes.h", + "js/src/jsxdrapi.h" + ], + "components": [ + "Core::JavaScript Engine" + ], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "3a8acec844913490ca457c9daa16663cbaf5a411", + "author": "Andreas Gal ", + "bug_id": 504516, + "desc": "Backed out changeset dc2598d08078 (re-landing bug 504516).", + "pushdate": "2009-09-16 23:16:27", + "backsout": [ + "dc2598d08078bade237e66b83bf0b29ebc6b7db7" + ], + "backedoutby": "", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 38143509.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jstracer.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "cda3d0eefedd79d3741d474678ab396d56c56ba1", + "author": "Andreas Gal ", + "bug_id": 515290, + "desc": "Backed out changeset 5c7fbeed8f96 (bug 515290, accidentally committed unrelated changes with the bug).", + "pushdate": "2009-09-16 23:16:27", + "backsout": [ + "5c7fbeed8f96bc2a23341f5ed895e72253b6654b" + ], + "backedoutby": "", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 38143509.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/nanojit/NativeARM.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "68b5e9772b4cd613caad675815d949a7528526a8", + "author": "Ted Mielczarek ", + "bug_id": 494165, + "desc": "Backed out changeset e5f6affc4c88 for breaking Mochitest\nBug 494165 - Support --total-chunks, --this-chunk, --chunk-by-dir, and --shuffle arguments to runtests.py. r=ted", + "pushdate": "2009-09-21 13:10:14", + "backsout": [ + "e5f6affc4c8868f65c61c9dafb4540c88991e463" + ], + "backedoutby": "", + "author_email": "ted.mielczarek@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 47506850.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "testing/mochitest/runtests.py.in", + "testing/mochitest/tests/SimpleTest/setup.js" + ], + "components": [ + "Testing::Mochitest" + ], + "directories": [ + "testing/mochitest", + "testing" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "80f8fb6eb86e72f39cd3f6ff0f6af48329e8b380", + "author": "Markus Stange ", + "bug_id": 517804, + "desc": "Backed out changeset 7799cfb99362 (Bug 517804 - Flush reflows and invalidations during viewWillDraw) because it caused a ts_shutdown regression.", + "pushdate": "2009-09-22 20:54:29", + "backsout": [ + "7799cfb993623e112a2555d6de0c4a45d29c1c90" + ], + "backedoutby": "", + "author_email": "mstange@themasta.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 38863365.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "view/src/nsViewManager.cpp", + "widget/public/nsGUIEvent.h", + "widget/src/cocoa/nsChildView.mm" + ], + "components": [], + "directories": [ + "widget", + "widget/public", + "view/src", + "view", + "widget/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "75a5fcf1a393cfccab3141f4774307d4b05c31fd", + "author": "Jeff Muizelaar ", + "bug_id": 512865, + "desc": "Backed out changeset cb4f078cc8cb (bug 512865)\n\nWas causing crashes on the leak test box.", + "pushdate": "2009-09-25 03:36:19", + "backsout": [ + "cb4f078cc8cb1b9f136986e7716305099dec8a47" + ], + "backedoutby": "", + "author_email": "jmuizelaar@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 31477731.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "gfx/qcms/Makefile.in", + "gfx/qcms/qcmsint.h", + "gfx/qcms/transform-sse1.c", + "gfx/qcms/transform-sse2.c", + "gfx/qcms/transform.c" + ], + "components": [ + "Core::Graphics" + ], + "directories": [ + "gfx/qcms", + "gfx" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "687f2a1f5ad278bbc52e6e4ff3ef829d18339ef0", + "author": "Jason Orendorff ", + "bug_id": 500431, + "desc": "Backed out changeset eafee0100926 (bug 500431) due to Tinderbox orangeness", + "pushdate": "2009-09-26 03:38:06", + "backsout": [ + "eafee0100926764290cd41a5564f00df140315f1" + ], + "backedoutby": "", + "author_email": "jorendorff@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 41840815.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jspropcache.h" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "873dd3e379db6061c9f0cb4c0c401fb0bc656421", + "author": "Jason Orendorff ", + "bug_id": 500431, + "desc": "Backed out changeset 8abad92fd850 (bug 500431) due to Tinderbox orangeness", + "pushdate": "2009-09-26 03:38:06", + "backsout": [ + "8abad92fd850559cfb11adfb1077371e8eca110d" + ], + "backedoutby": "", + "author_email": "jorendorff@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 41840815.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsops.cpp", + "js/src/jspropcache.h", + "js/src/jspropcacheinlines.h" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "31b6f6e8a56d0074eb82807a47162054b6fd522d", + "author": "Jason Orendorff ", + "bug_id": 500431, + "desc": "Backed out changeset 3f508cfdfa36 (bug 500431) due to tinderbox orangeness", + "pushdate": "2009-09-26 03:38:06", + "backsout": [ + "3f508cfdfa36efe22be8c40415a24bbe28b35356" + ], + "backedoutby": "", + "author_email": "jorendorff@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 41840815.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/Makefile.in", + "js/src/jsbuiltins.cpp", + "js/src/jscntxt.cpp", + "js/src/jscntxt.h", + "js/src/jsinterp.cpp", + "js/src/jsobj.cpp", + "js/src/jsops.cpp", + "js/src/jspropcache.cpp", + "js/src/jspropcache.h", + "js/src/jspropcacheinlines.h", + "js/src/jsscript.cpp", + "js/src/jstracer.cpp" + ], + "components": [ + "Firefox Build System::General" + ], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "0f39d12ba50518f25c340f088103ba6f1c607b26", + "author": "Jason Orendorff ", + "bug_id": 500431, + "desc": "Backed out changeset 2fbd2420ef8b (bug 500431) due to Tinderbox orangeness.", + "pushdate": "2009-09-26 03:38:06", + "backsout": [ + "2fbd2420ef8b793672ccc6a9fd3cb65b2b9c9340" + ], + "backedoutby": "", + "author_email": "jorendorff@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 41840815.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/Makefile.in", + "js/src/jsinterp.cpp", + "js/src/jsinterp.h", + "js/src/jspropcache.cpp", + "js/src/jspropcache.h" + ], + "components": [ + "Firefox Build System::General" + ], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "2c67a109e6265c64b3126c111de59482018242f0", + "author": "Robert Sayre ", + "bug_id": 518448, + "desc": "Backed out changeset f5ea964eb493. (Brendan Eich \u2014 High-level CSE for shape guards (518448, r=jorendorff).", + "pushdate": "2009-09-26 15:23:09", + "backsout": [ + "f5ea964eb493458189bb2ff20cfff74a04e3e4d0" + ], + "backedoutby": "", + "author_email": "sayrer@gmail.com", + "reviewers": [ + "jorendorff" + ], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 40766756.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsscope.cpp", + "js/src/jstracer.cpp", + "js/src/jstracer.h", + "js/src/nanojit/LIR.h", + "js/src/nanojit/LIRopcode.tbl" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "744a11942d04650232e02df7954db4dc5452ef79", + "author": "Josh Aas ", + "bug_id": 506812, + "desc": "Backed out changeset 65aff8912e7c. b=506812", + "pushdate": "2009-09-27 07:10:24", + "backsout": [ + "65aff8912e7c92d424ce046c976a29ced1266f99" + ], + "backedoutby": "", + "author_email": "joshmoz@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 39494985.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/xre/nsAppRunner.cpp", + "xpcom/io/nsLocalFileOSX.mm" + ], + "components": [ + "Toolkit::Startup and Profile System" + ], + "directories": [ + "xpcom", + "xpcom/io", + "toolkit", + "toolkit/xre" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "08c4c88536854e24ec9cc9bc14f5d148e39bc661", + "author": "Josh Aas ", + "bug_id": 506812, + "desc": "Backed out changeset 76c570389975. b=506812", + "pushdate": "2009-09-27 09:55:57", + "backsout": [ + "76c570389975acff5eac2dc5d7c443f09d666dd9" + ], + "backedoutby": "", + "author_email": "joshmoz@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 39504918.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "xpcom/io/nsLocalFileOSX.h", + "xpcom/io/nsLocalFileOSX.mm" + ], + "components": [], + "directories": [ + "xpcom/io", + "xpcom" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "7eab054403ff5dc04f3ce061125a32049476041a", + "author": "Shawn Wilsher ", + "bug_id": 517604, + "desc": "Backed out changeset 467f14a11325 (bug 517604)", + "pushdate": "2009-10-01 00:04:41", + "backsout": [ + "467f14a11325660510a69ec0f2240f7bd685cc0e" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 41761050.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "xpcom/tests/TestHarness.h" + ], + "components": [ + "Core::XPCOM" + ], + "directories": [ + "xpcom", + "xpcom/tests" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "2144fdf97e50c3a09502d25f593785a66b237102", + "author": "Boris Zbarsky ", + "bug_id": 518940, + "desc": "Backed out changeset e22b5d4e8ce9 (bug 518940) on suspicion of causing Linux orange.", + "pushdate": "2009-10-01 03:19:04", + "backsout": [ + "e22b5d4e8ce934f01713a8c51357564a79147e7a" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 38812452.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "modules/plugin/test/mochitest/Makefile.in", + "modules/plugin/test/mochitest/test_npruntime_npninvoke.html", + "modules/plugin/test/testplugin/README", + "modules/plugin/test/testplugin/nptest.cpp" + ], + "components": [], + "directories": [ + "modules/plugin", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "fb9d4a6b8330adff5022ccdaeb52285f3d95a693", + "author": "Daniel Holbert ", + "bug_id": 518991, + "desc": "Backed out changeset 58c5864cb9c6 (Bug 518991) due to linux orange (test failure in test_bug408328.html & 9240-byte leak)", + "pushdate": "2009-10-01 06:43:45", + "backsout": [ + "58c5864cb9c6614dbcb3a652f2112f8a189cb3f0" + ], + "backedoutby": "", + "author_email": "dholbert@cs.stanford.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 43548352.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/xpconnect/src/XPCChromeObjectWrapper.cpp", + "js/src/xpconnect/src/xpcinlines.h", + "js/src/xpconnect/src/xpcjsruntime.cpp", + "js/src/xpconnect/src/xpcprivate.h" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "f0bf246917580c878b38181ad1ed519b2a181934", + "author": "Igor Bukanov ", + "bug_id": 517199, + "desc": "Backed out changeset 31682547b6f1 - bug 517199 has shown persistent failure on Windows tinderboxes.", + "pushdate": "2009-10-07 06:47:58", + "backsout": [ + "31682547b6f1367b15f8dc2206310160ea72a3f7" + ], + "backedoutby": "", + "author_email": "igor@mir2.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 41073179.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsatom.cpp", + "js/src/jscntxt.h", + "js/src/jsgc.cpp", + "js/src/jsgc.h", + "js/src/jsxml.h" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "0416997adea8dea5e38e9ff5ed802fd1d29857b3", + "author": "Igor Bukanov ", + "bug_id": 517199, + "desc": "Backed out changeset 19b4c1cacdb8 - everything related to bug 517199.", + "pushdate": "2009-10-07 06:47:58", + "backsout": [ + "19b4c1cacdb8566e50754fa077448f82f5fdb333" + ], + "backedoutby": "", + "author_email": "igor@mir2.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 41073179.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsapi.cpp", + "js/src/jsarray.cpp", + "js/src/jsbuiltins.cpp", + "js/src/jsfun.h", + "js/src/jsgc.cpp", + "js/src/jsgc.h", + "js/src/jsobj.cpp", + "js/src/jsops.cpp", + "js/src/jsstr.cpp", + "js/src/jsxml.cpp" + ], + "components": [ + "Core::JavaScript Engine" + ], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "5f550d67ae78e4db972d23f5132d3d304996cdc3", + "author": "Peter Van der Beken ", + "bug_id": 517196, + "desc": "Backed out changeset 542fa9413bd0, fix for bug 517196 (The JSClass of wrappers shouldn't change when morphing from slim to XPCWrappedNative), to try to fix orange.", + "pushdate": "2009-10-08 20:42:17", + "backsout": [ + "542fa9413bd08e153155cee686a99e445d32b6c8" + ], + "backedoutby": "", + "author_email": "peterv@propagandism.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 40970364.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "caps/src/nsScriptSecurityManager.cpp", + "js/src/xpconnect/idl/nsIXPConnect.idl", + "js/src/xpconnect/src/XPCChromeObjectWrapper.cpp", + "js/src/xpconnect/src/nsXPConnect.cpp", + "js/src/xpconnect/src/xpcconvert.cpp", + "js/src/xpconnect/src/xpcjsid.cpp", + "js/src/xpconnect/src/xpcprivate.h", + "js/src/xpconnect/src/xpcquickstubs.cpp", + "js/src/xpconnect/src/xpcwrappednative.cpp", + "js/src/xpconnect/src/xpcwrappednativejsops.cpp", + "js/src/xpconnect/src/xpcwrappednativescope.cpp" + ], + "components": [], + "directories": [ + "caps", + "js/src", + "js", + "caps/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "8d2de8ddfa3b79064d583a93d239153849decef6", + "author": "Markus Stange ", + "bug_id": 456646, + "desc": "Backed out changeset 8c4658f8f0dc, bug 456646 (Cocoa print dialog) - we can do better.", + "pushdate": "2009-10-09 07:14:00", + "backsout": [ + "8c4658f8f0dc147ef1d39486bb18b7557174deb6" + ], + "backedoutby": "", + "author_email": "mstange@themasta.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 40282936.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/app/Makefile.in", + "config/autoconf.mk.in", + "configure.in", + "dom/locales/en-US/chrome/printdialog.properties", + "dom/locales/jar.mn", + "embedding/components/printingui/src/mac/Makefile.in", + "embedding/components/printingui/src/mac/nsPrintingPromptService.h", + "embedding/components/printingui/src/mac/nsPrintingPromptServiceX.mm", + "embedding/components/printingui/src/win/nsPrintDialogUtil.cpp", + "toolkit/locales/en-US/chrome/global/gnomeprintdialog.properties", + "toolkit/locales/en-US/chrome/global/printdialog.properties", + "toolkit/locales/jar.mn", + "widget/public/Makefile.in", + "widget/src/cocoa/Makefile.in", + "widget/src/cocoa/nsDeviceContextSpecX.h", + "widget/src/cocoa/nsDeviceContextSpecX.mm", + "widget/src/cocoa/nsPrintDialogX.h", + "widget/src/cocoa/nsPrintDialogX.mm", + "widget/src/cocoa/nsPrintOptionsX.h", + "widget/src/cocoa/nsPrintOptionsX.mm", + "widget/src/cocoa/nsPrintSettingsX.h", + "widget/src/cocoa/nsPrintSettingsX.mm", + "widget/src/cocoa/nsWidgetFactory.mm", + "widget/src/gtk2/nsPrintDialogGTK.cpp" + ], + "components": [ + "Core::DOM: Core & HTML", + "Firefox Build System::General" + ], + "directories": [ + "embedding/components", + "widget", + "embedding", + "toolkit", + "browser/app", + "toolkit/locales", + "config", + "dom/locales", + "dom", + "widget/public", + "browser", + "widget/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "505a2a075e1125d4e22bd39de319aba6b75fd275", + "author": "L. David Baron ", + "bug_id": 516013, + "desc": "Backed out changeset 5f03363ae12d (Bug 516013) due to xpcshell test failure (test_LightweightThemeManager) caused by exception thrown from the code added in that changeset.", + "pushdate": "2009-10-09 20:32:36", + "backsout": [ + "5f03363ae12d29d35a2a6b5d416e7facd3d39cab" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 44328877.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/mozapps/extensions/src/LightweightThemeManager.jsm" + ], + "components": [], + "directories": [ + "toolkit/mozapps", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "b40bf2ef14a7abd4780f5e27b3f1b6a6eeaf2040", + "author": "Boris Zbarsky ", + "bug_id": 489925, + "desc": "Backed out changeset c5fe17b1caa9 (bug 489925)", + "pushdate": "2009-10-13 20:51:31", + "backsout": [ + "c5fe17b1caa9260622d530c0bc881cd5ce365a93" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 39912399.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/base/src/nsDocument.cpp", + "content/base/test/Makefile.in", + "content/base/test/test_bug489925.xhtml" + ], + "components": [], + "directories": [ + "content/base", + "content" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "86a6cd7011186bb5f48d02df639989627ce159bc", + "author": "Paul O\u2019Shannessy ", + "bug_id": 511761, + "desc": "Backed out changeset 89f53914ecd9 (bug 511761)", + "pushdate": "2009-10-14 19:44:25", + "backsout": [ + "89f53914ecd9ef406178ba6d8cdbde8db65610bf" + ], + "backedoutby": "", + "author_email": "paul@oshannessy.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 17373629.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/app/Makefile.in", + "toolkit/mozapps/extensions/src/nsExtensionManager.js.in", + "toolkit/xre/nsAppRunner.cpp", + "xpcom/build/nsXPComInit.cpp", + "xpcom/components/nsComponentManager.cpp", + "xpcom/io/nsFastLoadFile.cpp", + "xpcom/system/nsIXULRuntime.idl", + "xulrunner/app/Makefile.in" + ], + "components": [ + "Core::XPCOM", + "Firefox Build System::General", + "Toolkit::Startup and Profile System" + ], + "directories": [ + "toolkit", + "browser/app", + "xulrunner/app", + "xpcom/io", + "toolkit/xre", + "toolkit/mozapps", + "xpcom/build", + "xpcom/system", + "browser", + "xpcom", + "xpcom/components", + "xulrunner" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "c0af5f72e7a8c6ad41dfa35b404487eb98bde2a8", + "author": "Andreas Gal ", + "bug_id": 521880, + "desc": "Backed out changeset 1a747dd43904 (bug 521880).", + "pushdate": "2009-10-16 17:35:08", + "backsout": [ + "1a747dd439049f11fcdc9fb0abfff4530e72f88c" + ], + "backedoutby": "", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 40715030.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jstl.h", + "js/src/jstracer.cpp", + "js/src/jstracer.h", + "js/src/jsvector.h" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "39b3dbc393bf8996d58e6b2289d6d15622c5175c", + "author": "Igor Bukanov ", + "bug_id": 505315, + "desc": "Backed out changeset 487b81c753c0 - landing of bug 505315 caused talos crashes across platforms.", + "pushdate": "2009-10-16 17:35:08", + "backsout": [ + "487b81c753c0cb8080343beb4013424d6fe162df" + ], + "backedoutby": "", + "author_email": "igor@mir2.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 41889609.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsapi.cpp", + "js/src/jsarray.cpp", + "js/src/jscntxt.cpp", + "js/src/jscntxt.h", + "js/src/jsgc.cpp", + "js/src/jsgc.h", + "js/src/jsobj.cpp", + "js/src/jsops.cpp", + "js/src/jstracer.cpp" + ], + "components": [ + "Core::JavaScript Engine" + ], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "ef149d6975fba3847d8fa31a0913b8669e39bfd7", + "author": "Brian Crowder ", + "bug_id": 519843, + "desc": "Backed out changeset 9992a4a638e2 due to Tp regression (was bug 519843)", + "pushdate": "2009-10-21 14:58:16", + "backsout": [ + "9992a4a638e2598850d67f02672c038cb624513a" + ], + "backedoutby": "", + "author_email": "crowder@fiverocks.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 41181104.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/shell/js.cpp" + ], + "components": [ + "Core::JavaScript Engine" + ], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "f702deeb07be290c488489585cb969ee202ff537", + "author": "Brian Crowder ", + "bug_id": 517109, + "desc": "Backed out changeset 899023a9fbb0 due to Ts regression (was bug 517109)", + "pushdate": "2009-10-21 14:59:50", + "backsout": [ + "899023a9fbb058ef5a75986a393d8298a8cbd9bf" + ], + "backedoutby": "", + "author_email": "crowder@fiverocks.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 41181198.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/components/faststart/FastStartup.js" + ], + "components": [], + "directories": [ + "toolkit/components", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "e3f00dd9617b2918b6ee116026914972eef95a61", + "author": "Markus Stange ", + "bug_id": 300904, + "desc": "Backed out changeset 3ee95c194798, bug 300904 (tracking rects) in order to investigate the Mac DHTML performance regression.", + "pushdate": "2009-10-21 15:10:31", + "backsout": [ + "3ee95c194798dfee926d4485165dfa650a0a27fc" + ], + "backedoutby": "", + "author_email": "mstange@themasta.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 41348327.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "widget/src/cocoa/nsChildView.h", + "widget/src/cocoa/nsChildView.mm", + "widget/src/cocoa/nsCocoaWindow.mm", + "widget/tests/native_mouse_mac_window.xul" + ], + "components": [], + "directories": [ + "widget/tests", + "widget", + "widget/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "9e086fa7728869c161e37deefacb75ddcda34f65", + "author": "L. David Baron ", + "bug_id": 523934, + "desc": "Backed out changeset 1aea70ef6f63 (temporary debugging code for bug 523934).", + "pushdate": "2009-10-23 14:47:50", + "backsout": [ + "1aea70ef6f63b5a55b8f80de9c3d6367305987be" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 45517791.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/base/crashtests/500467-1.html", + "layout/forms/crashtests/366537-1.xhtml", + "layout/tools/reftest/reftest.js" + ], + "components": [ + "Core::Layout", + "Core::Layout: Form Controls" + ], + "directories": [ + "layout/tools", + "layout/forms", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "2909091fb254aa31b11cdfb4f4e9a25ab4253d85", + "author": "Igor Bukanov ", + "bug_id": 524346, + "desc": "Backed out changeset 14c76164f4c2 - patch for bug 524346 caused test fails", + "pushdate": "2009-10-29 21:11:42", + "backsout": [ + "14c76164f4c27bd969eec08f31f36f0101fff59f" + ], + "backedoutby": "", + "author_email": "igor@mir2.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 43025803.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsapi.cpp", + "js/src/jsarray.cpp", + "js/src/jsbuiltins.cpp", + "js/src/jscntxt.h", + "js/src/jsdate.cpp", + "js/src/jsmath.cpp", + "js/src/jsnum.cpp", + "js/src/jsnum.h", + "js/src/jsops.cpp", + "js/src/jsparse.cpp", + "js/src/jsstr.cpp", + "js/src/jstracer.cpp", + "js/src/jsxml.cpp" + ], + "components": [ + "Core::JavaScript: Standard Library", + "Core::JavaScript Engine" + ], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "fdc781e5774d92e5cd542b878ef2d33eceb00f4f", + "author": "David Mandelin ", + "bug_id": 515211, + "desc": "Backed out changeset 109b74e8e902 due to tinderbox bustage (was bug 515211)", + "pushdate": "2009-10-30 18:15:48", + "backsout": [ + "109b74e8e90201e3061449731e10fd502fb32a27" + ], + "backedoutby": "", + "author_email": "dmandelin@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 47851757.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "build/wince/shunt/mozce_shunt.def.in", + "memory/jemalloc/Makefile.in", + "memory/jemalloc/jemalloc.c", + "memory/jemalloc/jemalloc.h" + ], + "components": [], + "directories": [ + "build/wince", + "memory", + "memory/jemalloc", + "build" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "6258b513a554c5098972f89716461dd5460f09c2", + "author": "Boris Zbarsky ", + "bug_id": 526178, + "desc": "Backed out changeset 2fa27d8cd3d2 (bug 526178) to fix browser-chrome orange.", + "pushdate": "2009-11-05 01:42:46", + "backsout": [ + "2fa27d8cd3d20fbad807a7f9fc4a9b2728d8b8f4" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 41830674.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/xbl/test/Makefile.in", + "content/xbl/test/test_bug526178.xhtml", + "layout/base/nsCSSFrameConstructor.cpp", + "layout/base/nsCSSFrameConstructor.h" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "content", + "layout", + "layout/base", + "content/xbl" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "811e1602f0ab7f1c533ad8e1e54f756b9b8eab08", + "author": "Phil Ringnalda ", + "bug_id": 526789, + "desc": "Backed out changeset a696d331ebf7 (bug 526789) for test failures", + "pushdate": "2009-11-10 03:48:53", + "backsout": [ + "a696d331ebf79713e699db5675c7edc6bdf1a4e0" + ], + "backedoutby": "", + "author_email": "philringnalda@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 44332543.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "extensions/cookie/test/unit/test_bug481775.js", + "extensions/cookie/test/unit/test_bug526789.js", + "netwerk/cookie/public/nsICookieManager.idl", + "netwerk/cookie/src/nsCookieService.cpp" + ], + "components": [], + "directories": [ + "netwerk/cookie", + "extensions", + "netwerk", + "extensions/cookie" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "e8f791a62494b867be1757d44fe4e045afd406d6", + "author": "Benjamin Smedberg ", + "bug_id": 525221, + "desc": "Backed out changeset 3e1290bba902 - Bug 525221 which was committed accidentally.", + "pushdate": "2009-11-10 14:54:29", + "backsout": [ + "3e1290bba9029798016d7106237fea5850f8840c" + ], + "backedoutby": "", + "author_email": "benjamin@smedbergs.us", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 51833105.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "nsprpub/config/rules.mk" + ], + "components": [ + "NSPR::NSPR" + ], + "directories": [ + "nsprpub/config", + "nsprpub" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "eb6ad91709a7d298f32e70dbee18e9babc4a420a", + "author": "D\u00e3o Gottwald ", + "bug_id": 528776, + "desc": "Backed out changeset fa212b6a9d72 to see if it caused bug 528776", + "pushdate": "2009-11-18 08:23:36", + "backsout": [ + "fa212b6a9d72832a0c76ddf50c2bf4096570c264" + ], + "backedoutby": "", + "author_email": "dao@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 45339079.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/components/sessionstore/test/browser/browser_394759.js" + ], + "components": [], + "directories": [ + "browser/components", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "ac278013c79942a704e998304c58067803d41e2d", + "author": "Jeff Walden ", + "bug_id": 478047, + "desc": "Backed out changeset 975b36c50d33; bug 478047's fix was misguided and contra ES5, and moving to ES5 semantics at this late date in the release cycle seems unwise. We'll move from old and busted directly to ES5 shortly after 3.6 so as to provide maximum time for ironing out incompatibilities in the wild. r=gal", + "pushdate": "2009-11-19 10:58:47", + "backsout": [ + "975b36c50d33c8de608e798fcde43043db10bf68" + ], + "backedoutby": "", + "author_email": "jwalden@mit.edu", + "reviewers": [ + "gal" + ], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 47729464.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsobj.cpp", + "js/src/tests/ecma_3_1/extensions/jstests.list", + "js/src/tests/ecma_3_1/extensions/regress-478047.js", + "js/src/tests/js1_5/extensions/regress-452178.js", + "js/src/tests/js1_6/extensions/regress-414098.js" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "6432560e430e1db22fe038e4450a4912221837f4", + "author": "Mark Banner ", + "bug_id": 495392, + "desc": "Back out changeset c9c35333436b / Bug 495392 due to build bustage", + "pushdate": "2009-11-24 22:31:04", + "backsout": [ + "c9c35333436bbc7b67f0414ee039d1b26d598f8c" + ], + "backedoutby": "", + "author_email": "bugzilla@standard8.plus.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 46617168.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "widget/src/gtk2/nsClipboard.cpp", + "widget/src/gtk2/nsDragService.cpp" + ], + "components": [], + "directories": [ + "widget", + "widget/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "e101dddbc4324f9ef356207c1bcf8a65b184f5ff", + "author": "Igor Bukanov ", + "bug_id": 424558, + "desc": "Backed out changeset b774250f04d3 - the landed patch for bug 424558 has regressed.", + "pushdate": "2009-12-01 18:15:12", + "backsout": [ + "b774250f04d3cfe7a8caeaca641ade1c95edb18a" + ], + "backedoutby": "", + "author_email": "igor@mir2.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 45866413.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsopcode.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "fb34a7163a43fbf79f8d1a460804452df4cf86c7", + "author": "Robert Sayre ", + "bug_id": 530507, + "desc": "Backed out changeset c696751593d6. Tolerate race condition or broken resolve hook (530507, r=jorendorff).", + "pushdate": "2009-12-01 18:15:12", + "backsout": [ + "c696751593d6056cdc40e31d4c5604338ec1d0a6" + ], + "backedoutby": "", + "author_email": "sayrer@gmail.com", + "reviewers": [ + "jorendorff" + ], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 46479479.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsobj.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "ee7bfc1923adbc60e9223103e88b3d14286137d7", + "author": "Robert Sayre ", + "bug_id": 473228, + "desc": "Backed out changeset c03ebf340688. Bye-bye middle-deletes and their O(n^2) worst case complexity; hello dictionary-mode scopes (473228, r=jorendorff).", + "pushdate": "2009-12-01 18:15:12", + "backsout": [ + "c03ebf340688227093e8fece0634afc31813919b" + ], + "backedoutby": "", + "author_email": "sayrer@gmail.com", + "reviewers": [ + "jorendorff" + ], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 46479479.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsapi.cpp", + "js/src/jsarray.cpp", + "js/src/jsbuiltins.cpp", + "js/src/jscntxt.h", + "js/src/jsdbgapi.cpp", + "js/src/jsinterp.cpp", + "js/src/jsobj.cpp", + "js/src/jsopcode.cpp", + "js/src/jsops.cpp", + "js/src/jsparse.cpp", + "js/src/jsscope.cpp", + "js/src/jsscope.h", + "js/src/jsscopeinlines.h", + "js/src/jsstr.cpp", + "js/src/jstracer.cpp" + ], + "components": [ + "Core::JavaScript Engine" + ], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "1da324b951822655298a68e7ed122531ce36d59d", + "author": "Shawn Wilsher ", + "bug_id": 525356, + "desc": "Backed out changeset a93d705bb969 (bug 525356).", + "pushdate": "2009-12-01 23:07:52", + "backsout": [ + "a93d705bb969573e1298e95bee43281822d20880" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 47114441.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "storage/src/mozStorageConnection.cpp", + "storage/src/mozStorageConnection.h", + "storage/src/mozStorageStatement.cpp" + ], + "components": [], + "directories": [ + "storage/src", + "storage" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "8e986811ab388f741166aa7b34e2caa0f8088cd4", + "author": "Shawn Wilsher ", + "bug_id": 526601, + "desc": "Backed out changeset e9f64cd044f3 (bug 526601)", + "pushdate": "2009-12-01 23:07:52", + "backsout": [ + "e9f64cd044f3af6a40f6fac1f4d377890b92badc" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 47114441.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/components/places/src/nsPlacesDBFlush.js", + "toolkit/components/places/tests/sync/test_database_sync_after_shutdown_with_removeAllPages.js" + ], + "components": [], + "directories": [ + "toolkit/components", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "78faeda5e9702c28f7ac40bdd2ec5bc2cce13c85", + "author": "Shawn Wilsher ", + "bug_id": 496019, + "desc": "Backed out changeset f91a016416d1 (bug 496019)", + "pushdate": "2009-12-01 23:07:52", + "backsout": [ + "f91a016416d11272380828cc0b20c97a7c8cf851" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 47114441.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "storage/public/Makefile.in", + "storage/public/mozIStorageConnection.idl", + "storage/src/mozStorageAsyncStatementExecution.cpp", + "storage/src/mozStorageConnection.cpp", + "storage/src/mozStorageConnection.h", + "storage/src/mozStoragePrivateHelpers.cpp", + "storage/src/mozStoragePrivateHelpers.h", + "storage/test/unit/test_connection_executeAsync.js", + "storage/test/unit/test_storage_connection.js" + ], + "components": [ + "Toolkit::Storage" + ], + "directories": [ + "storage/src", + "storage", + "storage/test", + "storage/public" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "0af1f99d2cb05b4412464758b7f3b16ca0586ceb", + "author": "Peter Van der Beken ", + "bug_id": 524745, + "desc": "Back out 7856366bcd76 (Bug 524745 - \"Session restore sets focus to minimized windows\") to fix orange, also doesn't have approval yet.", + "pushdate": "2009-12-03 11:27:44", + "backsout": [ + "7856366bcd7639c1fbef1c9c2f311a7d3fff9bb0" + ], + "backedoutby": "", + "author_email": "peterv@propagandism.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 45775491.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/components/sessionstore/src/nsSessionStore.js", + "browser/components/sessionstore/test/browser/Makefile.in", + "browser/components/sessionstore/test/browser/browser_524745.js" + ], + "components": [], + "directories": [ + "browser/components", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "4bbe26190c7dc6dad0c1c3440a9064b92a2a8bd7", + "author": "Gavin Sharp ", + "bug_id": 525047, + "desc": "Back out revision dbdbe3ad0234 from bug 525047 - every leak test box that's clobbered since it landed has failed, not finding the first thing it tries to import from automationutils", + "pushdate": "2009-12-16 04:36:11", + "backsout": [ + "dbdbe3ad0234dd583e5e79e790d68d5eaa29b7a4" + ], + "backedoutby": "", + "author_email": "gavin@gavinsharp.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 4575651.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "build/Makefile.in", + "build/automation-build.mk", + "build/pgo/Makefile.in", + "layout/tools/reftest/Makefile.in", + "testing/mochitest/Makefile.in" + ], + "components": [], + "directories": [ + "layout/tools", + "build", + "testing/mochitest", + "testing", + "build/pgo", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "31067e0bf8bf4d1f532db455e07e710b4a1ac657", + "author": "Dietrich Ayala ", + "bug_id": 532542, + "desc": "Backed out changeset a6d5fda15815 for bug 532542 due to a test failure.", + "pushdate": "2009-12-16 08:22:45", + "backsout": [ + "a6d5fda1581505489181e12dea7de232aa854b43" + ], + "backedoutby": "", + "author_email": "dietrich@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 45915462.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/components/nsBrowserGlue.js" + ], + "components": [], + "directories": [ + "browser/components", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "ada564e50e86a6285a5a6773cadf7b2f5bc16885", + "author": "Benjamin Smedberg ", + "bug_id": 533688, + "desc": "Backed out changeset 08e208698ef0: Bug 533688 (Firefox 3.6 failed to start with AT-SPI2 0.1.3) because of consistent orange on Mac/Linux:\n\n1001 ERROR TEST-UNEXPECTED-FAIL | chrome://mochikit/content/a11y/accessible/test_events_doc.html | Test timed out.\n1011 ERROR TEST-UNEXPECTED-FAIL | chrome://mochikit/content/a11y/accessible/test_events_draganddrop.html | [SimpleTest/SimpleTest.js, window.onerror] An error occurred - nsIAccessibleEvent is not defined at chrome://mochikit/content/a11y/accessible/events.js:766\nand subsequent errors and leaks", + "pushdate": "2009-12-16 15:33:14", + "backsout": [ + "08e208698ef06722b65e7bd79c09bb9440481584" + ], + "backedoutby": "", + "author_email": "benjamin@smedbergs.us", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 54945830.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "accessible/src/atk/nsAccessibleWrap.cpp", + "accessible/src/base/nsRootAccessible.cpp" + ], + "components": [], + "directories": [ + "accessible/src", + "accessible" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "382b527f32a5a15af9d5387b5061a67e03b40145", + "author": "Benjamin Smedberg ", + "bug_id": 474500, + "desc": "Backed out changeset 94561cb0f0bd, bug 474500 because of static-analysis bustage.", + "pushdate": "2009-12-21 15:00:07", + "backsout": [ + "94561cb0f0bd8890f86cbdfb782f8426a32af5b7" + ], + "backedoutby": "", + "author_email": "benjamin@smedbergs.us", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 55375843.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsapi.cpp", + "js/src/jsapi.h", + "js/src/jsregexp.cpp", + "js/src/jstracer.cpp", + "js/src/jstracer.h" + ], + "components": [ + "Core::JavaScript Engine" + ], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "f32e7f33b01530d2dba7594c3899a1922da92f3c", + "author": "L. David Baron ", + "bug_id": 531585, + "desc": "Backout revisions fa5326c011b8, 8b22441911b0, and cfa10b01b1f6 (bug 531585) on suspicion of causing random orange bug 536382.", + "pushdate": "2009-12-22 20:49:25", + "backsout": [ + "fa5326c011b8d22f132d59d191b8f3316be5dda9", + "cfa10b01b1f657b7ac20ccaef5a666ffc334881c", + "8b22441911b036039ea3927cb2859ac4d67ae8b5" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 50723486.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/base/nsPresContext.cpp", + "layout/base/nsPresContext.h", + "layout/base/nsRefreshDriver.cpp", + "layout/base/nsRefreshDriver.h", + "layout/style/nsTransitionManager.cpp", + "layout/style/nsTransitionManager.h" + ], + "components": [ + "Core::Layout", + "Core::CSS Transitions and Animations" + ], + "directories": [ + "layout/style", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "03bec0d8715431e0ce811be9d7fe98e37c970978", + "author": "L. David Baron ", + "bug_id": 535004, + "desc": "Backed out changeset 2752efeb2fdd (Bug 535004: Check if we've fired an unload event before calling OnPageShow, in DocumentViewerImpl::LoadComplete) because the NS_ABORT_IF_FALSE that it added is firing in reftest and crashtest, at least on Linux.", + "pushdate": "2009-12-24 04:06:14", + "backsout": [ + "2752efeb2fddf68d810ccc9194b9fa24b0b45088" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 50836095.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/base/src/nsDocument.cpp", + "layout/base/nsDocumentViewer.cpp" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "content/base", + "content", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "a7e65c58693ee91a2756dcf0f5effd79237b5297", + "author": "D\u00e3o Gottwald ", + "bug_id": 529597, + "desc": "Backed out changeset 06e4ea15db72 (bug 529597) because of test_bug_405924.html failure", + "pushdate": "2009-12-29 12:35:10", + "backsout": [ + "06e4ea15db723b87686b2c9095c9418c8d7bccdc" + ], + "backedoutby": "", + "author_email": "dao@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 48896573.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/components/places/src/Makefile.in", + "browser/components/places/src/PlacesProtocolHandler.js", + "browser/installer/package-manifest.in" + ], + "components": [ + "Firefox::Installer" + ], + "directories": [ + "browser/installer", + "browser/components", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "ba2968f7fe46a45b9805a3c133aa1a052d18c964", + "author": "Nochum Sossonko ", + "bug_id": 530374, + "desc": "backout changeset dfc79d02e945, bug 530374 due to build failure", + "pushdate": "2009-12-31 00:07:12", + "backsout": [ + "dfc79d02e945f241872e0b1009fc09b581c398a3" + ], + "backedoutby": "", + "author_email": "highmind63@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 27112703.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/xslt/src/base/txDouble.cpp", + "content/xslt/src/base/txStringUtils.cpp", + "content/xslt/src/xpath/txMozillaXPathTreeWalker.cpp", + "content/xslt/src/xpath/txNodeSet.cpp", + "content/xslt/src/xslt/txMozillaXMLOutput.cpp", + "content/xul/content/src/nsXULElement.cpp" + ], + "components": [], + "directories": [ + "content/xul", + "content", + "content/xslt" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "387da540301942dae8f4385322ff1a611f4449e8", + "author": "Timothy Nikkel ", + "bug_id": 396367, + "desc": "Backed out changeset 640bf652618a (bug 396367)", + "pushdate": "2010-01-02 02:30:58", + "backsout": [ + "640bf652618a494751c80f5df9077d0833109a31" + ], + "backedoutby": "", + "author_email": "tnikkel@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 20041892.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/base/tests/chrome/test_bug396367-1.html", + "layout/base/tests/chrome/test_bug396367-2.html" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "35fec83dd2c53414d021c2bbae436f5b4d30b7d7", + "author": "Timothy Nikkel ", + "bug_id": 396367, + "desc": "Backed out changeset 63d4a49fbec1 (bug 396367)", + "pushdate": "2010-01-02 02:30:58", + "backsout": [ + "63d4a49fbec16b375f4a6cd72978d27573413eb1" + ], + "backedoutby": "", + "author_email": "tnikkel@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 20041892.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/base/nsCSSFrameConstructor.cpp", + "layout/base/nsPresShell.cpp", + "layout/base/tests/chrome/Makefile.in", + "layout/base/tests/chrome/test_bug396367-1.html", + "layout/base/tests/chrome/test_bug396367-2.html" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "ee9b5d13cbaf7f63bf6d757629d4f745f1e84350", + "author": "Jason Orendorff ", + "bug_id": 324278, + "desc": "Backed out changeset 3862a7e48e79 due to tinderbox failures on js1_5/GC/regress-324278.js.", + "pushdate": "2010-01-11 16:41:31", + "backsout": [ + "3862a7e48e79354ba53cb9c966114810ea6095a3" + ], + "backedoutby": "", + "author_email": "jorendorff@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 51132620.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsemit.cpp", + "js/src/jsfun.cpp", + "js/src/jsinterp.h", + "js/src/jsobj.cpp", + "js/src/jsops.cpp", + "js/src/jsparse.cpp", + "js/src/jsscript.cpp", + "js/src/tests/ecma_5/RegExp/7.8.5-1.js", + "js/src/tests/ecma_5/RegExp/jstests.list" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "2332266baf4de6387cd6572e5de9ff391e9f19d8", + "author": "Dave Townsend ", + "bug_id": 539165, + "desc": "Backed out changeset 4b725bb53baa from bug 539165 due to reftest failure", + "pushdate": "2010-01-13 00:28:11", + "backsout": [ + "4b725bb53baada5ccecf0c37c51042f821413743" + ], + "backedoutby": "", + "author_email": "dtownsend@oxymoronical.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 50852649.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "gfx/cairo/README", + "gfx/cairo/cairo/src/cairo-pattern.c", + "gfx/cairo/premultiply-alpha-solid-gradients.patch", + "layout/reftests/svg/opacity-and-gradient-02-ref.svg", + "layout/reftests/svg/opacity-and-gradient-02.svg", + "layout/reftests/svg/reftest.list" + ], + "components": [ + "Core::Graphics", + "Core::SVG" + ], + "directories": [ + "layout/reftests", + "gfx/cairo", + "gfx", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "974d9ffda7b6ae093fa49de036c60a7780af4e8e", + "author": "Markus Stange ", + "bug_id": 461291, + "desc": "Backed out changeset bde448aad47c, bug 461291, due to SunSpider and DHTML performance regression.", + "pushdate": "2010-01-13 19:56:38", + "backsout": [ + "bde448aad47ccb0215415f3cdc8abc58cb7d8638" + ], + "backedoutby": "", + "author_email": "mstange@themasta.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 48623094.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "widget/src/cocoa/nsChildView.mm", + "widget/src/cocoa/nsCocoaWindow.h", + "widget/src/cocoa/nsCocoaWindow.mm" + ], + "components": [], + "directories": [ + "widget", + "widget/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "1ef1d73eb050f79d35b528150c425022ee61f0ba", + "author": "Markus Stange ", + "bug_id": 461291, + "desc": "Backed out changeset bde448aad47c, bug 461291, due to SunSpider and DHTML performance regression.", + "pushdate": "2010-01-13 19:56:38", + "backsout": [ + "bde448aad47ccb0215415f3cdc8abc58cb7d8638" + ], + "backedoutby": "", + "author_email": "mstange@themasta.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 48623094.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [], + "components": [], + "directories": [], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "ffab97de1041b4ef62a31b104dd399033c7c773d", + "author": "Peter Van der Beken ", + "bug_id": 521377, + "desc": "Backout 76cdc8296409 and 9baa220b27c0 (Bug 521377 - 'NPRuntime: Segfault when NPP_GetValue_NPPVpluginScriptableNPObject returns a null actor') to try fo fix orange.", + "pushdate": "2010-01-19 12:01:49", + "backsout": [ + "76cdc829640917cfeddfb7324c761ea9609560fe" + ], + "backedoutby": "", + "author_email": "peterv@propagandism.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 49838336.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "dom/plugins/Makefile.in", + "dom/plugins/PPluginInstance.ipdl", + "dom/plugins/PPluginScriptableObject.ipdl", + "dom/plugins/PluginInstanceChild.cpp", + "dom/plugins/PluginInstanceChild.h", + "dom/plugins/PluginInstanceParent.cpp", + "dom/plugins/PluginInstanceParent.h", + "dom/plugins/PluginMessageUtils.cpp", + "dom/plugins/PluginMessageUtils.h", + "dom/plugins/PluginModuleChild.cpp", + "dom/plugins/PluginModuleChild.h", + "dom/plugins/PluginModuleParent.cpp", + "dom/plugins/PluginScriptableObjectChild.cpp", + "dom/plugins/PluginScriptableObjectChild.h", + "dom/plugins/PluginScriptableObjectParent.cpp", + "dom/plugins/PluginScriptableObjectParent.h", + "dom/plugins/PluginScriptableObjectUtils-inl.h", + "dom/plugins/PluginScriptableObjectUtils.h", + "modules/plugin/base/src/nsNPAPIPlugin.cpp" + ], + "components": [], + "directories": [ + "dom", + "modules/plugin", + "dom/plugins", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "b7008e0642660abcb74fccec100c3cbd45edc6bb", + "author": "Dave Townsend ", + "bug_id": 541739, + "desc": "Backed out changeset 4d7bde383df5 from bug 541739 due to test failures", + "pushdate": "2010-01-27 03:05:52", + "backsout": [ + "4d7bde383df56ee5910b7aa18a6a59f7461e377c" + ], + "backedoutby": "", + "author_email": "dtownsend@oxymoronical.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 52071710.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/components/downloads/src/nsDownloadManager.cpp", + "toolkit/components/downloads/test/unit/test_privatebrowsing_cancel.js" + ], + "components": [], + "directories": [ + "toolkit/components", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "6d50455cabaa3c695ad6e23200782d0790d6d59d", + "author": "Daniel Holbert ", + "bug_id": 543034, + "desc": "Backed out changeset dc7a04be6904 on suspicion of causing bug 543034.", + "pushdate": "2010-01-30 03:08:18", + "backsout": [ + "dc7a04be6904be41a95c33d70ba5908c3b8a2fc0" + ], + "backedoutby": "", + "author_email": "dholbert@cs.stanford.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 53989825.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/components/sessionstore/src/nsSessionStore.js", + "browser/components/sessionstore/test/browser/Makefile.in", + "browser/components/sessionstore/test/browser/browser_500328.js", + "content/base/public/nsIDocument.h", + "content/base/src/nsContentUtils.cpp", + "content/base/src/nsGkAtomList.h", + "content/events/src/Makefile.in", + "content/events/src/nsDOMEvent.cpp", + "content/events/src/nsDOMEvent.h", + "content/events/src/nsDOMPopStateEvent.cpp", + "content/events/src/nsDOMPopStateEvent.h", + "content/events/src/nsEventDispatcher.cpp", + "docshell/base/crashtests/500328-1.html", + "docshell/base/crashtests/crashtests.list", + "docshell/base/nsDocShell.cpp", + "docshell/base/nsDocShell.h", + "docshell/base/nsDocShellLoadTypes.h", + "docshell/base/nsIDocShell.idl", + "docshell/base/nsIDocShellHistory.idl", + "docshell/shistory/public/nsISHEntry.idl", + "docshell/shistory/src/nsSHEntry.cpp", + "docshell/shistory/src/nsSHEntry.h", + "docshell/shistory/src/nsSHistory.cpp", + "docshell/shistory/src/nsSHistory.h", + "dom/base/nsDOMClassInfo.cpp", + "dom/base/nsDOMClassInfo.h", + "dom/base/nsDOMClassInfoID.h", + "dom/base/nsGlobalWindow.cpp", + "dom/base/nsGlobalWindow.h", + "dom/base/nsHistory.cpp", + "dom/base/nsLocation.cpp", + "dom/base/nsPIDOMWindow.h", + "dom/interfaces/base/nsIDOMHistory.idl", + "dom/interfaces/events/Makefile.in", + "dom/interfaces/events/nsIDOMPopStateEvent.idl", + "dom/interfaces/json/nsIJSON.idl", + "dom/src/json/Makefile.in", + "dom/src/json/nsJSON.cpp", + "dom/tests/mochitest/whatwg/Makefile.in", + "dom/tests/mochitest/whatwg/file_bug500328_1.html", + "dom/tests/mochitest/whatwg/file_bug500328_2.html", + "dom/tests/mochitest/whatwg/test_bug500328.html", + "js/src/xpconnect/idl/nsIDispatchSupport.idl", + "js/src/xpconnect/idl/nsIXPConnect.idl", + "js/src/xpconnect/src/nsXPConnect.cpp", + "js/src/xpconnect/src/xpcprivate.h", + "js/src/xpconnect/src/xpcvariant.cpp", + "layout/base/nsDocumentViewer.cpp", + "modules/libpref/src/init/all.js", + "storage/src/Variant_inl.h", + "widget/public/nsGUIEvent.h", + "widget/src/xpwidgets/nsBaseWidget.cpp", + "xpcom/ds/nsIVariant.idl", + "xpcom/ds/nsVariant.cpp" + ], + "components": [ + "Core::DOM: Core & HTML", + "Core::XPCOM", + "Core::DOM: Navigation", + "Firefox::Bookmarks & History", + "Core::Layout" + ], + "directories": [ + "modules/libpref", + "docshell/shistory", + "docshell/base", + "dom/interfaces", + "storage", + "dom/base", + "content/base", + "content", + "modules", + "js/src", + "dom", + "browser", + "js", + "layout", + "xpcom/ds", + "dom/src", + "docshell", + "storage/src", + "browser/components", + "xpcom", + "layout/base", + "widget", + "dom/tests", + "widget/public", + "widget/src", + "content/events" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "aefe5d2d14d87caa20f4ee572888fc01d46e0a2d", + "author": "Karl Tomlinson ", + "bug_id": 540910, + "desc": "backout ebca6061298f as an immediate flush should not be necessary b=540910", + "pushdate": "2010-02-02 06:01:17", + "backsout": [ + "ebca6061298fdd3c51bb10e097c4fa943162a82c" + ], + "backedoutby": "", + "author_email": "karlt+@karlt.net", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 49690053.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/generic/test/plugin_clipping_helper2.xhtml" + ], + "components": [], + "directories": [ + "layout/generic", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "a8d05daa31921404c46e258857f0e9c4513382ae", + "author": "Karl Tomlinson ", + "bug_id": 355548, + "desc": "backout 4dc8bdb7af6d due to 355548-2 reftest failure", + "pushdate": "2010-02-02 07:30:20", + "backsout": [ + "4dc8bdb7af6da21a247874bc54b1349d154a4738" + ], + "backedoutby": "", + "author_email": "karlt+@karlt.net", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 49695396.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/base/nsCSSFrameConstructor.cpp", + "layout/mathml/mathml.css", + "layout/reftests/mathml/math-height-1-ref.xhtml", + "layout/reftests/mathml/math-height-1.xhtml", + "layout/reftests/mathml/reftest.list" + ], + "components": [ + "Core::Layout", + "Core::MathML" + ], + "directories": [ + "layout/reftests", + "layout/mathml", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "e03e9d4315d8b99f9135ea3e971c74a6eda8ef30", + "author": "Daniel Holbert ", + "bug_id": 542263, + "desc": "Backed out changeset 8006ad2d0c06 (tests for bug 542263), since its test 'test_GCrace.html' failed on OSX in its first cycle.", + "pushdate": "2010-02-03 02:59:54", + "backsout": [ + "8006ad2d0c066e0ec0f6810bfedfb1a93d487e56" + ], + "backedoutby": "", + "author_email": "dholbert@cs.stanford.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 54334921.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "build/automation.py.in", + "modules/plugin/test/mochitest/Makefile.in", + "modules/plugin/test/mochitest/test_GCrace.html", + "modules/plugin/test/testplugin/README", + "modules/plugin/test/testplugin/nptest.cpp" + ], + "components": [], + "directories": [ + "modules", + "modules/plugin", + "build" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "29795c58dd72f74e5cde8365503544a8e851a8f8", + "author": "Daniel Holbert ", + "bug_id": 542263, + "desc": "Backed out changeset c502a1a0900a (patch for bug 542263), since its test 'test_GCrace.html' failed on OSX in its first cycle.", + "pushdate": "2010-02-03 02:59:54", + "backsout": [ + "c502a1a0900af4ae6f4db3f21ecad87f7738c79b" + ], + "backedoutby": "", + "author_email": "dholbert@cs.stanford.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 54334921.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "dom/plugins/PluginScriptableObjectChild.cpp", + "dom/plugins/PluginScriptableObjectParent.cpp" + ], + "components": [], + "directories": [ + "dom", + "dom/plugins" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "56a02566af5364f799d5fb319e26e43d9f2b318c", + "author": "Daniel Holbert ", + "bug_id": 543034, + "desc": "Backed out changeset 0949b169357b (possible workaround for Bug 543034), since it didn't help.", + "pushdate": "2010-02-03 03:33:23", + "backsout": [ + "0949b169357bddaaabb90b68d8fdd151407a9114" + ], + "backedoutby": "", + "author_email": "dholbert@cs.stanford.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 54336930.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/components/places/src/nsAnnotationService.cpp" + ], + "components": [], + "directories": [ + "toolkit/components", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "6b2bbb23d53a0767158a7ebebb8a179e8a612956", + "author": "D\u00e3o Gottwald ", + "bug_id": 398289, + "desc": "Backed out changeset 8c2e7ae5cceb because of test_bug398289.html failure", + "pushdate": "2010-02-04 16:18:05", + "backsout": [ + "8c2e7ae5cceba14fe8c491d3ac0a03be3fa29d68" + ], + "backedoutby": "", + "author_email": "dao@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 52106748.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/base/src/nsGkAtomList.h", + "content/canvas/src/nsCanvasRenderingContext2D.cpp", + "content/html/content/src/nsHTMLCanvasElement.cpp", + "layout/base/nsLayoutUtils.cpp", + "layout/base/nsLayoutUtils.h", + "layout/base/nsPresContext.cpp", + "layout/base/nsPresShell.cpp", + "layout/generic/nsFrame.cpp", + "layout/generic/nsHTMLReflowState.cpp", + "layout/generic/nsIFrame.h" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "content/canvas", + "layout/generic", + "content/base", + "content", + "content/html", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "609a51758b08110dd0fe738a88c95783d6fea658", + "author": "L. David Baron ", + "bug_id": 544505, + "desc": "Backed out changeset db1f6446efda (flip pref, bug 544505), which is intended only for 1.9.3a1 and not to stay on trunk.", + "pushdate": "2010-02-05 19:37:29", + "backsout": [ + "db1f6446efda7f9bd61ef05337ffb10c1a74d9ca" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 54607170.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/app/profile/firefox.js" + ], + "components": [ + "Firefox::General" + ], + "directories": [ + "browser", + "browser/app" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "edbd3823dceb5ddb8cb16722fb98f34d571787e5", + "author": "Boris Zbarsky ", + "bug_id": 543111, + "desc": "Backed out changeset df90f0171ba7 (bug 543111)", + "pushdate": "2010-02-09 19:35:07", + "backsout": [ + "df90f0171ba7d51f932769131d4d0992b6debaa9" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 50189415.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/crashreporter/Makefile.in", + "toolkit/crashreporter/google-breakpad/src/common/dwarf/functioninfo.cc", + "toolkit/crashreporter/google-breakpad/src/common/mac/Makefile.in" + ], + "components": [ + "Toolkit::Crash Reporting" + ], + "directories": [ + "toolkit", + "toolkit/crashreporter" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "83adba23046790d0de32384c4c12cf5974cb839e", + "author": "L. David Baron ", + "bug_id": 540692, + "desc": "Backed out changeset 0ddf975663a0 (Bug 540692: Blocklist vksaver.dll) to test the theory that it is the cause of number 1 topcrash bug 545195.", + "pushdate": "2010-02-11 05:54:10", + "backsout": [ + "0ddf975663a00d272f07e689799aa18c3133ed87" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 55076171.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/xre/nsWindowsDllBlocklist.h" + ], + "components": [], + "directories": [ + "toolkit", + "toolkit/xre" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "9ce73c19f74a239c5deda19cdaed34ce7c627058", + "author": "Benjamin Smedberg ", + "bug_id": 517097, + "desc": "Backed out changeset fe08cc555248 - bug 517097 - make enabling debug symbols more sane because it added -fno-inline to opt builds and a 50% perf regression", + "pushdate": "2010-02-11 22:17:32", + "backsout": [ + "fe08cc55524896c2d51697c1f7fdb7d7d5bab0b6" + ], + "backedoutby": "", + "author_email": "benjamin@smedbergs.us", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 59894888.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "config/autoconf.mk.in", + "config/config.mk", + "configure.in", + "js/src/config/autoconf.mk.in", + "js/src/config/config.mk", + "js/src/configure.in" + ], + "components": [ + "Firefox Build System::General" + ], + "directories": [ + "js/src", + "config", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "4e883e25a86ca9a2cf9d18294c04e25c2f1830e4", + "author": "Timothy Nikkel ", + "bug_id": 545593, + "desc": "Backed out changeset 93c7b23284b8 (Bug 545593) for causing Md oth failures on linux.", + "pushdate": "2010-02-12 22:36:40", + "backsout": [ + "93c7b23284b828d28423bfcf0f9f8f59b6f625c6" + ], + "backedoutby": "", + "author_email": "tnikkel@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 23656634.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/base/src/nsContentSink.cpp", + "content/base/src/nsContentSink.h", + "content/html/document/src/nsMediaDocument.cpp", + "content/xul/document/src/nsXULDocument.cpp", + "docshell/base/nsDocShell.cpp", + "docshell/base/nsIContentViewer.idl", + "intl/chardet/src/nsDetectionAdaptor.cpp", + "intl/chardet/src/nsObserverBase.cpp", + "layout/base/nsDocumentViewer.cpp", + "parser/html/nsHtml5TreeOpExecutor.cpp", + "view/public/nsIViewManager.h", + "view/src/nsViewManager.cpp", + "view/src/nsViewManager.h", + "webshell/public/nsIWebShellServices.h" + ], + "components": [ + "Core::Layout", + "Core::DOM: HTML Parser", + "Core::DOM: Navigation" + ], + "directories": [ + "parser/html", + "docshell/base", + "webshell", + "docshell", + "webshell/public", + "content/xul", + "content/base", + "content", + "intl", + "intl/chardet", + "parser", + "view", + "content/html", + "view/public", + "view/src", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "8098e1f09e779ef5234a73446b487a80705598b3", + "author": "Benjamin Smedberg ", + "bug_id": 543764, + "desc": "Backed out changeset 4d8d4fd97c4f - bug 543764, because of deadlocks.", + "pushdate": "2010-02-18 15:27:52", + "backsout": [ + "4d8d4fd97c4ffd5a0776bb3c6a15b3c4d281f533" + ], + "backedoutby": "", + "author_email": "benjamin@smedbergs.us", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 60475108.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "ipc/glue/AsyncChannel.cpp" + ], + "components": [], + "directories": [ + "ipc/glue", + "ipc" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "f17dbc97dae0154c797e0b35e79ed887533efa34", + "author": "Paul O\u2019Shannessy ", + "bug_id": 520659, + "desc": "Backed out changeset 2c60006b6c1f (bug 520659) because of resulting orange.", + "pushdate": "2010-02-22 23:33:54", + "backsout": [ + "2c60006b6c1fedd09095b3153dd6415765f478ff" + ], + "backedoutby": "", + "author_email": "paul@oshannessy.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 28705798.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/components/places/content/menu.xml", + "browser/components/places/content/toolbar.xml", + "browser/components/places/content/tree.xml", + "browser/components/places/content/treeView.js", + "toolkit/components/places/public/nsINavHistoryService.idl", + "toolkit/components/places/src/nsNavHistoryResult.cpp", + "toolkit/components/places/src/nsNavHistoryResult.h", + "toolkit/components/places/src/utils.js" + ], + "components": [ + "Firefox::Bookmarks & History" + ], + "directories": [ + "toolkit/components", + "browser/components", + "toolkit", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "639c6e42ee38ee67252f2400fe15d900a936b256", + "author": "Shawn Wilsher ", + "bug_id": 193911, + "desc": "Backed out changeset bb9e847a02c8 (bug 193911) due to performance regressions.", + "pushdate": "2010-02-24 01:11:56", + "backsout": [ + "bb9e847a02c8775f7ec1ead5f4b9cc93413c4522" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 54379485.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "modules/libpref/src/init/all.js", + "netwerk/cache/src/nsCacheService.cpp" + ], + "components": [], + "directories": [ + "modules/libpref", + "netwerk/cache", + "netwerk", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "1fe0f3ad7b08a85ca25cec112e138b8ff6cf41b9", + "author": "Igor Bukanov ", + "bug_id": 538463, + "desc": "Backed out changeset b9700adc3951 - the landing for the bug 538463 had wrong changes", + "pushdate": "2010-02-24 20:41:25", + "backsout": [ + "b9700adc3951772b747de841adcaa97efda50e3e" + ], + "backedoutby": "", + "author_email": "igor@mir2.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 53219186.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsgc.cpp", + "js/src/jsgc.h", + "js/src/jsinterp.cpp", + "js/src/jsinterp.h", + "js/src/jslock.cpp", + "js/src/jslock.h", + "js/src/jsobj.cpp", + "js/src/jsobj.h", + "js/src/jsops.cpp", + "js/src/jsscope.cpp", + "js/src/jsscope.h", + "js/src/jstracer.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "636964f611b3e4f72815f9f9306f26303c816816", + "author": "Nicholas Nethercote ", + "bug_id": 507089, + "desc": "Backed out changeset 3c673457c90b for bug 507089 due to mysterious Windows bustage.", + "pushdate": "2010-02-24 20:41:25", + "backsout": [ + "3c673457c90be7687423746c61bb79fddfb58a4e" + ], + "backedoutby": "", + "author_email": "nnethercote@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 31491347.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsbuiltins.h", + "js/src/jstracer.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "7594db5d213a7364f6bd375064eacbc3b80a53ad", + "author": "Benjamin Smedberg ", + "bug_id": 532208, + "desc": "Backed out changeset e4a7ea0bb90f bug 532208 - asynchronous stream delivery because write events were being dispatched in odd re-entrant states and NPP_DestroyStream was being delivered before all the stream data was delivered.", + "pushdate": "2010-02-25 11:05:10", + "backsout": [ + "e4a7ea0bb90f194343f128880d45f99be27860a7" + ], + "backedoutby": "", + "author_email": "benjamin@smedbergs.us", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 61064146.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "dom/plugins/BrowserStreamChild.cpp", + "dom/plugins/BrowserStreamChild.h", + "dom/plugins/BrowserStreamParent.cpp", + "dom/plugins/BrowserStreamParent.h", + "dom/plugins/PBrowserStream.ipdl", + "dom/plugins/PluginInstanceParent.cpp", + "dom/plugins/PluginModuleChild.cpp" + ], + "components": [], + "directories": [ + "dom", + "dom/plugins" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "3fa8aa3c951ce7b1c604cc764ff2f85536a88a6e", + "author": "Benjamin Smedberg ", + "bug_id": 548217, + "desc": "Backed out changeset 77dc38d8196e - bug 548217 because even though this patch is correct, it exposes a bug in the OOPP code which got backed out.", + "pushdate": "2010-02-25 11:59:26", + "backsout": [ + "77dc38d8196e827f0099ce97b1abffd9de408644" + ], + "backedoutby": "", + "author_email": "benjamin@smedbergs.us", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 61067402.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "modules/plugin/base/public/nsIPluginInstanceOwner.idl", + "modules/plugin/base/src/nsNPAPIPlugin.cpp", + "modules/plugin/base/src/nsNPAPIPluginInstance.cpp", + "modules/plugin/base/src/nsPluginHost.cpp", + "modules/plugin/test/testplugin/nptest.cpp" + ], + "components": [], + "directories": [ + "modules/plugin", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "840e6ea115dbc3f4fccc1c78101426bc45013a98", + "author": "Benjamin Smedberg ", + "bug_id": 548217, + "desc": "Backed out changeset f829f942873d - bug 548217 because of topcrash bug 549112", + "pushdate": "2010-02-27 22:44:12", + "backsout": [ + "f829f942873d897d26a8c88f65db2c38ed3b13c9" + ], + "backedoutby": "", + "author_email": "benjamin@smedbergs.us", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 61278888.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "modules/plugin/base/public/nsIPluginInstanceOwner.idl", + "modules/plugin/base/src/nsNPAPIPlugin.cpp", + "modules/plugin/base/src/nsNPAPIPluginInstance.cpp", + "modules/plugin/base/src/nsPluginHost.cpp", + "modules/plugin/test/testplugin/nptest.cpp" + ], + "components": [], + "directories": [ + "modules/plugin", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "81b2e55ea5b454ac88c2894961709a984eaa572c", + "author": "Daniel Holbert ", + "bug_id": 547333, + "desc": "Backed out changeset e9ab6e4d121d (Bug 547333 followup) due to debug mochitest orange.", + "pushdate": "2010-03-02 16:30:18", + "backsout": [ + "e9ab6e4d121d97c2f8be97229e05ac3c53d43091" + ], + "backedoutby": "", + "author_email": "dholbert@cs.stanford.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 56716345.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/smil/crashtests/483584-1.svg", + "content/smil/crashtests/483584-2.svg", + "content/smil/crashtests/crashtests.list", + "content/svg/content/src/nsSVGElement.cpp", + "layout/base/nsPresShell.cpp" + ], + "components": [], + "directories": [ + "content/smil", + "content", + "content/svg", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "44ef1e2129706317a17b29e7ff8bdb04b2424342", + "author": "Boris Zbarsky ", + "bug_id": 503832, + "desc": "Backed out changeset 2da8ac54d264 (followup to bug 503832)", + "pushdate": "2010-03-09 14:37:10", + "backsout": [ + "2da8ac54d264738d4a40d1d26c7bd6c7e37572ee" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 52590738.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "docshell/test/browser/browser_bug503832.js" + ], + "components": [ + "Core::DOM: Navigation" + ], + "directories": [ + "docshell/test", + "docshell" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "d11772a5043cbc951328ba53c188f1c7fcc7e73b", + "author": "Boris Zbarsky ", + "bug_id": 550882, + "desc": "Backed out changeset c7c0db9074c7 (bug 550882) on suspicion of causing a Tsspider regression.", + "pushdate": "2010-03-09 14:37:10", + "backsout": [ + "c7c0db9074c70f9d5ed3966fa1bb2283800a69b4" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 52590738.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/generic/nsGfxScrollFrame.cpp", + "layout/reftests/bugs/502447-2-ref.html", + "layout/reftests/bugs/502447-2.html", + "layout/reftests/bugs/550882-1-ref.html", + "layout/reftests/bugs/550882-1.html", + "layout/reftests/bugs/550882-2-ref.html", + "layout/reftests/bugs/550882-2.html" + ], + "components": [ + "Core::Layout", + "Core::Layout: Scrolling and Overflow" + ], + "directories": [ + "layout/reftests", + "layout/generic", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "eaf1574b10b627e935444b631df4e9db2e4db496", + "author": "Boris Zbarsky ", + "bug_id": 503832, + "desc": "Backed out changeset dc835fb21c0c (bug 503832) on suspicion of causing a Tsspider regression.", + "pushdate": "2010-03-09 14:37:10", + "backsout": [ + "dc835fb21c0c9bc4eb03c956c76963d8947396c8" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 52590738.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "docshell/base/nsDocShell.cpp", + "docshell/test/browser/Makefile.in", + "docshell/test/browser/browser_bug503832.js", + "docshell/test/browser/file_bug503832.html" + ], + "components": [ + "Core::DOM: Navigation" + ], + "directories": [ + "docshell/test", + "docshell/base", + "docshell" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "76a071c6dfd0e74dd1f672eaa2394a037eb5afec", + "author": "Boris Zbarsky ", + "bug_id": 550882, + "desc": "Backed out changeset f0239b3789d9 (bug 550882) because it causes a Tsspider regression.", + "pushdate": "2010-03-11 06:00:37", + "backsout": [ + "f0239b3789d997dc94989c0ae67c4566c979a8c5" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 52732545.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/generic/nsGfxScrollFrame.cpp", + "layout/reftests/bugs/502447-2-ref.html", + "layout/reftests/bugs/502447-2.html", + "layout/reftests/bugs/550882-1-ref.html", + "layout/reftests/bugs/550882-1.html", + "layout/reftests/bugs/550882-2-ref.html", + "layout/reftests/bugs/550882-2.html" + ], + "components": [ + "Core::Layout", + "Core::Layout: Scrolling and Overflow" + ], + "directories": [ + "layout/reftests", + "layout/generic", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "55f6e18f71cd0906e457317f45f4bdf14f28ec53", + "author": "Markus Stange ", + "bug_id": 538187, + "desc": "Backed out changeset d906e4dd1e49, bug 538187 - CSS changes for :-moz-window-inactive pseudoclass because of test_righttoleft.xul test failures.", + "pushdate": "2010-03-17 19:06:03", + "backsout": [ + "d906e4dd1e4957d46aaad39dfbd6f64990ca52dd" + ], + "backedoutby": "", + "author_email": "mstange@themasta.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 54063259.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/themes/pinstripe/browser/browser.css", + "browser/themes/pinstripe/browser/places/organizer.css", + "toolkit/themes/pinstripe/global/console/console.css", + "toolkit/themes/pinstripe/global/jar.mn", + "toolkit/themes/pinstripe/global/preferences.css", + "toolkit/themes/pinstripe/global/toolbar/toolbar-background-inactive.png", + "toolkit/themes/pinstripe/global/toolbar/toolbar-background.gif", + "toolkit/themes/pinstripe/global/viewbuttons.css", + "toolkit/themes/pinstripe/mozapps/downloads/downloads.css", + "toolkit/themes/pinstripe/mozapps/update/updates.css", + "toolkit/themes/winstripe/global/global.css", + "toolkit/themes/winstripe/global/jar.mn", + "toolkit/themes/winstripe/global/menu.css" + ], + "components": [], + "directories": [ + "toolkit/themes", + "browser/themes", + "toolkit", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "11d4bebe3514ef47021734d052468df2ed7315ff", + "author": "Markus Stange ", + "bug_id": 508482, + "desc": "Backed out changeset e17c076aceea, bug 508482 (:-moz-window-inactive pseudoclass) because of test_righttoleft.xul test failures.", + "pushdate": "2010-03-17 19:06:03", + "backsout": [ + "e17c076aceea1afeb0d105c1a3b701d698a6c134" + ], + "backedoutby": "", + "author_email": "mstange@themasta.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 54063259.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "accessible/src/base/nsDocAccessible.cpp", + "content/base/public/nsIDocument.h", + "content/base/public/nsIDocumentObserver.h", + "content/base/src/nsDocument.cpp", + "content/base/src/nsDocument.h", + "content/xul/document/src/nsXULDocument.cpp", + "dom/base/nsGlobalWindow.cpp", + "dom/base/nsGlobalWindow.h", + "dom/base/nsPIDOMWindow.h", + "dom/tests/mochitest/chrome/Makefile.in", + "dom/tests/mochitest/chrome/test_activation.xul", + "dom/tests/mochitest/chrome/window_activation.xul", + "layout/base/nsPresContext.cpp", + "layout/base/nsPresContext.h", + "layout/base/nsPresShell.cpp", + "layout/style/nsCSSPseudoClassList.h", + "layout/style/nsCSSRuleProcessor.cpp", + "layout/style/nsCSSRuleProcessor.h", + "layout/style/nsHTMLCSSStyleSheet.cpp", + "layout/style/nsHTMLCSSStyleSheet.h", + "layout/style/nsHTMLStyleSheet.cpp", + "layout/style/nsHTMLStyleSheet.h", + "layout/style/nsIStyleRuleProcessor.h", + "layout/style/nsRuleProcessorData.h", + "layout/style/nsStyleSet.cpp", + "layout/style/nsStyleSet.h", + "layout/style/nsTransitionManager.cpp", + "layout/style/nsTransitionManager.h", + "layout/style/test/test_selectors.html" + ], + "components": [ + "Core::Layout", + "Core::DOM: Core & HTML", + "Core::CSS Parsing and Computation", + "Core::CSS Transitions and Animations" + ], + "directories": [ + "dom/tests", + "accessible/src", + "accessible", + "dom/base", + "content/xul", + "content/base", + "content", + "dom", + "layout/style", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "33925fdc28073fc9a47ed32da1a20ee2c2e246b5", + "author": "Daniel Holbert ", + "bug_id": 541588, + "desc": "Backed out changeset 59f507847beb (bug 541588) to see if it was responsible for minor SVG perf regression.", + "pushdate": "2010-03-18 14:58:59", + "backsout": [ + "59f507847bebe3248f436d9c95e9acfd14871efc" + ], + "backedoutby": "", + "author_email": "dholbert@cs.stanford.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 58093266.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/base/public/nsIDocument.h", + "content/smil/nsSMILAnimationController.cpp", + "content/smil/nsSMILAnimationController.h", + "layout/base/nsPresShell.cpp" + ], + "components": [], + "directories": [ + "content/smil", + "content/base", + "content", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "09b395158b415b7f18dbc6c744d7d04f73fb57a5", + "author": "Daniel Holbert ", + "bug_id": 553075, + "desc": "Backed out changeset 665b48fbfd28 (bug 553075) to see if it was responsible for 1% SVG/DHTML regressions on Win7.", + "pushdate": "2010-03-21 05:57:22", + "backsout": [ + "665b48fbfd2840e6d309c9703cbef46a9df0cad2" + ], + "backedoutby": "", + "author_email": "dholbert@cs.stanford.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 58319969.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/smil/nsSMILAnimationController.cpp", + "content/smil/nsSMILAnimationController.h" + ], + "components": [], + "directories": [ + "content", + "content/smil" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "f85c2efb4eaf76c06c6a8438e77c5701cb8ba604", + "author": "Markus Stange ", + "bug_id": 538242, + "desc": "Backed out changeset 77e1ae41987e, bug 538242, because of window bounds related test failures.", + "pushdate": "2010-03-25 10:31:30", + "backsout": [ + "77e1ae41987e11e348b4a60047694308b2425e6c" + ], + "backedoutby": "", + "author_email": "mstange@themasta.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 54723586.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "widget/src/cocoa/nsCocoaWindow.h", + "widget/src/cocoa/nsCocoaWindow.mm" + ], + "components": [], + "directories": [ + "widget", + "widget/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "670efad709bfa3ba522ba3a2f61b48cde4152f99", + "author": "Daniel Holbert ", + "bug_id": 551298, + "desc": "Backed out changeset 13819d2e9bd8 (Bug 551298) due to Linux debug mochitest-5 orange", + "pushdate": "2010-04-01 16:46:48", + "backsout": [ + "13819d2e9bd852c11f7ed0c7774dd03867283054" + ], + "backedoutby": "", + "author_email": "dholbert@cs.stanford.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 59309335.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/smil/nsSMILInstanceTime.h", + "content/xbl/src/nsXBLBinding.h", + "content/xbl/src/nsXBLInsertionPoint.cpp", + "content/xbl/src/nsXBLInsertionPoint.h", + "content/xbl/src/nsXBLPrototypeBinding.cpp", + "content/xslt/src/xslt/txMozillaStylesheetCompiler.cpp", + "content/xslt/src/xslt/txStandaloneStylesheetCompiler.cpp", + "content/xslt/src/xslt/txStylesheet.h", + "content/xslt/src/xslt/txStylesheetCompiler.cpp", + "content/xslt/src/xslt/txStylesheetCompiler.h", + "content/xul/templates/src/nsRDFBinding.h" + ], + "components": [], + "directories": [ + "content/smil", + "content/xbl", + "content/xul", + "content", + "content/xslt" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "d3acd60e4d5361a9e8729f365dc3ba68cee131ba", + "author": "Daniel Holbert ", + "bug_id": 551298, + "desc": "Backed out changeset afcaf3670c21 (Bug 551298) due to Linux debug mochitest-5 orange", + "pushdate": "2010-04-01 16:46:48", + "backsout": [ + "afcaf3670c21042a3baa51fdd712f241725f37a5" + ], + "backedoutby": "", + "author_email": "dholbert@cs.stanford.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 59309335.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/style/nsCSSValue.cpp", + "layout/style/nsCSSValue.h", + "layout/style/nsStyleStruct.cpp", + "layout/style/nsStyleStruct.h" + ], + "components": [ + "Core::CSS Parsing and Computation" + ], + "directories": [ + "layout/style", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "50731f2bd852892bc11944485f5f93e0c27fce4b", + "author": "Daniel Holbert ", + "bug_id": 551298, + "desc": "Backed out changeset 29bc09de2f77 (Bug 551298) due to Linux debug mochitest-5 orange", + "pushdate": "2010-04-01 16:46:48", + "backsout": [ + "29bc09de2f77959309d104ce26e3877f76c3d1e0" + ], + "backedoutby": "", + "author_email": "dholbert@cs.stanford.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 59309335.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/svg/content/src/nsSVGMatrix.cpp", + "content/svg/content/src/nsSVGMatrix.h", + "gfx/layers/Layers.h", + "gfx/thebes/public/gfxASurface.h", + "gfx/thebes/public/gfxContext.h", + "gfx/thebes/public/gfxFont.h", + "gfx/thebes/public/gfxGdkNativeRenderer.h", + "gfx/thebes/public/gfxPath.h", + "gfx/thebes/public/gfxPattern.h", + "gfx/thebes/public/gfxRect.h", + "gfx/thebes/public/gfxTypes.h", + "gfx/thebes/public/gfxUserFontSet.h", + "gfx/thebes/src/gfxFontconfigUtils.h", + "gfx/thebes/src/gfxPangoFonts.cpp", + "layout/printing/nsPrintData.h" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "gfx/layers", + "gfx/thebes", + "layout/printing", + "content", + "content/svg", + "gfx", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "c0395cad35f39dbcc3d0514c16f468a1a4ae84b9", + "author": "Daniel Holbert ", + "bug_id": 551298, + "desc": "Backed out changeset e94819033c77 (Bug 551298) due to Linux debug mochitest-5 orange", + "pushdate": "2010-04-01 16:46:48", + "backsout": [ + "e94819033c77aab855f2661b9fe3d61c41bfa381" + ], + "backedoutby": "", + "author_email": "dholbert@cs.stanford.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 59309335.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "xpcom/glue/nsISupportsImpl.h" + ], + "components": [], + "directories": [ + "xpcom/glue", + "xpcom" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "df2717c37e7f70da06d2e1f46a288743b3414264", + "author": "Daniel Holbert ", + "bug_id": 551298, + "desc": "Backed out changeset fe801c8a2090 (Bug 551298) due to Linux debug mochitest-5 orange", + "pushdate": "2010-04-01 16:46:48", + "backsout": [ + "fe801c8a20904bb40bd2a64fd8fb5a0bd463e104" + ], + "backedoutby": "", + "author_email": "dholbert@cs.stanford.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 59309335.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "gfx/thebes/public/gfxTypes.h", + "xpcom/glue/nsISupportsImpl.h", + "xpcom/glue/nsISupportsUtils.h" + ], + "components": [], + "directories": [ + "xpcom/glue", + "gfx/thebes", + "gfx", + "xpcom" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "f843e0928e1119d1fbafba72e5ed1aea575fbbe5", + "author": "Ted Mielczarek ", + "bug_id": 549427, + "desc": "Backed out changeset 7886dc6ae0c8 - bug 549427 - tests tarball should be zip files (CLOSED TREE)", + "pushdate": "2010-04-07 17:34:08", + "backsout": [ + "7886dc6ae0c8ca8d769b956561174c0acc8b4340" + ], + "backedoutby": "", + "author_email": "ted.mielczarek@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 64629884.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "testing/testsuite-targets.mk", + "toolkit/mozapps/installer/package-name.mk" + ], + "components": [ + "Firefox::Installer", + "Testing::General" + ], + "directories": [ + "toolkit/mozapps", + "testing", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "85454945336e2c5bac27ff125e2ae27200cb416c", + "author": "Alexander Surkov ", + "bug_id": 557768, + "desc": "backout e88d2327e25d, bug 557768", + "pushdate": "2010-04-08 14:00:43", + "backsout": [ + "e88d2327e25d600ce326615f682db1d79d2bb10e" + ], + "backedoutby": "", + "author_email": "surkov.alexander@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 56893595.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "accessible/src/base/nsAccessibilityService.cpp" + ], + "components": [], + "directories": [ + "accessible/src", + "accessible" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "47ef6d724773f2eb7157f93c1da8d53a8589f26a", + "author": "Timothy Nikkel ", + "bug_id": 553366, + "desc": "Backout 761790684f3b (Bug 553366) for suspicion of causing tsvg_opacity regression.", + "pushdate": "2010-04-11 02:54:10", + "backsout": [ + "761790684f3be4ebb9c30895d1864dbd12516a9a" + ], + "backedoutby": "", + "author_email": "tnikkel@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 28596884.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/base/public/nsIDocument.h", + "content/base/src/nsDocument.cpp", + "content/base/src/nsDocument.h", + "layout/base/nsPresShell.cpp" + ], + "components": [], + "directories": [ + "content/base", + "content", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "a5009861bd1b4c01663aa01a4c219379b85178b8", + "author": "Timothy Nikkel ", + "bug_id": 553359, + "desc": "Backed out changeset b4fcd21cb6e5 (bug 553359) to try to fix tsvg_opacity regression.", + "pushdate": "2010-04-11 05:13:09", + "backsout": [ + "b4fcd21cb6e54755c4efb4fbe0cb53dfc71bf2d6" + ], + "backedoutby": "", + "author_email": "tnikkel@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 28605223.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "docshell/base/nsDocShell.cpp", + "layout/base/nsPresContext.cpp", + "layout/base/nsPresContext.h" + ], + "components": [ + "Core::Layout", + "Core::DOM: Navigation" + ], + "directories": [ + "layout/base", + "docshell/base", + "layout", + "docshell" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "e4496c8a44e560c48cb228851239b177c08859a4", + "author": "Timothy Nikkel ", + "bug_id": 553363, + "desc": "Backed out changeset 633cc14c86b8 (bug 553363) to try to fix tsvg_opacity regression.", + "pushdate": "2010-04-11 05:13:09", + "backsout": [ + "633cc14c86b81a341d461982504b5366843add39" + ], + "backedoutby": "", + "author_email": "tnikkel@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 28605223.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "uriloader/base/nsDocLoader.cpp", + "uriloader/base/nsDocLoader.h" + ], + "components": [ + "Core::DOM: Navigation" + ], + "directories": [ + "uriloader/base", + "uriloader" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "df3a1a39837f15a5a51507b6af84deb81a1e9ce6", + "author": "Timothy Nikkel ", + "bug_id": 222436, + "desc": "Backed out changeset 3a27158cbdd6 (bug 222436) to try to fix tsvg_opacity regression.", + "pushdate": "2010-04-11 05:13:09", + "backsout": [ + "3a27158cbdd697fe5528658c4676cea537e50b6a" + ], + "backedoutby": "", + "author_email": "tnikkel@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 28605223.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/base/nsPresContext.cpp", + "layout/base/nsPresContext.h" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "e69034463eebbd368322b97559b4ae95b7722aaf", + "author": "Timothy Nikkel ", + "bug_id": 505835, + "desc": "Backed out changeset 02e8391669c3 (Bug 505835) for suspicion of causing tsvg_opacity regression.", + "pushdate": "2010-04-11 07:11:24", + "backsout": [ + "02e8391669c3975821e20d9a5485eaa27cf0a39d" + ], + "backedoutby": "", + "author_email": "tnikkel@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 28612318.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/xul/base/src/tree/src/nsTreeBodyFrame.cpp" + ], + "components": [], + "directories": [ + "layout/xul", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "83bf27b04ddc38081b87125daa2468b17089cef5", + "author": "Timothy Nikkel ", + "bug_id": 553359, + "desc": "Backed out changeset ae2093359899 (Bug 553359) for tsvg_opacity regression.", + "pushdate": "2010-04-12 00:28:43", + "backsout": [ + "ae2093359899b9db68d3343fc9420cd770746098" + ], + "backedoutby": "", + "author_email": "tnikkel@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 28674557.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "docshell/base/nsDocShell.cpp", + "layout/base/nsPresContext.cpp", + "layout/base/nsPresContext.h" + ], + "components": [ + "Core::Layout", + "Core::DOM: Navigation" + ], + "directories": [ + "layout/base", + "docshell/base", + "layout", + "docshell" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "23e71fa6bd6e058498c18f6f7a9a8875fc245115", + "author": "Andreas Gal ", + "bug_id": 557914, + "desc": "Backed out changeset 687d1e4c213e (bug 557914).", + "pushdate": "2010-04-15 16:08:37", + "backsout": [ + "687d1e4c213ef0fc1d22e28deeb4a0643e807cbf" + ], + "backedoutby": "", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 56348239.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jscntxt.h", + "js/src/jsgc.cpp", + "js/src/jsiter.cpp", + "js/src/jsiter.h" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "0fc19b24294756c136b02ec922c3eba656c2f623", + "author": "Boris Zbarsky ", + "bug_id": 556830, + "desc": "Backed out changeset 698ace1f1027 (bug 556830) for causing jsreftest failures.", + "pushdate": "2010-04-15 16:08:37", + "backsout": [ + "698ace1f10272d60078844f428be76fd98ab1537" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 55793025.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsobj.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "57f8cd34cf6e0ca264e00e73ac9eea979136090c", + "author": "Andreas Gal ", + "bug_id": 558058, + "desc": "Backed out changeset 61de331861af (bug 558058).", + "pushdate": "2010-04-15 16:08:37", + "backsout": [ + "61de331861afee87bb0e9c369b06b6c663a8336e" + ], + "backedoutby": "", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 56348239.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jscntxt.cpp", + "js/src/jscntxt.h", + "js/src/jsiter.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "5896d4f94aee0ceb07c2a877b26a498855f4cb77", + "author": "Karl Tomlinson ", + "bug_id": 393760, + "desc": "backout e1e1143be432 due to reftest failure in layout/reftests/bugs/393760-1.xml b=552044", + "pushdate": "2010-04-21 05:21:59", + "backsout": [ + "e1e1143be432679e02bce5f647f6de822835dfb6" + ], + "backedoutby": "", + "author_email": "karlt+@karlt.net", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 56426895.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/mathml/content/src/nsMathMLElement.cpp", + "layout/reftests/mathml/mathbackground-1-ref.mml", + "layout/reftests/mathml/mathbackground-1.mml", + "layout/reftests/mathml/mathbackground-2-ref.mml", + "layout/reftests/mathml/mathbackground-2.mml", + "layout/reftests/mathml/mathbackground-3-ref.mml", + "layout/reftests/mathml/mathbackground-3.mml", + "layout/reftests/mathml/mathbackground-4-ref.mml", + "layout/reftests/mathml/mathbackground-4.mml", + "layout/reftests/mathml/mathcolor-1-ref.mml", + "layout/reftests/mathml/mathcolor-1.mml", + "layout/reftests/mathml/mathcolor-2-ref.mml", + "layout/reftests/mathml/mathcolor-2.mml", + "layout/reftests/mathml/mathcolor-3-ref.mml", + "layout/reftests/mathml/mathcolor-3.mml", + "layout/reftests/mathml/mathcolor-4-ref.mml", + "layout/reftests/mathml/mathcolor-4.mml", + "layout/reftests/mathml/reftest.list" + ], + "components": [ + "Core::MathML" + ], + "directories": [ + "content/mathml", + "content", + "layout", + "layout/reftests" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "f1bc91ce880e02e519f271f9c9b608961f7a2533", + "author": "Robert Sayre ", + "bug_id": 561011, + "desc": "Backed out changeset 1af19eedbde2 -- Fix sharpSlots vs. with grudge-match (561011, r=mrbkap).", + "pushdate": "2010-04-24 21:50:01", + "backsout": [ + "1af19eedbde29a07c643cc407f9991d9742308b0" + ], + "backedoutby": "", + "author_email": "sayrer@gmail.com", + "reviewers": [ + "mrbkap" + ], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 58933968.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsparse.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "9cefbeff6938b64e8b8310dcc804aab85f922222", + "author": "Karl Tomlinson ", + "bug_id": 559492, + "desc": "backout 32502a2c5671 b=559492 due to seg fault in storage/test/test_transaction_helper.cpp possibly in DumpLeakedURLs", + "pushdate": "2010-04-28 22:40:27", + "backsout": [ + "32502a2c5671185d801d91884579d1f93f516d82" + ], + "backedoutby": "", + "author_email": "karlt+@karlt.net", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 57094003.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "netwerk/base/src/nsStandardURL.cpp" + ], + "components": [], + "directories": [ + "netwerk/base", + "netwerk" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "ff9f542d06831528ededff7c28bfeee7168ab45a", + "author": "Timothy Nikkel ", + "bug_id": 222436, + "desc": "Backed out changeset e6134e94c6cb (Bug 222436) for possible Tsvg_opacity regression.", + "pushdate": "2010-05-02 07:02:16", + "backsout": [ + "e6134e94c6cbb585cfba790bfa4a89d86e8cc502" + ], + "backedoutby": "", + "author_email": "tnikkel@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 30426170.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/base/nsPresContext.cpp", + "layout/base/nsPresContext.h" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "eb4e203caf33c1a4351b61987170e675b2e77b6d", + "author": "Andreas Gal ", + "bug_id": 560358, + "desc": "Backed out changeset 35c25547a135 (bug 560358).", + "pushdate": "2010-05-04 17:34:44", + "backsout": [ + "35c25547a135348070a3e42cc0b38b3ccd46783c" + ], + "backedoutby": "", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 57995006.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsapi.cpp", + "js/src/jscntxt.h", + "js/src/jsregexp.cpp", + "js/src/jsregexp.h", + "js/src/jsstr.cpp", + "js/src/xpconnect/src/XPCSafeJSObjectWrapper.cpp" + ], + "components": [ + "Core::JavaScript Engine" + ], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "8d256e7846959ca614b1da225d2786396888d770", + "author": "Jason Orendorff ", + "bug_id": 559653, + "desc": "Backed out changeset ae857d818793 (bug 559653) due to test failures.", + "pushdate": "2010-05-04 17:34:44", + "backsout": [ + "ae857d81879311f67ff49e4f4e677e2279cc1bdd" + ], + "backedoutby": "", + "author_email": "jorendorff@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 60899013.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsdbgapi.cpp", + "js/src/jsdbgapi.h", + "js/src/jsobj.cpp", + "js/src/jsops.cpp", + "js/src/jsscope.cpp", + "js/src/jsscope.h", + "js/src/jstracer.cpp", + "js/src/jstracer.h" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "5aa83042d4d3147c0f9311dc38c714ce19783b5a", + "author": "Jason Orendorff ", + "bug_id": 559653, + "desc": "Backed out changeset 73f23528bed6 (bug 559653, again)", + "pushdate": "2010-05-04 17:34:44", + "backsout": [ + "73f23528bed6843a1c3ece06425a3bbe9398f380" + ], + "backedoutby": "", + "author_email": "jorendorff@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 60899013.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsdbgapi.cpp", + "js/src/jsdbgapi.h", + "js/src/jsobj.cpp", + "js/src/jsops.cpp", + "js/src/jsscope.cpp", + "js/src/jsscope.h", + "js/src/jstracer.cpp", + "js/src/jstracer.h", + "js/src/trace-test/tests/basic/testMethodWriteBarrier.js", + "js/src/trace-test/tests/basic/testMethodWriteBarrier2.js", + "js/src/trace-test/tests/basic/testMethodWriteBarrier3.js" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "1b3deed2d784997d6b35397fff8355832255d857", + "author": "Ted Mielczarek ", + "bug_id": 559854, + "desc": "Backed out changeset 510669ff9ba1 \"bug 559854 - Compile target xpidl only if libIDL is configured when cross compiling. r=ted\" for OS X bustage", + "pushdate": "2010-05-05 15:00:40", + "backsout": [ + "510669ff9ba1d9e25c0d131b8c2618e978312134" + ], + "backedoutby": "", + "author_email": "ted.mielczarek@gmail.com", + "reviewers": [ + "ted" + ], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 67039876.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "configure.in", + "xpcom/typelib/xpidl/Makefile.in" + ], + "components": [], + "directories": [ + "xpcom/typelib", + "xpcom" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "90d08f21fbf0b78f42cd9e312097d9a295fdb978", + "author": "L. David Baron ", + "bug_id": 563023, + "desc": "Backed out changeset 09a936531466 (bug 563023) due to Mac reftest failure.", + "pushdate": "2010-05-05 20:53:39", + "backsout": [ + "09a9365314664a2d6719ffe77ad76dc61e50606d" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 62301340.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/reftests/font-face/src-list-local-fallback-ref.html" + ], + "components": [ + "Core::CSS Parsing and Computation" + ], + "directories": [ + "layout/reftests", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "ea445ca9c148e0996b4794c07b9e549d7d64cb31", + "author": "Phil Ringnalda ", + "bug_id": 533891, + "desc": "Backed out changeset e074757a15aa (bug 533891) due to xpcshell orange after a clobber", + "pushdate": "2010-05-11 04:41:14", + "backsout": [ + "e074757a15aa7bdf7430980f81186403886afcd7" + ], + "backedoutby": "", + "author_email": "philringnalda@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 60060484.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/app/profile/firefox.js", + "browser/installer/removed-files.in", + "content/base/src/nsObjectLoadingContent.cpp", + "content/base/src/nsObjectLoadingContent.h", + "modules/plugin/Makefile.in", + "modules/plugin/base/public/Makefile.in", + "modules/plugin/base/public/nsDefaultPlugin.h", + "modules/plugin/base/src/nsPluginHost.cpp", + "modules/plugin/base/src/nsPluginHost.h", + "modules/plugin/base/src/nsPluginTags.cpp", + "modules/plugin/base/src/nsPluginTags.h", + "modules/plugin/default/mac/DefaultPlugin.mm", + "modules/plugin/default/mac/DefaultPlugin.xcodeproj/TemplateIcon.tiff", + "modules/plugin/default/mac/DefaultPlugin.xcodeproj/project.pbxproj", + "modules/plugin/default/mac/English.lproj/InfoPlist.strings", + "modules/plugin/default/mac/Info.plist", + "modules/plugin/default/mac/Makefile.in", + "modules/plugin/default/mac/plugin.png", + "modules/plugin/default/os2/Makefile.in", + "modules/plugin/default/os2/dbg.cpp", + "modules/plugin/default/os2/dbg.h", + "modules/plugin/default/os2/dialogs.cpp", + "modules/plugin/default/os2/dialogs.h", + "modules/plugin/default/os2/maindll.cpp", + "modules/plugin/default/os2/npnulos2.h", + "modules/plugin/default/os2/npnulos2.ico", + "modules/plugin/default/os2/npnulos2.rc", + "modules/plugin/default/os2/npos2.cpp", + "modules/plugin/default/os2/npshell.cpp", + "modules/plugin/default/os2/plugin.cpp", + "modules/plugin/default/os2/plugin.h", + "modules/plugin/default/os2/utils.cpp", + "modules/plugin/default/os2/utils.h", + "modules/plugin/default/unix/Makefile.in", + "modules/plugin/default/unix/npshell.c", + "modules/plugin/default/unix/npunix.c", + "modules/plugin/default/unix/nullplugin.c", + "modules/plugin/default/unix/nullplugin.h", + "modules/plugin/default/windows/Makefile.in", + "modules/plugin/default/windows/Npnul32.dsp", + "modules/plugin/default/windows/dbg.cpp", + "modules/plugin/default/windows/dbg.h", + "modules/plugin/default/windows/dialogs.cpp", + "modules/plugin/default/windows/dialogs.h", + "modules/plugin/default/windows/maindll.cpp", + "modules/plugin/default/windows/npnul32.def", + "modules/plugin/default/windows/npnul32.dsw", + "modules/plugin/default/windows/npnul32.rc", + "modules/plugin/default/windows/npshell.cpp", + "modules/plugin/default/windows/npwin.cpp", + "modules/plugin/default/windows/plugicon.ico", + "modules/plugin/default/windows/plugin.cpp", + "modules/plugin/default/windows/plugin.h", + "modules/plugin/default/windows/resource.h", + "modules/plugin/default/windows/utils.cpp", + "modules/plugin/default/windows/utils.h" + ], + "components": [ + "Firefox::General", + "Firefox::Installer" + ], + "directories": [ + "browser/app", + "modules/plugin", + "browser/installer", + "content/base", + "content", + "browser", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "357d302157060b473fb7fe8c0a27918071f310d5", + "author": "Timothy Nikkel ", + "bug_id": 559996, + "desc": "Backed out changeset a6138098775f (bug 559996) for causing orange.", + "pushdate": "2010-05-12 02:24:53", + "backsout": [ + "a6138098775fcacd0030e7679206553bbef296ec" + ], + "backedoutby": "", + "author_email": "tnikkel@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 31273527.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/base/public/nsIDocument.h", + "content/base/src/nsContentSink.cpp", + "content/base/src/nsContentSink.h", + "content/base/src/nsDocument.cpp", + "content/base/src/nsDocument.h", + "content/test/reftest/bug559996-iframe.html", + "content/test/reftest/bug559996-ref-iframe.html", + "content/test/reftest/bug559996-ref.html", + "content/test/reftest/bug559996.html", + "content/test/reftest/reftest.list", + "layout/base/nsDocumentViewer.cpp", + "layout/base/nsPresShell.cpp" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "content/test", + "content/base", + "content", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "01befa5163eed6f462d5b920bc0470599dc2cb2d", + "author": "Timothy Nikkel ", + "bug_id": 564705, + "desc": "back out e40cbab6a972 (Bug 564705) 590da60fd253 (Bug 507628 and bug 507991) b166415b8c3f (Bug 564368) 0dac5d3eeb97 (Bug 564063) 116e56d84770 (Bug 563407) c51c93f5240f (Bug 536495) for some orange", + "pushdate": "2010-05-12 03:01:28", + "backsout": [ + "e40cbab6a9726591312375194167c10e065471de" + ], + "backedoutby": "", + "author_email": "tnikkel@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 31275722.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/base/src/nsGenericElement.cpp", + "content/base/src/nsTextNode.cpp", + "content/xbl/crashtests/507628-1.xhtml", + "content/xbl/crashtests/507991-1.xhtml", + "content/xbl/crashtests/crashtests.list", + "layout/base/crashtests/564063-1.html", + "layout/base/crashtests/crashtests.list", + "layout/base/nsCSSFrameConstructor.cpp", + "layout/generic/crashtests/564368-1.xhtml", + "layout/generic/crashtests/crashtests.list", + "layout/generic/nsFrameSetFrame.cpp", + "layout/xul/base/src/nsTextBoxFrame.cpp", + "modules/libpr0n/src/imgRequestProxy.cpp" + ], + "components": [ + "Core::Layout", + "Core::Layout: Images, Video, and HTML Frames" + ], + "directories": [ + "layout/generic", + "modules/libpr0n", + "layout/xul", + "content/base", + "content", + "content/xbl", + "layout", + "layout/base", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "c861185afd4a103b322aed36a12e4b7462790d9f", + "author": "Boris Zbarsky ", + "bug_id": 562649, + "desc": "Backed out changeset 6a71deda9822 (bug 562649) due to browser-chrome orange.", + "pushdate": "2010-05-14 17:04:31", + "backsout": [ + "6a71deda9822c26086498ca9b2bfe3427b169e13" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 58301979.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/base/content/browser.js", + "browser/base/content/tabbrowser.xml", + "browser/base/content/test/Makefile.in", + "browser/base/content/test/browser_bug562649.js" + ], + "components": [ + "Firefox::General" + ], + "directories": [ + "browser/base", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "c95e1d49bc792d5ed6255c37f5403048be77559f", + "author": "Boris Zbarsky ", + "bug_id": 564979, + "desc": "Backed out changeset 90d627f2471e (bug 564979) because it broke mochitests.", + "pushdate": "2010-05-17 19:00:34", + "backsout": [ + "90d627f2471eb38d96d8b1ccef04465c8363da53" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 58568142.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/base/public/nsINode.h", + "content/base/src/nsGenericElement.cpp", + "extensions/spellcheck/src/mozInlineSpellWordUtil.cpp", + "js/src/xpconnect/src/dom_quickstubs.qsconf" + ], + "components": [ + "Core::Spelling checker" + ], + "directories": [ + "js/src", + "extensions/spellcheck", + "content/base", + "content", + "extensions", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "9d40cce434865515df81912ce22d2fdfa6e80a61", + "author": "Peter Van der Beken ", + "bug_id": 560462, + "desc": "Back out ba983923066f (bug 560462 part 3c) to see if it fixes test_aria_imgmap.html orange.", + "pushdate": "2010-06-01 18:27:21", + "backsout": [ + "ba983923066fbbe4b5df8a872fdeb989386b5a4d" + ], + "backedoutby": "", + "author_email": "peterv@propagandism.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 61352668.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/xpconnect/src/dom_quickstubs.qsconf" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "c482200ed43651dec55ce38e56134d43e115a5aa", + "author": "Justin Wood ", + "bug_id": 564591, + "desc": "Backout 69df59e99741 -- Bug 564591: Speed up BindToTree/UnbindFromTree by only doing XBL related work when needed.", + "pushdate": "2010-06-04 01:45:41", + "backsout": [ + "69df59e99741365f71372a7557e6fe4dc0d1cb8d" + ], + "backedoutby": "", + "author_email": "Callek@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 61172406.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/base/src/nsGenericDOMDataNode.cpp", + "content/base/src/nsGenericElement.cpp", + "content/xbl/src/nsBindingManager.cpp", + "content/xbl/src/nsBindingManager.h" + ], + "components": [], + "directories": [ + "content/base", + "content", + "content/xbl" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "b18beea31ad3fd3130cdcd7b8195b0a04fb5e681", + "author": "Jason Orendorff ", + "bug_id": 559653, + "desc": "Back out changeset a72a9d72c028 (bug 559653, remove SetPropHit). Checking to see if this caused a 5% Dromaeo regression today.", + "pushdate": "2010-06-06 19:08:23", + "backsout": [ + "a72a9d72c0282ec34aec9014bc16ec8c475c69b2" + ], + "backedoutby": "", + "author_email": "jorendorff@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 63755832.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsdbgapi.cpp", + "js/src/jsdbgapi.h", + "js/src/jsobj.cpp", + "js/src/jsops.cpp", + "js/src/jsscope.cpp", + "js/src/jsscope.h", + "js/src/jstracer.cpp", + "js/src/jstracer.h", + "js/src/trace-test/tests/basic/testMethodWriteBarrier.js", + "js/src/trace-test/tests/basic/testMethodWriteBarrier2.js", + "js/src/trace-test/tests/basic/testMethodWriteBarrier3.js" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "2fe89784cf66347487cbf5a9f010dce8fabbe043", + "author": "Jason Orendorff ", + "bug_id": 569735, + "desc": "Back out changeset 96dbe8a784f1 (bug 569735) due to failing tests.", + "pushdate": "2010-06-06 19:08:23", + "backsout": [ + "96dbe8a784f15719031a8716921ad50a86650a15" + ], + "backedoutby": "", + "author_email": "jorendorff@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 63755832.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsarray.cpp", + "js/src/jscntxt.h", + "js/src/jsiter.cpp", + "js/src/jsiter.h", + "js/src/jsobj.cpp", + "js/src/jsproxy.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "0ba3c58afb3abf493dabe321f29ea94072ffe2a3", + "author": "Robert Sayre ", + "bug_id": 556277, + "desc": "Backed out changeset 52be13ea0488. Bug 556277 - Compute this eagerly in more cases. r=brendan. Suspected of performance regression on SunSpider unpack-code. 80ms -> 135ms.", + "pushdate": "2010-06-06 19:08:23", + "backsout": [ + "52be13ea048813852b8c6e466d9d762433ce14c6" + ], + "backedoutby": "", + "author_email": "sayrer@gmail.com", + "reviewers": [ + "brendan" + ], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 62639470.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsapi.cpp", + "js/src/jsapi.h", + "js/src/jsinterp.cpp", + "js/src/jsinterp.h", + "js/src/jsobj.cpp", + "js/src/jsobj.h", + "js/src/jsops.cpp", + "js/src/jsstr.cpp", + "js/src/jstracer.cpp", + "js/src/trace-test/tests/basic/testThis1.js", + "js/src/trace-test/tests/basic/testThis2.js" + ], + "components": [ + "Core::JavaScript Engine" + ], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "3e15e567ae44cd4b2fdd044a7d973fb0089d5cc7", + "author": "Dave Townsend ", + "bug_id": 569342, + "desc": "Backed out changeset 33760547ecf7 from bug 569342 to fix the test failure.", + "pushdate": "2010-06-08 18:20:50", + "backsout": [ + "33760547ecf7edc099b4ca4abc5cb475d9dfb86a" + ], + "backedoutby": "", + "author_email": "dtownsend@oxymoronical.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 63531408.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/base/content/test/Makefile.in", + "browser/base/content/test/browser_bug569342.js", + "toolkit/components/viewconfig/content/config.xul", + "toolkit/content/widgets/findbar.xml", + "toolkit/mozapps/extensions/content/extensions.xul" + ], + "components": [], + "directories": [ + "browser/base", + "toolkit/content", + "toolkit/components", + "toolkit", + "toolkit/mozapps", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "0bf458761ea2d29bc48e333a8d2afd38238d7e83", + "author": "Timothy Nikkel ", + "bug_id": 569425, + "desc": "Backed out changeset 2f539cc84d97 (bug 569425) because this may hide real a11y issues.", + "pushdate": "2010-06-08 20:44:03", + "backsout": [ + "2f539cc84d9750e6de1de5d44f8ade2b82cad024" + ], + "backedoutby": "", + "author_email": "tnikkel@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 33672277.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "accessible/tests/mochitest/states/test_aria_imgmap.html", + "accessible/tests/mochitest/tree/test_aria_imgmap.html" + ], + "components": [ + "Core::Disability Access APIs" + ], + "directories": [ + "accessible", + "accessible/tests" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "42a58530d41962e11cd20a2abfcf02e6c13b21c3", + "author": "Daniel Holbert ", + "bug_id": 552938, + "desc": "Backed out changeset a8ac411e1653 (bug 552938) for causing some randomorange.", + "pushdate": "2010-06-10 00:17:54", + "backsout": [ + "a8ac411e1653c2a2359aa5a76e3f0bc45d99aca5" + ], + "backedoutby": "", + "author_email": "dholbert@cs.stanford.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 65298001.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/xml/document/src/nsXMLContentSink.cpp", + "layout/svg/crashtests/crashtests.list", + "parser/html/Makefile.in", + "parser/html/nsHtml5SVGLoadDispatcher.cpp", + "parser/html/nsHtml5SVGLoadDispatcher.h", + "parser/html/nsHtml5TreeBuilderCppSupplement.h", + "parser/html/nsHtml5TreeOperation.cpp", + "parser/html/nsHtml5TreeOperation.h", + "parser/htmlparser/tests/mochitest/Makefile.in", + "parser/htmlparser/tests/mochitest/test_bug552938-2.html", + "parser/htmlparser/tests/mochitest/test_bug552938.html" + ], + "components": [ + "Core::XML", + "Core::DOM: HTML Parser", + "Core::SVG" + ], + "directories": [ + "parser/html", + "layout/svg", + "parser/htmlparser", + "content", + "parser", + "content/xml", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "ef715f78e927e46db86fd00b7a5ea89641767041", + "author": "Ted Mielczarek ", + "bug_id": 568818, + "desc": "Backed out changeset d1c910f2ec4d on suspicion of causing test crashes - Bug 568818 - sendSyncMessage fails with 'SyntaxError: JSON.parse' if one of the listeners does not return a value", + "pushdate": "2010-06-11 17:53:10", + "backsout": [ + "d1c910f2ec4dd7388fe57ac9defac792ee3f1fa6" + ], + "backedoutby": "", + "author_email": "ted.mielczarek@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 70247026.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/base/src/nsFrameMessageManager.cpp" + ], + "components": [], + "directories": [ + "content/base", + "content" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "4dc9a5d9167b157b0867547ea14fe4a4e306af42", + "author": "Ehsan Akhgari ", + "bug_id": 563327, + "desc": "Backed out changeset fee5701c664e and changeset dcfe95c71a04 to fix the mochitest-a11y crashes (bug 563327)", + "pushdate": "2010-06-14 22:14:46", + "backsout": [ + "fee5701c664e4ec3222483313ea71b52ac514d44" + ], + "backedoutby": "", + "author_email": "ehsan@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 19270363.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "accessible/src/base/nsEventShell.cpp", + "accessible/src/base/nsEventShell.h", + "layout/base/nsCSSFrameConstructor.cpp", + "layout/base/nsIPresShell.h", + "layout/base/nsPresShell.cpp" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "accessible/src", + "accessible", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "7523ad2f395e9295ec597de3b8de5329cb17a18a", + "author": "Drew Willcoxon ", + "bug_id": 571459, + "desc": "Backed out changeset b54140961fa7 to fix more mochitest-a11y crashes (Bug 571459)", + "pushdate": "2010-06-14 23:19:27", + "backsout": [ + "b54140961fa705b38f1e927a4e8aac626ca567ea" + ], + "backedoutby": "", + "author_email": "adw@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 44710491.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "accessible/public/nsIAccessibilityService.h", + "accessible/src/base/nsAccDocManager.h", + "accessible/src/base/nsAccessibilityService.cpp", + "accessible/src/base/nsAccessibilityService.h", + "accessible/src/base/nsOuterDocAccessible.cpp", + "layout/base/nsPresShell.cpp" + ], + "components": [], + "directories": [ + "accessible/public", + "accessible/src", + "accessible", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "53510454716ebb1e760a0262ffdfb89276c9543b", + "author": "Chris Pearce ", + "bug_id": 572034, + "desc": "Backed out changeset f2835c78ef3f, Bug 572034.", + "pushdate": "2010-06-16 23:04:24", + "backsout": [ + "f2835c78ef3fa9e508ad2b9ecbcd48c818a63613" + ], + "backedoutby": "", + "author_email": "chris@pearce.org.nz", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 54088542.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "gfx/ycbcr/Makefile.in" + ], + "components": [], + "directories": [ + "gfx", + "gfx/ycbcr" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "3e0eb9fe8f481ce2257922ef08219bb364da24a7", + "author": "Matthew Gregan ", + "bug_id": 572034, + "desc": "Backed out changeset d268e54fbfcf (bug 572034)", + "pushdate": "2010-06-18 23:44:31", + "backsout": [ + "d268e54fbfcfbbfab0e3b890fe376cd058498bb8" + ], + "backedoutby": "", + "author_email": "kinetik@flim.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 54067558.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "gfx/ycbcr/Makefile.in", + "gfx/ycbcr/README", + "gfx/ycbcr/bug572034_mac_64bit.patch", + "gfx/ycbcr/update.sh", + "gfx/ycbcr/yuv_row_linux.cpp" + ], + "components": [ + "Core::Graphics" + ], + "directories": [ + "gfx", + "gfx/ycbcr" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "5504cc6d31698a12ca86c443aca74c834b499ded", + "author": "Matthew Gregan ", + "bug_id": 555121, + "desc": "Backed out changeset 4adab2629c3f (bug 555121)", + "pushdate": "2010-06-19 06:25:38", + "backsout": [ + "4adab2629c3f76da345a60cb55a3925db6c6241f" + ], + "backedoutby": "", + "author_email": "kinetik@flim.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 54091625.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "media/libvorbis/README_MOZILLA", + "media/libvorbis/bug498855.patch", + "media/libvorbis/bug550184.patch", + "media/libvorbis/include/vorbis/codec.h", + "media/libvorbis/lib/backends.h", + "media/libvorbis/lib/codebook.h", + "media/libvorbis/lib/highlevel.h", + "media/libvorbis/lib/psy.h", + "media/libvorbis/lib/vorbis_codebook.c", + "media/libvorbis/lib/vorbis_floor1.c", + "media/libvorbis/lib/vorbis_info.c", + "media/libvorbis/lib/vorbis_mapping0.c", + "media/libvorbis/lib/vorbis_psy.c", + "media/libvorbis/lib/vorbis_res0.c", + "media/libvorbis/lib/vorbis_sharedbook.c", + "media/libvorbis/lib/vorbis_synthesis.c", + "media/libvorbis/update.sh" + ], + "components": [ + "Core::Audio/Video" + ], + "directories": [ + "media", + "media/libvorbis" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "063826c84e206d51231cdd4d2aeaf23544d1fc65", + "author": "L. David Baron ", + "bug_id": 534398, + "desc": "Backed out changeset b805434e7e4b (bug 534398) for causing leaks on (debug) mochitest-other.", + "pushdate": "2010-06-19 21:17:47", + "backsout": [ + "b805434e7e4bd4366112ea079d5aed84b5423fba" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 66190788.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/base/content/browser-menubar.inc", + "browser/base/content/browser-sets.inc", + "browser/base/content/browser.js", + "browser/locales/en-US/chrome/browser/browser.dtd", + "toolkit/components/console/Makefile.in", + "toolkit/components/console/content/headsUpDisplay.css", + "toolkit/components/console/hudservice/HUDService.jsm", + "toolkit/components/console/hudservice/Makefile.in", + "toolkit/components/console/hudservice/tests/Makefile.in", + "toolkit/components/console/hudservice/tests/browser/Makefile.in", + "toolkit/components/console/hudservice/tests/browser/browser_HUDServiceTestsAll.js", + "toolkit/components/console/hudservice/tests/browser/test-console.html", + "toolkit/components/console/hudservice/tests/browser/test-data.json", + "toolkit/components/console/hudservice/tests/browser/test-filter.html", + "toolkit/components/console/hudservice/tests/browser/test-mutation.html", + "toolkit/components/console/hudservice/tests/browser/test-network.html", + "toolkit/components/console/hudservice/tests/browser/test-observe-http-ajax.html", + "toolkit/components/console/hudservice/tests/browser/testscript.js", + "toolkit/components/console/jar.mn", + "toolkit/locales/en-US/chrome/global/headsUpDisplay.dtd", + "toolkit/locales/en-US/chrome/global/headsUpDisplay.properties", + "toolkit/locales/jar.mn" + ], + "components": [ + "Firefox::General", + "Firefox Build System::General", + "Firefox::Menus" + ], + "directories": [ + "browser/base", + "toolkit/components", + "toolkit", + "toolkit/locales", + "browser/locales", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "284711070f31f2677b807d95476cc7e6db197a3c", + "author": "L. David Baron ", + "bug_id": 571347, + "desc": "Backed out changeset a6e3300a3bac (bug 571347) for causing bug 573255 because the optimization is invalid given :not() selectors.", + "pushdate": "2010-06-19 21:17:47", + "backsout": [ + "a6e3300a3bacfa013c9c7169f291057f2a43bff1" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 66190788.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/reftests/bugs/571347-1-ref.html", + "layout/reftests/bugs/571347-1a.html", + "layout/reftests/bugs/571347-1b.html", + "layout/reftests/bugs/571347-2-ref.html", + "layout/reftests/bugs/571347-2a.html", + "layout/reftests/bugs/571347-2b.html", + "layout/reftests/bugs/571347-2c.html", + "layout/reftests/bugs/571347-2d.html", + "layout/reftests/bugs/reftest.list", + "layout/style/nsCSSRuleProcessor.cpp" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "layout/reftests", + "layout/style", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "4157a4415bf79adf6def7aa2d216e1321c91867d", + "author": "Edward Lee ", + "bug_id": 482878, + "desc": "Backed out changeset 430ce13b63f3 (bug 482878)\nBug 482670 restored un-wrapped payloads, so until a version bump, those using trunk will need to do a manual server wipe.", + "pushdate": "2010-06-23 22:21:35", + "backsout": [ + "430ce13b63f3" + ], + "backedoutby": "", + "author_email": "edilee@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 40320739.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "services/sync/modules/service.js" + ], + "components": [], + "directories": [ + "services", + "services/sync" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "39cb8075f8444f27f7097238e75953aba158d73e", + "author": "Shawn Wilsher ", + "bug_id": 571992, + "desc": "Backed out changeset 88142593698a (bug 571992) because it already landed apparently...", + "pushdate": "2010-06-24 17:39:34", + "backsout": [ + "88142593698ad74bd79ec48e99fa349a26ef1b5f" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 64806743.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/base/content/browser.xul" + ], + "components": [], + "directories": [ + "browser/base", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "bf804f41e245b8e2ce317ff51da1e94d32d5ab70", + "author": "Daniel Holbert ", + "bug_id": 557566, + "desc": "Backed out changeset a65d962718b0 (bug 557566)", + "pushdate": "2010-06-27 03:02:56", + "backsout": [ + "a65d962718b0857bf749e165533395e4e7aff2d8" + ], + "backedoutby": "", + "author_email": "dholbert@cs.stanford.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 66776703.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/canvas/src/Makefile.in", + "content/media/wave/Makefile.in" + ], + "components": [], + "directories": [ + "content/canvas", + "content", + "content/media" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "880fcf5f07b3d395c9d74b7d45b09dd8825217d8", + "author": "Daniel Holbert ", + "bug_id": 557566, + "desc": "Backed out changeset 5da9fc2be835 (Bug 557566)", + "pushdate": "2010-06-27 03:02:56", + "backsout": [ + "5da9fc2be83585333b108f45407d3be37088db5f" + ], + "backedoutby": "", + "author_email": "dholbert@cs.stanford.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 66776703.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/canvas/src/Makefile.in", + "content/media/wave/Makefile.in", + "docshell/shistory/src/Makefile.in", + "dom/src/geolocation/Makefile.in", + "editor/txmgr/src/Makefile.in", + "toolkit/components/places/tests/cpp/Makefile.in", + "uriloader/base/Makefile.in" + ], + "components": [], + "directories": [ + "content/canvas", + "dom/src", + "toolkit", + "toolkit/components", + "docshell/shistory", + "uriloader/base", + "docshell", + "editor", + "dom", + "content", + "content/media", + "editor/txmgr", + "uriloader" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "4add6eaba66ff0b2a6c7a809922a60f99625ddc3", + "author": "Peter Van der Beken ", + "bug_id": 571159, + "desc": "Backout 8a6de68c0feb (Fix for bug 571159 (Leak nsGlobalWindow with unknown-content-type dialog)) to fix orange.", + "pushdate": "2010-06-28 15:40:59", + "backsout": [ + "8a6de68c0febb7b273942193394fd9ed42a2ce47" + ], + "backedoutby": "", + "author_email": "peterv@propagandism.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 63675486.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/mozapps/downloads/nsHelperAppDlg.js" + ], + "components": [], + "directories": [ + "toolkit/mozapps", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "5082a31c8b8e75fa9321fad3baf0e7621fee4328", + "author": "Justin Dolske ", + "bug_id": 574357, + "desc": "Backed out changeset e112f68bc941 (bug 574357) due to test failures.", + "pushdate": "2010-06-30 05:46:21", + "backsout": [ + "e112f68bc941fa78f6950347f05d892d6c48fc80" + ], + "backedoutby": "", + "author_email": "dolske@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 64232425.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "modules/plugin/test/mochitest/Makefile.in", + "modules/plugin/test/mochitest/test_crash_submit.xul", + "testing/mochitest/tests/SimpleTest/EventUtils.js", + "toolkit/crashreporter/CrashSubmit.jsm", + "toolkit/crashreporter/content/crashes.js" + ], + "components": [ + "Testing::Mochitest", + "Toolkit::Crash Reporting" + ], + "directories": [ + "toolkit", + "modules/plugin", + "toolkit/crashreporter", + "testing/mochitest", + "testing", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "869ff461e1d61b0fc911caba23388a95950ba1c8", + "author": "Boris Zbarsky ", + "bug_id": 575336, + "desc": "Backed out changeset 00dfcf7f4c9e (bug 575336) due to test orange. Magic words for CLOSED TREE.", + "pushdate": "2010-07-01 05:19:24", + "backsout": [ + "00dfcf7f4c9eee1b09c632fb45d814e9bea4faa9" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 62406872.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/base/nsPresShell.cpp", + "view/src/nsViewManager.cpp" + ], + "components": [], + "directories": [ + "view", + "view/src", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "2e14387eb276fe4dc6ee4b13db76639d12b6234e", + "author": "Benjamin Smedberg ", + "bug_id": 541155, + "desc": "Backed out changeset df78efe07b18, debugging only printfs now that 541155 is diagnosed.", + "pushdate": "2010-07-01 06:28:42", + "backsout": [ + "df78efe07b18" + ], + "backedoutby": "", + "author_email": "benjamin@smedbergs.us", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 71933958.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "modules/plugin/test/testplugin/nptest.cpp" + ], + "components": [], + "directories": [ + "modules/plugin", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "686aedb56727e992700c4cb6dcc0162dab5b895b", + "author": "Benjamin Smedberg ", + "bug_id": 535564, + "desc": "Backed out changeset c7a2f3e14a58 - Testing from bug 535564 - We don't have a file handle open when we launch ssltunnel, so ssltunnel wasn't the cause.", + "pushdate": "2010-07-01 06:28:42", + "backsout": [ + "c7a2f3e14a580c7708cd0062b0ddc76e2eaaf322" + ], + "backedoutby": "", + "author_email": "benjamin@smedbergs.us", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 71933958.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "build/automation.py.in" + ], + "components": [], + "directories": [ + "build" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "9fb0650cbfc08daf9b1371544987878f7bb3ecd6", + "author": "Benjamin Smedberg ", + "bug_id": 542337, + "desc": "Backed out changeset e033fa1d3b0b - remove the workaround for bug 542337 because bent landed a real fix and we want testing", + "pushdate": "2010-07-01 06:28:42", + "backsout": [ + "e033fa1d3b0bc04aaa37708b6d48eb8b0aeb4fb5" + ], + "backedoutby": "", + "author_email": "benjamin@smedbergs.us", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 71933958.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/generic/test/plugin_clipping_helper2.xhtml" + ], + "components": [], + "directories": [ + "layout/generic", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "c4b97df52cae46d26f3bbee0b47b7d994e6ce892", + "author": "Karl Tomlinson ", + "bug_id": 550026, + "desc": "backout 5b9325736070 b=550026", + "pushdate": "2010-07-01 06:28:42", + "backsout": [ + "5b932573607072bfa2bd1d19761e404865de2adf" + ], + "backedoutby": "", + "author_email": "karlt+@karlt.net", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 62565298.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "dom/plugins/PluginModuleChild.cpp", + "dom/plugins/PluginModuleParent.cpp", + "modules/plugin/test/mochitest/Makefile.in", + "modules/plugin/test/mochitest/test_crash_nested_loop.html", + "modules/plugin/test/testplugin/nptest.cpp", + "modules/plugin/test/testplugin/nptest.h", + "modules/plugin/test/testplugin/nptest_gtk2.cpp", + "modules/plugin/test/testplugin/nptest_platform.h" + ], + "components": [], + "directories": [ + "dom", + "modules/plugin", + "dom/plugins", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "4497942b0e3d7aa73e282747d857fb6110b794d6", + "author": "Dave Townsend ", + "bug_id": 556400, + "desc": "Backed out changeset f666976446db from bug 556400 due to possible browser-chrome\nfailures.", + "pushdate": "2010-07-03 03:02:52", + "backsout": [ + "f666976446db" + ], + "backedoutby": "", + "author_email": "dtownsend@oxymoronical.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 65636330.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/components/places/src/History.cpp" + ], + "components": [], + "directories": [ + "toolkit/components", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "c066080db73501bdcee16c871ba3eebb07ca0779", + "author": "Dave Townsend ", + "bug_id": 566738, + "desc": "Backed out changeset 07a9dcc28c5c from bug 566738 due to possible browser-chrome failures.", + "pushdate": "2010-07-03 03:02:52", + "backsout": [ + "07a9dcc28c5ca62106336545c017b80cf8122b57" + ], + "backedoutby": "", + "author_email": "dtownsend@oxymoronical.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 65636330.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "docshell/base/IHistory.h", + "docshell/base/nsDocShell.cpp", + "toolkit/components/places/src/History.cpp", + "toolkit/components/places/src/History.h", + "toolkit/components/places/src/nsNavHistory.cpp", + "toolkit/components/places/src/nsNavHistory.h", + "toolkit/components/places/tests/browser/Makefile.in" + ], + "components": [ + "Toolkit::Places", + "Core::DOM: Navigation" + ], + "directories": [ + "toolkit/components", + "docshell/base", + "toolkit", + "docshell" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "920385221b56485347c16d59a782c808d1b64085", + "author": "Dave Townsend ", + "bug_id": 556400, + "desc": "Backed out changeset f9a700607b86 from bug556400 due to possible browser-chrome failures.", + "pushdate": "2010-07-03 03:02:52", + "backsout": [ + "f9a700607b86514c86ac85387f7d64206d7e23fa" + ], + "backedoutby": "", + "author_email": "dtownsend@oxymoronical.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 65636330.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "docshell/base/IHistory.h", + "docshell/base/nsDocShell.cpp", + "docshell/base/nsDocShell.h", + "toolkit/components/places/src/Helpers.cpp", + "toolkit/components/places/src/Helpers.h", + "toolkit/components/places/src/History.cpp", + "toolkit/components/places/src/History.h", + "toolkit/components/places/src/nsNavHistory.cpp", + "toolkit/components/places/src/nsNavHistory.h", + "toolkit/components/places/tests/browser/Makefile.in", + "toolkit/components/places/tests/cpp/places_test_harness.h", + "toolkit/components/places/tests/cpp/test_IHistory.cpp", + "xpcom/build/Makefile.in", + "xpcom/build/ServiceList.h", + "xpcom/build/Services.cpp", + "xpcom/build/Services.h" + ], + "components": [ + "Toolkit::Places", + "Core::DOM: Navigation" + ], + "directories": [ + "toolkit/components", + "toolkit", + "docshell/base", + "docshell", + "xpcom/build", + "xpcom" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "330178c7235b6ac438af8a8b8797ce006a537242", + "author": "Benoit Girard ", + "bug_id": 577224, + "desc": "Back out 06cc16f7954e (bug 577224) because it can cause plugins to not draw.", + "pushdate": "2010-07-09 20:16:30", + "backsout": [ + "06cc16f7954e677afb4c8212354637884a348c45" + ], + "backedoutby": "", + "author_email": "b56girard@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 8125474.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "gfx/src/thebes/utils/nsCoreAnimationSupport.h", + "gfx/src/thebes/utils/nsCoreAnimationSupport.mm" + ], + "components": [], + "directories": [ + "gfx/src", + "gfx" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "6ad1beea584ac84aef0dd5f6b90b297d6afe187a", + "author": "Josh Aas ", + "bug_id": 578913, + "desc": "Backed out changeset 764bb4ae886c, bug 578913, it may be at fault for a Ts Shutdown regression.", + "pushdate": "2010-07-16 17:25:59", + "backsout": [ + "764bb4ae886c5058c5c7634d6ffb02ddfe431354" + ], + "backedoutby": "", + "author_email": "joshmoz@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 64760720.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "modules/plugin/base/src/nsPluginHost.cpp", + "modules/plugin/base/src/nsPluginHost.h", + "modules/plugin/base/src/nsPluginStreamListenerPeer.cpp", + "modules/plugin/base/src/nsPluginStreamListenerPeer.h" + ], + "components": [], + "directories": [ + "modules/plugin", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "d0d098061840a2d4bb25beada4dfc4f84bdc6cb5", + "author": "Josh Aas ", + "bug_id": 571193, + "desc": "Backed out changeset f6c93f02146c, bug 571193.", + "pushdate": "2010-07-17 00:32:00", + "backsout": [ + "f6c93f02146c55b55209c6ae622e15a88cb28543" + ], + "backedoutby": "", + "author_email": "joshmoz@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 64786281.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/xre/nsAppRunner.cpp", + "xpcom/io/CocoaFileUtils.h", + "xpcom/io/CocoaFileUtils.mm", + "xpcom/io/Makefile.in", + "xpcom/io/nsILocalFileMac.idl", + "xpcom/io/nsLocalFile.h", + "xpcom/io/nsLocalFileOSX.h", + "xpcom/io/nsLocalFileOSX.mm", + "xpcom/io/nsLocalFileUnix.cpp", + "xpcom/io/nsLocalFileUnix.h" + ], + "components": [ + "Core::XPCOM", + "Toolkit::Startup and Profile System" + ], + "directories": [ + "xpcom", + "xpcom/io", + "toolkit", + "toolkit/xre" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "bc7c573d41724335e529404841d169f38efd2b27", + "author": "Dave Townsend ", + "bug_id": 553494, + "desc": "Backed out changeset 58175e77c460 from bug 553494 due to test failures", + "pushdate": "2010-07-26 18:41:40", + "backsout": [ + "58175e77c4604f3c7362d67d572e778d2aca33d9" + ], + "backedoutby": "", + "author_email": "dtownsend@oxymoronical.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 67679858.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/mozapps/extensions/content/extensions.js", + "toolkit/mozapps/extensions/content/extensions.xml", + "toolkit/mozapps/extensions/test/browser/Makefile.in", + "toolkit/mozapps/extensions/test/browser/browser_uninstalling.js", + "toolkit/mozapps/extensions/test/browser/head.js" + ], + "components": [ + "Toolkit::Add-ons Manager" + ], + "directories": [ + "toolkit/mozapps", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "a24232050cb11eb86eb348962deea19a40407a33", + "author": "Timothy Nikkel ", + "bug_id": 574621, + "desc": "Backed out changeset 9e290d196600 (bug 574621) for causing test failures.", + "pushdate": "2010-07-29 20:17:48", + "backsout": [ + "9e290d196600332b1731df54ca9142df21127a30" + ], + "backedoutby": "", + "author_email": "tnikkel@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 38077102.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/base/nsPresShell.cpp" + ], + "components": [], + "directories": [ + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "8aabb35a1bb3103d74670ffa88023b9c93d783cc", + "author": "Robert Sayre ", + "bug_id": 579957, + "desc": "Backed out changeset d8bbb2ef3038. (Igor Bukanov \u2013 bug 579957 - parent as a field in JSObject. r=lw)", + "pushdate": "2010-08-01 00:33:23", + "backsout": [ + "d8bbb2ef303853b6a4b8bc54b6000ca53954fdd4" + ], + "backedoutby": "", + "author_email": "sayrer@gmail.com", + "reviewers": [ + "lw" + ], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 67410970.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsarray.cpp", + "js/src/jscntxt.h", + "js/src/jsgc.cpp", + "js/src/jsobj.cpp", + "js/src/jsobj.h", + "js/src/jsproxy.cpp", + "js/src/jsscope.h", + "js/src/jstracer.cpp", + "js/src/jstypedarray.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "4f0f0e801b200dcbdf824a0de1ff9c481481e7e1", + "author": "Robert Sayre ", + "bug_id": 583281, + "desc": "Backed out changeset af011e92ad0b. (Dave Herman \u2013 bug 583281, r=jimb: njs should get symlinked into objdir). This doesn't build on windows.", + "pushdate": "2010-08-01 00:33:23", + "backsout": [ + "af011e92ad0b6a80ea782c427e9ecef92ceb73fb" + ], + "backedoutby": "", + "author_email": "sayrer@gmail.com", + "reviewers": [ + "jimb" + ], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 67410970.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/njs", + "js/src/shell/Makefile.in", + "js/src/shell/njs", + "js/src/tests/narcissus.README" + ], + "components": [ + "Firefox Build System::General" + ], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "5e31dc2daf0a9c531370204ac3b7f32d9cd1437c", + "author": "Robert Sayre ", + "bug_id": 582479, + "desc": "Back out changeset c877176cbbed in order to get Windows compiling. (Bug 582479 - TM: Assertion failure: (&cx->regs->sp[1 - (iargc + 2)].toObject())->isFunction().)", + "pushdate": "2010-08-01 00:33:23", + "backsout": [ + "c877176cbbed3e5c73cbb2abc474345b43cc1fe9" + ], + "backedoutby": "", + "author_email": "sayrer@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 67410970.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jstracer.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "9539f400bb5869e7f5041299359645bd509a9c69", + "author": "Robert Sayre ", + "bug_id": 577648, + "desc": "Backout changeset 80382d88b92c. (Bug 577648 - arguments.callee.caller does not work in FF 4 under certain circumstances). The patch is righteous, but MSVC's behavior with a mere 3GB of addressable memory is not. Will reland soon.", + "pushdate": "2010-08-01 00:33:23", + "backsout": [ + "80382d88b92c05e71a65f2bb662614ea702cad8d" + ], + "backedoutby": "", + "author_email": "sayrer@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 67410970.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsapi.cpp", + "js/src/jsarray.cpp", + "js/src/jsarray.h", + "js/src/jscntxt.cpp", + "js/src/jscntxt.h", + "js/src/jsdbgapi.cpp", + "js/src/jsdbgapi.h", + "js/src/jsemit.cpp", + "js/src/jsfun.cpp", + "js/src/jsfun.h", + "js/src/jsgc.cpp", + "js/src/jsinterp.cpp", + "js/src/jsinterp.h", + "js/src/jsobj.cpp", + "js/src/jsobjinlines.h", + "js/src/jsopcode.cpp", + "js/src/jsparse.cpp", + "js/src/jsscope.cpp", + "js/src/jsscope.h", + "js/src/jsscopeinlines.h", + "js/src/jsscript.cpp", + "js/src/jsstr.cpp", + "js/src/jsstr.h", + "js/src/jstracer.cpp", + "js/src/jsvalue.h", + "js/src/tests/js1_5/Regress/jstests.list", + "js/src/tests/js1_5/Scope/jstests.list", + "js/src/tests/js1_8_5/regress/jstests.list" + ], + "components": [ + "Core::JavaScript Engine" + ], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "bd4713e47e5e0851c7eb3461b2f6599d73f91f81", + "author": "Markus Stange ", + "bug_id": 574663, + "desc": "Backed out changeset cd5c28912351, bug 574663 (momentum scroll zooming) because the new test fails on Windows.", + "pushdate": "2010-08-02 15:52:38", + "backsout": [ + "cd5c289123515044557c9fa3abec72b4ab92113e" + ], + "backedoutby": "", + "author_email": "mstange@themasta.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 65974854.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/events/src/nsEventStateManager.cpp", + "content/events/test/Makefile.in", + "content/events/test/test_bug574663.html", + "testing/mochitest/tests/SimpleTest/EventUtils.js", + "widget/public/nsGUIEvent.h", + "widget/src/cocoa/nsChildView.h", + "widget/src/cocoa/nsChildView.mm" + ], + "components": [ + "Testing::Mochitest" + ], + "directories": [ + "widget", + "testing/mochitest", + "content", + "widget/public", + "widget/src", + "testing", + "content/events" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "32a6a3231e503c54824c6ba80425894f9a058199", + "author": "Gavin Sharp ", + "bug_id": 550936, + "desc": "Backed out changeset bdb98838d6f6 from bug 550936 due to js-reftest failures", + "pushdate": "2010-08-03 05:27:20", + "backsout": [ + "bdb98838d6f6b790d45748a817d70526f0675fe7" + ], + "backedoutby": "", + "author_email": "gavin@gavinsharp.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 24450720.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/library/libxul-config.mk", + "toolkit/library/nsStaticXULComponents.cpp", + "toolkit/mozapps/extensions/Makefile.in", + "toolkit/mozapps/extensions/XPIProvider.jsm", + "toolkit/mozapps/extensions/addonManager.js", + "toolkit/mozapps/extensions/amInstallTrigger.cpp", + "toolkit/mozapps/extensions/amInstallTrigger.h", + "toolkit/mozapps/extensions/content/extensions-content.js", + "toolkit/mozapps/extensions/jar.mn" + ], + "components": [ + "Toolkit::Add-ons Manager" + ], + "directories": [ + "toolkit/library", + "toolkit/mozapps", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "f2d6cc57c80cae87069fccb19f8b0af68af1b7b0", + "author": "Gavin Sharp ", + "bug_id": 572967, + "desc": "Backed out changeset b46982cc0c0a from bug 572967 due to test failures", + "pushdate": "2010-08-03 05:39:35", + "backsout": [ + "b46982cc0c0a82dd8fdbb9f9b57da382c5bd515f" + ], + "backedoutby": "", + "author_email": "gavin@gavinsharp.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 24451455.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/base/content/browser.css", + "browser/base/content/browser.js", + "browser/base/content/browser.xul", + "browser/themes/gnomestripe/browser/browser.css", + "browser/themes/pinstripe/browser/browser.css", + "browser/themes/winstripe/browser/browser.css", + "toolkit/content/PopupNotifications.jsm" + ], + "components": [ + "Firefox::General" + ], + "directories": [ + "browser/base", + "toolkit/content", + "toolkit", + "browser/themes", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "f7478476c9a5d4a650d764a967c8dedce7e5883f", + "author": "Robert Sayre ", + "bug_id": 583262, + "desc": "Backed out changeset c6131ed87e9c. Jason Orendorff \u2014 Bug 583262 - Remove security checks on f.prototype.constructor property at last. r=mrbkap. Causing nightly topcrash.", + "pushdate": "2010-08-04 20:45:11", + "backsout": [ + "c6131ed87e9ce7433153c43c4bb7275c35cb4453" + ], + "backedoutby": "", + "author_email": "sayrer@gmail.com", + "reviewers": [ + "mrbkap" + ], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 67742878.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsobj.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "decafc4eb6e2e82cb98713356c2814af0f78372f", + "author": "Markus Stange ", + "bug_id": 576777, + "desc": "Backed out changeset d84aff2ae1db (from bug 576777) because of perma-orange in test_text.html.", + "pushdate": "2010-08-05 12:56:16", + "backsout": [ + "d84aff2ae1db1e05b7270ad08e76e74af058eb0f" + ], + "backedoutby": "", + "author_email": "mstange@themasta.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 66223472.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "accessible/tests/mochitest/attributes/test_text.html" + ], + "components": [], + "directories": [ + "accessible", + "accessible/tests" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "8565e77eacdccd4ae3aadd0f769ff2f0604b6684", + "author": "Markus Stange ", + "bug_id": 576777, + "desc": "Backed out changeset e29fc477ab4d, bug 576777, because of perma-orange in test_text.html.", + "pushdate": "2010-08-05 12:56:16", + "backsout": [ + "e29fc477ab4d1ae6ec74e20b527b321a10736aed" + ], + "backedoutby": "", + "author_email": "mstange@themasta.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 66223472.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "accessible/src/base/AccCollector.cpp", + "accessible/src/base/AccCollector.h", + "accessible/src/base/nsAccessible.cpp", + "accessible/src/base/nsAccessible.h", + "accessible/src/base/nsOuterDocAccessible.cpp", + "accessible/src/html/nsHyperTextAccessible.cpp", + "accessible/src/html/nsHyperTextAccessible.h", + "accessible/src/msaa/CAccessibleHypertext.cpp", + "accessible/tests/mochitest/attributes/test_text.html" + ], + "components": [], + "directories": [ + "accessible/src", + "accessible", + "accessible/tests" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "8d4d8fc43475a18933f6d48e2260289d9cff0db9", + "author": "Shawn Wilsher ", + "bug_id": 580790, + "desc": "Back out changeset 0b3af3fef0fd (bug 580790) due to burnage on a CLOSED TREE", + "pushdate": "2010-08-06 17:47:10", + "backsout": [ + "0b3af3fef0fdfeb5e696c13d773d352e56d94b12" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 68522399.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "storage/src/mozStorageConnection.cpp", + "storage/src/mozStorageService.cpp", + "storage/src/mozStorageService.h" + ], + "components": [], + "directories": [ + "storage/src", + "storage" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "e88f6c524f3aeda886e7ee21f8ed9b467e946ec9", + "author": "Shawn Wilsher ", + "bug_id": 568969, + "desc": "Backed out changeset e6e0200b6e03 (bug 568969) because it appears to have caused orange on a CLOSED TREE.", + "pushdate": "2010-08-06 18:54:28", + "backsout": [ + "e6e0200b6e0325cda78b2634386a420da58f0431" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 68526437.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/base/public/nsContentUtils.h", + "content/base/src/Link.cpp", + "content/base/src/nsContentUtils.cpp", + "dom/ipc/ContentParent.cpp", + "toolkit/components/places/src/History.cpp" + ], + "components": [ + "Core::DOM: Content Processes" + ], + "directories": [ + "toolkit", + "toolkit/components", + "dom", + "content/base", + "content", + "dom/ipc" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "312fdcee7e5093582e6df431c7c210feef2b14b0", + "author": "Dave Townsend ", + "bug_id": 580869, + "desc": "Backed out changeset 300036f6c90f from bug 580869 due to test failures", + "pushdate": "2010-08-06 22:02:48", + "backsout": [ + "300036f6c90f769bc2a2ce4c9b5a3cfd1b141468" + ], + "backedoutby": "", + "author_email": "dtownsend@oxymoronical.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 68642326.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/generic/nsTextFrameThebes.cpp" + ], + "components": [], + "directories": [ + "layout/generic", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "87be0d140fd611534baa3bc3579062b9fa8ac4e6", + "author": "Dave Townsend ", + "bug_id": 580869, + "desc": "Backed out changeset 8f8ee0543d0f from bug 580869 in the CLOSED TREE", + "pushdate": "2010-08-06 22:02:48", + "backsout": [ + "8f8ee0543d0f735ae6fa152244a9233bd7891275" + ], + "backedoutby": "", + "author_email": "dtownsend@oxymoronical.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 68642326.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/generic/nsIFrame.h", + "layout/generic/nsTextFrame.h", + "layout/generic/nsTextFrameThebes.cpp" + ], + "components": [ + "Core::Layout", + "Core::Layout: Text and Fonts" + ], + "directories": [ + "layout/generic", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "5a254bcd79f2b1b27cee499322ebafd4f369f881", + "author": "Robert Sayre ", + "bug_id": 584495, + "desc": "Backed out changeset 504bc84513b0. Andreas Gal \u2013 Ensure that JSOPTION_UNROOTED_GLOBAL is set when we cycle collect (stop-gap measure for bug 584495, r=brendan). default tip", + "pushdate": "2010-08-07 05:52:47", + "backsout": [ + "504bc84513b02579706015b180b6d8f0376c88bf" + ], + "backedoutby": "", + "author_email": "sayrer@gmail.com", + "reviewers": [ + "brendan" + ], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 67948534.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/xpconnect/src/xpcjsruntime.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "682eee29d90d1650e28b60432faf87e89b577767", + "author": "Timothy Nikkel ", + "bug_id": 584193, + "desc": "Backed out changeset 86e8ec17e532 (bug 584193).", + "pushdate": "2010-08-08 22:07:15", + "backsout": [ + "86e8ec17e532abe711a7f3def152c2eb6314c4c4" + ], + "backedoutby": "", + "author_email": "tnikkel@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 38947669.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/base/nsDocumentViewer.cpp", + "layout/base/nsIDocumentViewer.h", + "layout/base/nsIDocumentViewerPrint.h", + "layout/printing/nsPrintEngine.cpp", + "layout/printing/nsPrintEngine.h", + "layout/printing/nsPrintObject.cpp", + "layout/printing/nsPrintObject.h" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "layout", + "layout/base", + "layout/printing" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "abca98af611ed75fcdae4e05fd91900e26908474", + "author": "Phil Ringnalda ", + "bug_id": 579621, + "desc": "Backed out changeset ec28c1790e13 (bug 579621) for print preview test timeouts", + "pushdate": "2010-08-09 00:49:11", + "backsout": [ + "ec28c1790e13601e325bfe921498cd355467fee3" + ], + "backedoutby": "", + "author_email": "philringnalda@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 67822561.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/generic/nsFrameFrame.cpp" + ], + "components": [], + "directories": [ + "layout/generic", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "9165ca3607bd30328db254613bd305e3e4e0f67e", + "author": "Shawn Wilsher ", + "bug_id": 575870, + "desc": "Backed out changeset a0d6e4d37273 (bug 575870) for possibly being the cause of the following performance regression:\nTalos Regression: Txul increase 4.57% on Win7 Firefox\nOther possible culprits:\nbug 574454", + "pushdate": "2010-08-10 20:06:04", + "backsout": [ + "a0d6e4d37273bc0893a6ef3f25bc10261fbdc36b" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 68876333.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/base/content/browser.css", + "browser/base/content/browser.js", + "browser/base/content/browser.xul", + "browser/themes/winstripe/browser/browser-aero.css", + "browser/themes/winstripe/browser/browser.css" + ], + "components": [ + "Firefox::General" + ], + "directories": [ + "browser/base", + "browser/themes", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "89aad8922d715d0ef6aed75907fb8e242f4d70d3", + "author": "L. David Baron ", + "bug_id": 584582, + "desc": "Backed out changeset fef97fa21915 (bug 584582) for causing compilation failures on Windows.", + "pushdate": "2010-08-11 19:26:48", + "backsout": [ + "fef97fa21915fc51e8e4d231e1103b3d4eba1858" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 70763329.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "modules/plugin/test/mochitest/Makefile.in", + "toolkit/crashreporter/Makefile.in", + "toolkit/crashreporter/nsExceptionHandler.cpp" + ], + "components": [ + "Toolkit::Crash Reporting" + ], + "directories": [ + "modules/plugin", + "toolkit", + "toolkit/crashreporter", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "b186d13109a758d85982c790e25abcfb3de5358d", + "author": "Michael Wu ", + "bug_id": 583145, + "desc": "Backed out changeset ccfdad9f5c93 due to regressions (bug 583145)", + "pushdate": "2010-08-12 01:43:41", + "backsout": [ + "ccfdad9f5c9399f9083c8a5bd3bb24d5aaf87d1b" + ], + "backedoutby": "", + "author_email": "mwu@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 19345388.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/themes/pinstripe/global/headsUpDisplay.css" + ], + "components": [], + "directories": [ + "toolkit/themes", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "90b5a456b7bad12f4b78cc2bfb3d57749cdbbd1a", + "author": "Dave Townsend ", + "bug_id": 582569, + "desc": "Backed out changeset 937a11c1fc07 from bug 582569 due to new browser-chrome test\nfailures.", + "pushdate": "2010-08-12 17:29:08", + "backsout": [ + "937a11c1fc07d69a0eb3bfc0d97f0fbadc1fd512" + ], + "backedoutby": "", + "author_email": "dtownsend@oxymoronical.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 69144306.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/base/src/nsInProcessTabChildGlobal.cpp", + "content/base/src/nsInProcessTabChildGlobal.h", + "dom/ipc/TabChild.cpp" + ], + "components": [], + "directories": [ + "dom", + "content/base", + "content", + "dom/ipc" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "1bab6d09fbc9021a54784388e1d82994ee8bcca3", + "author": "Edward Lee ", + "bug_id": 581894, + "desc": "Backout d6a355524fcb from bug 581894 now that bug 579869 is fixed.", + "pushdate": "2010-08-12 19:47:36", + "backsout": [ + "d6a355524fcb88c677b10074adf0071cd5e962ff" + ], + "backedoutby": "", + "author_email": "edilee@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 44631500.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/base/content/tabbrowser.xml" + ], + "components": [], + "directories": [ + "browser/base", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "64e4cce311e8a03a9d15c7adef774e90fa5111b7", + "author": "Edward Lee ", + "bug_id": 583306, + "desc": "Backout df9bbe8b6d78 now that bug 583306 is fixed.", + "pushdate": "2010-08-12 19:47:36", + "backsout": [ + "df9bbe8b6d78" + ], + "backedoutby": "", + "author_email": "edilee@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 44631500.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/components/sessionstore/src/nsSessionStore.js" + ], + "components": [], + "directories": [ + "browser/components", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "60a5b0d62bccef4bae84b063b392246c1007de15", + "author": "Josh Aas ", + "bug_id": 578868, + "desc": "Backed out changeset 452db8c688ba, bug 578868.", + "pushdate": "2010-08-13 08:24:39", + "backsout": [ + "452db8c688bad65a1003ff00b2606d28410c5373" + ], + "backedoutby": "", + "author_email": "joshmoz@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 67147440.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "dom/plugins/PluginModuleChild.cpp", + "modules/plugin/base/public/npfunctions.h", + "modules/plugin/base/public/nsIPlugin.idl", + "modules/plugin/base/src/PluginPRLibrary.cpp", + "modules/plugin/base/src/PluginPRLibrary.h", + "modules/plugin/base/src/nsNPAPIPlugin.cpp", + "modules/plugin/base/src/nsNPAPIPlugin.h", + "modules/plugin/base/src/nsPluginHost.cpp", + "modules/plugin/base/src/nsPluginsDir.h", + "modules/plugin/base/src/nsPluginsDirBeOS.cpp", + "modules/plugin/base/src/nsPluginsDirDarwin.cpp", + "modules/plugin/base/src/nsPluginsDirOS2.cpp", + "modules/plugin/base/src/nsPluginsDirUnix.cpp", + "modules/plugin/base/src/nsPluginsDirWin.cpp" + ], + "components": [], + "directories": [ + "dom", + "modules/plugin", + "dom/plugins", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "2c69cdb5a98c492d99f6fc0c3f05cb2796a84d1d", + "author": "Josh Aas ", + "bug_id": 584965, + "desc": "Backed out changeset 33f8c2bb77ca, bug 584965.", + "pushdate": "2010-08-13 19:48:23", + "backsout": [ + "33f8c2bb77ca11f13bf368a193cfe51b569263cd" + ], + "backedoutby": "", + "author_email": "joshmoz@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 67188464.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "widget/src/cocoa/nsChildView.h", + "widget/src/cocoa/nsChildView.mm", + "widget/src/cocoa/nsCocoaWindow.mm", + "widget/src/cocoa/nsMenuBarX.h", + "widget/src/cocoa/nsMenuBarX.mm" + ], + "components": [], + "directories": [ + "widget", + "widget/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "9ded3c2c0a3fca47cfd74a2a985bcc2f9c358310", + "author": "Robert Sayre ", + "bug_id": 586533, + "desc": "Backed out changeset 1406935fced4. Brian Hackett \u2013 Put JSStackFrame.scopeChain/blockChain behind an interface, bug 586533. r=lw.", + "pushdate": "2010-08-13 20:13:33", + "backsout": [ + "1406935fced42e0bae650f04982c0871932f46d5" + ], + "backedoutby": "", + "author_email": "sayrer@gmail.com", + "reviewers": [ + "lw" + ], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 68518580.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsapi.cpp", + "js/src/jsbuiltins.cpp", + "js/src/jsdbgapi.cpp", + "js/src/jsfun.cpp", + "js/src/jsgc.cpp", + "js/src/jsinterp.cpp", + "js/src/jsinterp.h", + "js/src/jsiter.cpp", + "js/src/jsobj.cpp", + "js/src/jsobjinlines.h", + "js/src/jsrecursion.cpp", + "js/src/jstracer.cpp", + "js/src/jswrapper.cpp", + "js/src/jsxml.cpp" + ], + "components": [ + "Core::JavaScript Engine" + ], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "d796055d54653e1f30b08d833958bdcd79f544bd", + "author": "Jason Orendorff ", + "bug_id": 583850, + "desc": "Backed out changeset c5e31473b1a6 (assertions for bug 583850). See bug 584578 and bug 585754.", + "pushdate": "2010-08-13 20:13:33", + "backsout": [ + "c5e31473b1a670f26b865a49390613d74b3c30a3" + ], + "backedoutby": "", + "author_email": "jorendorff@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 69634942.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsinterp.cpp", + "js/src/jsobj.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "2fa5b630f3bc5e0d4ac7f56606b8e51331763cc2", + "author": "Marco Bonardo ", + "bug_id": 573492, + "desc": "Backed out changeset dfd35987dd82 (WAL journaling - bug 573492) due to Ts regressions", + "pushdate": "2010-08-14 07:58:46", + "backsout": [ + "dfd35987dd82520aaf89b1e4a481c26cf75605f9" + ], + "backedoutby": "", + "author_email": "mbonardo@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 48020971.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/components/places/src/Makefile.in", + "toolkit/components/places/src/nsNavHistory.cpp", + "toolkit/components/places/src/nsNavHistory.h", + "toolkit/components/places/src/nsPlacesDBFlush.js" + ], + "components": [], + "directories": [ + "toolkit/components", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "391e102eb8636bdd1c7cfdecef0294f6f80194ed", + "author": "D\u00e3o Gottwald ", + "bug_id": 575870, + "desc": "Backed out changeset 05dde680ade2 as per bug 575870 comment 71", + "pushdate": "2010-08-15 12:32:07", + "backsout": [ + "05dde680ade2fe2a9a55b6d1eb824ddfeeac84c4" + ], + "backedoutby": "", + "author_email": "dao@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 68681990.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "widget/src/windows/nsWindow.cpp", + "widget/src/windows/nsWindow.h" + ], + "components": [], + "directories": [ + "widget", + "widget/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "9f434423bdf92cf2c7732d8bca624d3c71c85f0d", + "author": "Gavin Sharp ", + "bug_id": 585877, + "desc": "Backed out changeset 43b490ef9dab (bug 585877), a=beltzner", + "pushdate": "2010-08-17 19:46:02", + "backsout": [ + "43b490ef9dab30db2c4e2706110ad5d524a21597" + ], + "backedoutby": "", + "author_email": "gavin@gavinsharp.com", + "reviewers": [ + "beltzner" + ], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 25711842.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/html/document/src/nsHTMLDocument.cpp", + "dom/interfaces/html/nsIDOMNSHTMLDocument.idl", + "js/src/xpconnect/src/dom_quickstubs.qsconf" + ], + "components": [], + "directories": [ + "js/src", + "dom/interfaces", + "dom", + "content", + "content/html", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "eaa833618eaab81c9a1aad2516434196b47e9664", + "author": "Ted Mielczarek ", + "bug_id": 490705, + "desc": "Backed out changeset 1362f0ca86d2 (bug 490705 - Support Audio Data API: Get, Manipulate, Play & Save) due to test failures.", + "pushdate": "2010-08-18 17:10:12", + "backsout": [ + "1362f0ca86d2e16b0341e45e8d5d9be8345a44f0" + ], + "backedoutby": "", + "author_email": "ted.mielczarek@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 76119648.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/base/src/nsContentUtils.cpp", + "content/base/src/nsGkAtomList.h", + "content/base/src/nsNodeUtils.cpp", + "content/events/public/nsIEventListenerManager.h", + "content/events/public/nsIPrivateDOMEvent.h", + "content/events/src/Makefile.in", + "content/events/src/nsDOMEvent.cpp", + "content/events/src/nsDOMEvent.h", + "content/events/src/nsDOMNotifyAudioAvailableEvent.cpp", + "content/events/src/nsDOMNotifyAudioAvailableEvent.h", + "content/events/src/nsEventDispatcher.cpp", + "content/events/src/nsEventListenerManager.cpp", + "content/html/content/public/nsHTMLMediaElement.h", + "content/html/content/src/nsHTMLAudioElement.cpp", + "content/html/content/src/nsHTMLMediaElement.cpp", + "content/media/Makefile.in", + "content/media/nsAudioAvailableEventManager.cpp", + "content/media/nsAudioAvailableEventManager.h", + "content/media/nsAudioStream.cpp", + "content/media/nsAudioStream.h", + "content/media/nsBuiltinDecoder.cpp", + "content/media/nsBuiltinDecoder.h", + "content/media/nsBuiltinDecoderStateMachine.cpp", + "content/media/nsBuiltinDecoderStateMachine.h", + "content/media/nsMediaDecoder.cpp", + "content/media/nsMediaDecoder.h", + "content/media/test/Makefile.in", + "content/media/test/file_a4_tone.ogg", + "content/media/test/file_audio_event_adopt_iframe.html", + "content/media/test/test_a4_tone.html", + "content/media/test/test_audio_event_adopt.html", + "content/media/test/test_audiowrite.html", + "content/media/wave/nsWaveDecoder.cpp", + "dom/base/nsDOMClassInfo.cpp", + "dom/base/nsDOMClassInfoClasses.h", + "dom/base/nsGlobalWindow.cpp", + "dom/base/nsPIDOMWindow.h", + "dom/interfaces/events/Makefile.in", + "dom/interfaces/events/nsIDOMNotifyAudioAvailableEvent.idl", + "dom/interfaces/html/nsIDOMHTMLAudioElement.idl", + "dom/interfaces/html/nsIDOMHTMLMediaElement.idl", + "js/src/xpconnect/src/dom_quickstubs.qsconf", + "widget/public/nsGUIEvent.h", + "xpcom/glue/nsCycleCollectionParticipant.h" + ], + "components": [ + "Core::DOM: Core & HTML" + ], + "directories": [ + "xpcom/glue", + "js/src", + "widget", + "dom/interfaces", + "dom/base", + "dom", + "content/base", + "content", + "content/media", + "widget/public", + "xpcom", + "content/html", + "js", + "content/events" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "c78c4fda1325dd5169f15e80f42de19908b7d99e", + "author": "Mark Banner ", + "bug_id": 471643, + "desc": "Backed out changeset f600448ae7db / bug 471643 due to reftest failures", + "pushdate": "2010-08-19 08:29:47", + "backsout": [ + "f600448ae7db41bd72ea625d674967a262c0dd81" + ], + "backedoutby": "", + "author_email": "bugzilla@standard8.plus.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 69721891.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/base/nsCSSRendering.cpp", + "layout/base/nsCSSRendering.h", + "layout/base/nsDisplayList.cpp", + "layout/reftests/border-radius/percent-1-ref.html", + "layout/reftests/border-radius/percent-1.html", + "layout/reftests/border-radius/percent-2-ref.html", + "layout/reftests/border-radius/percent-2.html", + "layout/reftests/border-radius/percent-3-ref.html", + "layout/reftests/border-radius/percent-3.html", + "layout/reftests/border-radius/reftest.list" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "layout/reftests", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "fae9fc14a22a9fd70f56544181e689b1af72f0f6", + "author": "Jonas Sicking ", + "bug_id": 588977, + "desc": "Backout 2d6ead22831c (bug 588977) due to orange. a=backout", + "pushdate": "2010-08-20 17:26:59", + "backsout": [ + "2d6ead22831cbe04922906805f5c38c730760875" + ], + "backedoutby": "", + "author_email": "jonas@sicking.cc", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 64435434.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/base/nsPresContext.h" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "cbb5793c529eda0f1a01a82edad05684c6978fd5", + "author": "Justin Lebar ", + "bug_id": 576026, + "desc": "Backed out changeset 2d57f5901aa2 (bug 576026). a=bustage", + "pushdate": "2010-08-24 22:52:15", + "backsout": [ + "2d57f5901aa226d161cbc45b4d9db41d34a28af8" + ], + "backedoutby": "", + "author_email": "justin.lebar@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 19864604.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "testing/mochitest/Makefile.in", + "testing/mochitest/runtests.py", + "testing/mochitest/runtests.py.in" + ], + "components": [ + "Testing::Mochitest" + ], + "directories": [ + "testing/mochitest", + "testing" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "c3c185d6ee88ebb2b52bc8cb1fbefc737779f749", + "author": "Robert Sayre ", + "bug_id": 587257, + "desc": "Backed out changeset b404ad209cb9. (Bug 587257 - Make Array.prototype.join faster. r=lw)", + "pushdate": "2010-08-25 16:25:25", + "backsout": [ + "b404ad209cb92ed0f056a77feb8e093a28734856" + ], + "backedoutby": "", + "author_email": "sayrer@gmail.com", + "reviewers": [ + "lw" + ], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 69541692.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsarray.cpp", + "js/src/jsstr.cpp", + "js/src/jsstrinlines.h" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "c8e75a4433d9b62eddcfb841c53af5815ae95948", + "author": "Boris Zbarsky ", + "bug_id": 590422, + "desc": "Backed out changeset d578993db396 (bug 590422) due to possible performance regressions (especially WinXP Tscroll).", + "pushdate": "2010-08-27 18:09:29", + "backsout": [ + "d578993db3969fa6e89e2e487ac4bb1c660aa7c9" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 67377877.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "dom/base/nsGlobalWindow.cpp", + "xpcom/threads/TimerThread.cpp", + "xpcom/threads/TimerThread.h", + "xpcom/threads/nsTimerImpl.cpp" + ], + "components": [ + "Core::XPCOM" + ], + "directories": [ + "dom", + "xpcom/threads", + "xpcom", + "dom/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "0487454f42193aa15efea739c359ea67b1682b11", + "author": "Blair McBride ", + "bug_id": 581076, + "desc": "Backed out changeset 6fe388a0fb5e (Bug 581076) due to test failures. a=bustage", + "pushdate": "2010-08-30 05:36:19", + "backsout": [ + "6fe388a0fb5eb94bc4b9969d60111b8ce5141378" + ], + "backedoutby": "", + "author_email": "bmcbride@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 32276589.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/app/profile/firefox.js", + "toolkit/locales/en-US/chrome/mozapps/extensions/extensions.properties", + "toolkit/mozapps/extensions/content/extensions.css", + "toolkit/mozapps/extensions/content/extensions.js", + "toolkit/mozapps/extensions/content/extensions.xul", + "toolkit/mozapps/extensions/test/browser/Makefile.in", + "toolkit/mozapps/extensions/test/browser/browser_bug581076.js", + "toolkit/themes/gnomestripe/mozapps/extensions/extensions.css", + "toolkit/themes/pinstripe/mozapps/extensions/extensions.css", + "toolkit/themes/winstripe/mozapps/extensions/extensions.css" + ], + "components": [ + "Firefox::General" + ], + "directories": [ + "toolkit", + "toolkit/locales", + "browser/app", + "toolkit/mozapps", + "browser", + "toolkit/themes" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "9e09716ddaf73e57dbd0d1a50492b0404275f67e", + "author": "Josh Aas ", + "bug_id": 592951, + "desc": "Backed out changeset 52388a9a6337, bug 592951. a=me", + "pushdate": "2010-09-08 22:20:40", + "backsout": [ + "52388a9a63378153bc365b022d913b64e9629bb1" + ], + "backedoutby": "", + "author_email": "joshmoz@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 69444001.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "ipc/app/MozillaRuntimeMain.cpp", + "ipc/chromium/src/base/process_util.h", + "ipc/chromium/src/base/process_util_mac.mm", + "ipc/glue/GeckoChildProcessHost.cpp", + "toolkit/xre/nsEmbedFunctions.cpp" + ], + "components": [ + "Core::IPC", + "Core::DOM: Content Processes", + "Toolkit::Startup and Profile System" + ], + "directories": [ + "ipc/glue", + "toolkit", + "ipc", + "ipc/chromium", + "toolkit/xre", + "ipc/app" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "b5896c8b6d41913e2968a08c15579152a58af8ce", + "author": "Ehsan Akhgari ", + "bug_id": 588999, + "desc": "Backed out changeset 4bc623a55708 (bug 588999) because of orange on Windows 7", + "pushdate": "2010-09-09 23:26:17", + "backsout": [ + "4bc623a5570853ba5da99922f425cd3753b48f08" + ], + "backedoutby": "", + "author_email": "ehsan@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 26791454.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/base/content/tabview/tabview.css", + "browser/base/content/tabview/tabview.html", + "browser/base/content/tabview/ui.js", + "browser/base/content/test/tabview/Makefile.in", + "browser/base/content/test/tabview/browser_tabview_exit_button.js", + "browser/themes/gnomestripe/browser/tabview/tabview.css", + "browser/themes/pinstripe/browser/tabview/tabview.css", + "browser/themes/winstripe/browser/tabview/tabview.css" + ], + "components": [], + "directories": [ + "browser/base", + "browser/themes", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "d8674093f3558f6cfc862352dec321af9f8e4d7a", + "author": "Justin Lebar ", + "bug_id": 578880, + "desc": "Backed out changeset 100bcacdbf45 due to orange (bug 578880).", + "pushdate": "2010-09-10 20:50:33", + "backsout": [ + "100bcacdbf456379bfd0f81359b600dfa648199a" + ], + "backedoutby": "", + "author_email": "justin.lebar@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 21326102.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "config/autoconf.mk.in", + "configure.in", + "js/src/Makefile.in", + "js/src/config/autoconf.mk.in", + "js/src/configure.in", + "xpcom/io/Makefile.in" + ], + "components": [ + "Firefox Build System::General" + ], + "directories": [ + "js/src", + "xpcom/io", + "config", + "xpcom", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "84baf90b040c7d5912724461c6e9e1d104ce5a18", + "author": "Gavin Sharp ", + "bug_id": 589613, + "desc": "Backed out changeset 2a216165e361 (bug 589613), a=shutuphook", + "pushdate": "2010-09-11 17:49:52", + "backsout": [ + "2a216165e361c07faf31e4788b404580e9cc7343" + ], + "backedoutby": "", + "author_email": "gavin@gavinsharp.com", + "reviewers": [ + "shutuphook" + ], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 27864872.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "docshell/base/nsDefaultURIFixup.cpp", + "netwerk/base/public/Makefile.in" + ], + "components": [], + "directories": [ + "netwerk/base", + "docshell/base", + "docshell", + "netwerk" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "afe3db59ae35d04547b3c07fdc46e8e77d8cd9d0", + "author": "Robert Sayre ", + "bug_id": 588016, + "desc": "Backed out changeset e2e1ea2a39ce. (Igor Bukanov \u2013 bug 588016 - Avoid reporting OOM when background has not finished. r=anygregor)", + "pushdate": "2010-09-11 19:16:24", + "backsout": [ + "e2e1ea2a39cea2442b332998015324369763f0a2" + ], + "backedoutby": "", + "author_email": "sayrer@gmail.com", + "reviewers": [ + "anygregor" + ], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 71020751.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/Makefile.in", + "js/src/jsapi.cpp", + "js/src/jscntxt.cpp", + "js/src/jscntxt.h", + "js/src/jsgc.cpp", + "js/src/jsgc.h", + "js/src/jsobj.cpp", + "js/src/jsscope.cpp", + "js/src/jstask.cpp", + "js/src/jstask.h" + ], + "components": [ + "Firefox Build System::General", + "Core::JavaScript Engine" + ], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "59244235c85ba6eb0d296198ec5ea5ac7540a1c7", + "author": "L. David Baron ", + "bug_id": 508115, + "desc": "Backed out changeset a6ee83aa638e to fix orange (test_bug508115.xul timing out)", + "pushdate": "2010-09-14 03:45:55", + "backsout": [ + "a6ee83aa638e" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 73644476.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/xbl/test/file_bug591198_inner.html", + "content/xbl/test/file_bug591198_xbl.xml", + "content/xbl/test/test_bug591198.html" + ], + "components": [], + "directories": [ + "content", + "content/xbl" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "5ef1dd2885fbd311be1be1993e786f218660cbb5", + "author": "L. David Baron ", + "bug_id": 508115, + "desc": "Backed out changeset 2e55203d7b80 to fix orange (test_bug508115.xul timing out).", + "pushdate": "2010-09-14 03:45:55", + "backsout": [ + "2e55203d7b80a8dffdf9217d8eefbf4a6f897456" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 73644476.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/base/public/nsContentErrors.h", + "content/xbl/src/nsXBLService.cpp", + "content/xbl/test/Makefile.in", + "layout/base/nsCSSFrameConstructor.cpp" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "content/base", + "content", + "content/xbl", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "df5e678290228bd3f9eb047fbe4597c1bb34092a", + "author": "Peter Van der Beken ", + "bug_id": 590612, + "desc": "Backout c130135dcf02 (Fix for bug 590612 (Speed up js-wrapping in classinfo when we already have a wrapper)).", + "pushdate": "2010-09-15 05:28:28", + "backsout": [ + "c130135dcf023f94f778866f3aba337704323f13" + ], + "backedoutby": "", + "author_email": "peterv@propagandism.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 70464335.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/base/public/nsContentUtils.h", + "content/base/src/nsContentUtils.cpp", + "js/src/jstl.h", + "js/src/jsvector.h", + "js/src/xpconnect/src/qsgen.py", + "js/src/xpconnect/src/xpcprivate.h", + "js/src/xpconnect/src/xpcpublic.h", + "js/src/xpconnect/src/xpcwrappednative.cpp" + ], + "components": [], + "directories": [ + "js", + "content/base", + "content", + "js/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "77e11b95175faa0b37166d68311b62b8c398e13d", + "author": "Oleg Romashin ", + "bug_id": 582840, + "desc": "Backout changeset 7eb93fe05d3a. bug 582840 due to oranges", + "pushdate": "2010-09-15 22:02:59", + "backsout": [ + "7eb93fe05d3aed48fe64ee4b00f55d7a931ee7fd" + ], + "backedoutby": "", + "author_email": "romaxa@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 65638790.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/base/public/nsIFrameLoader.idl", + "content/base/src/nsFrameLoader.cpp", + "content/base/test/chrome/Makefile.in", + "content/base/test/chrome/bug514705.html", + "content/base/test/chrome/bug514705_helper.xul", + "content/base/test/chrome/test_bug514705.xul", + "dom/ipc/PBrowser.ipdl", + "dom/ipc/TabChild.cpp", + "dom/ipc/TabChild.h", + "dom/ipc/TabParent.cpp", + "dom/ipc/TabParent.h", + "toolkit/content/widgets/browser.xml" + ], + "components": [ + "Core::DOM: Content Processes" + ], + "directories": [ + "toolkit/content", + "toolkit", + "dom", + "content/base", + "content", + "dom/ipc" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "8422935a2d917c8769c68fbff2a7443e286ae28e", + "author": "Jason Orendorff ", + "bug_id": 580033, + "desc": "Backed out changeset 84b4d4856e1e (bug 580033) due to orange.", + "pushdate": "2010-09-16 16:26:06", + "backsout": [ + "84b4d4856e1eaab0ccc7ba6184a977ab44ef5ab5" + ], + "backedoutby": "", + "author_email": "jorendorff@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 72558895.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jscntxt.h" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "58e7b99bb1d09011736b55ed85f9bb75af839b5b", + "author": "Josh Aas ", + "bug_id": 596762, + "desc": "Backed out changeset 080a38bd09c5, bug 596762, a=bustage", + "pushdate": "2010-09-16 22:41:26", + "backsout": [ + "080a38bd09c5cbdf173e61216655032c865d9b82" + ], + "backedoutby": "", + "author_email": "joshmoz@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 70136447.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/app/profile/firefox.js", + "modules/plugin/base/src/nsNPAPIPlugin.cpp" + ], + "components": [ + "Firefox::General" + ], + "directories": [ + "modules", + "modules/plugin", + "browser", + "browser/app" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "84a05bdabec5be7bacde12cccc92db17f4d54c5a", + "author": "Josh Aas ", + "bug_id": 596762, + "desc": "Backed out changeset c06ef0414fee, bug 596762. a=me", + "pushdate": "2010-09-21 02:13:50", + "backsout": [ + "c06ef0414fee2ae6ae41b8a4a13c62c132a7e780" + ], + "backedoutby": "", + "author_email": "joshmoz@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 70494791.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/app/profile/firefox.js", + "layout/tools/reftest/reftest.js", + "modules/plugin/base/src/nsNPAPIPlugin.cpp", + "modules/plugin/test/mochitest/test_GCrace.html", + "modules/plugin/test/mochitest/test_crash_nested_loop.html", + "modules/plugin/test/mochitest/test_crash_notify.xul", + "modules/plugin/test/mochitest/test_crash_notify_no_report.xul", + "modules/plugin/test/mochitest/test_crash_submit.xul", + "modules/plugin/test/mochitest/test_crashing.html", + "modules/plugin/test/mochitest/test_crashing2.html", + "modules/plugin/test/mochitest/test_hanging.html", + "modules/plugin/test/reftest/reftest.list", + "testing/mochitest/tests/SimpleTest/SimpleTest.js", + "testing/testsuite-targets.mk" + ], + "components": [ + "Testing::Mochitest", + "Firefox::General", + "Testing::General" + ], + "directories": [ + "layout/tools", + "browser/app", + "modules/plugin", + "testing/mochitest", + "browser", + "testing", + "layout", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "f552a61aa4234eca5819bb3bfd6490501a13c330", + "author": "Robert Sayre ", + "bug_id": 597945, + "desc": "Back out changeset d7d3c0af2877. Brendan Eich \u2013 Fix slot leak that leads to allocSlot assert botch (597945, r=jorendorff).", + "pushdate": "2010-09-21 05:12:47", + "backsout": [ + "d7d3c0af287702956715d115205e2695b5ec39fa" + ], + "backedoutby": "", + "author_email": "sayrer@gmail.com", + "reviewers": [ + "jorendorff" + ], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 71834134.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsscope.cpp", + "js/src/tests/js1_8_5/regress/jstests.list", + "js/src/tests/js1_8_5/regress/regress-597945-1.js", + "js/src/tests/js1_8_5/regress/regress-597945-2.js" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + } +] \ No newline at end of file diff --git a/dataset/raw_backout_data.json b/dataset/raw_backout_data.json new file mode 100644 index 0000000000..5d5a17d844 --- /dev/null +++ b/dataset/raw_backout_data.json @@ -0,0 +1,101119 @@ +[ + { + "node": "3a2a9e0c5c633a413efbf2db5110a978f7ebf055", + "author": "bcrowder@mozilla.com", + "bug_id": 439110, + "desc": "Backed out changeset f201baf7bf04 (bug 439110), was causing unit-test failures", + "pushdate": "2008-06-18 23:00:40", + "backsout": [ + "f201baf7bf04" + ], + "backedoutby": "", + "author_email": "bcrowder@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 2863366.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/xpconnect/shell/xpcshell.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "294bf662e8c0a3e3a1bc74a9dbd6d4d499c30e7f", + "author": "Daniel Holbert ", + "bug_id": 433373, + "desc": "Backed out changeset 5bffc31ff797 (bug 433373) -- first attempt didn't handle page scaling correctly.", + "pushdate": "2008-06-24 18:54:31", + "backsout": [ + "5bffc31ff797" + ], + "backedoutby": "", + "author_email": "dholbert@cs.stanford.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 3502598.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/generic/nsPageFrame.cpp" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "layout/generic", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "4f1b1553985c88372878dffe93a79988a4f1c8a1", + "author": "L. David Baron ", + "bug_id": 363706, + "desc": "Back out 0b57ada5d4b2 due to mochitest failures on at least Windows. (Bug 363706)", + "pushdate": "2008-07-02 05:02:11", + "backsout": [ + "0b57ada5d4b2" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 4183452.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/base/nsLayoutUtils.cpp", + "layout/base/nsLayoutUtils.h", + "layout/generic/nsAbsoluteContainingBlock.cpp", + "layout/generic/nsFrame.cpp", + "layout/style/nsComputedDOMStyle.cpp", + "layout/style/nsRuleNode.cpp", + "layout/style/nsStyleCoord.cpp", + "layout/style/nsStyleCoord.h", + "layout/style/nsStyleStruct.cpp", + "layout/style/nsStyleStruct.h", + "layout/tables/BasicTableLayoutStrategy.cpp", + "layout/tables/FixedTableLayoutStrategy.cpp", + "layout/xul/base/src/nsBox.cpp" + ], + "components": [ + "Core::CSS Parsing and Computation", + "Core::DOM: CSS Object Model", + "Core::Layout", + "Core::Layout: Tables", + "Core::Layout: Positioned" + ], + "directories": [ + "layout/generic", + "layout/tables", + "layout/xul", + "layout/style", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "487bd2c4044a093a8f1e108c7c925d1b55e85975", + "author": "L. David Baron ", + "bug_id": 363706, + "desc": "Back out 0b1995eab10f due to mochitest failures on at least Windows. (Bug 363706)", + "pushdate": "2008-07-02 05:02:11", + "backsout": [ + "0b1995eab10f" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 4183452.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "gfx/thebes/public/gfxFont.h", + "gfx/thebes/src/gfxAtsuiFonts.cpp", + "gfx/thebes/src/gfxOS2Fonts.cpp", + "gfx/thebes/src/gfxPangoFonts.cpp", + "gfx/thebes/src/gfxWindowsFonts.cpp", + "layout/reftests/bugs/371043-1-ref.html", + "layout/reftests/bugs/reftest.list", + "layout/style/nsRuleNode.cpp" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "gfx/thebes", + "layout/reftests", + "layout/style", + "gfx", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "847ff9bffc86ff91a8da3ea1b9f5b38bc335bce0", + "author": "Shawn Wilsher ", + "bug_id": 442949, + "desc": "Backed out changeset c9b5882bf6f6 per bug 442949.\nThis changeset is only being backed out because it depends on the sqlite upgrade.", + "pushdate": "2008-07-08 14:15:34", + "backsout": [ + "c9b5882bf6f6" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 2932103.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "db/sqlite3/src/Makefile.in" + ], + "components": [], + "directories": [ + "db/sqlite3", + "db" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "00f39bafc70ebf3fb8ee8911ad097624cf2383a0", + "author": "Shawn Wilsher ", + "bug_id": 442949, + "desc": "Backed out changeset 1d72dd9072ab for Bug 442949 (Ts regression)", + "pushdate": "2008-07-08 14:15:34", + "backsout": [ + "1d72dd9072ab" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 2932103.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "db/sqlite3/src/sqlite3.c", + "db/sqlite3/src/sqlite3.h" + ], + "components": [], + "directories": [ + "db/sqlite3", + "db" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "6d3ecb00edf7a48850ff6ea170af781d6339b363", + "author": "Shawn Wilsher ", + "bug_id": 442949, + "desc": "Backed out changeset e741c9c886f7 for bug 442949 (Ts regression)", + "pushdate": "2008-07-08 14:15:34", + "backsout": [ + "e741c9c886f7" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 2932103.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "configure.in", + "db/sqlite3/README.MOZILLA" + ], + "components": [], + "directories": [ + "db/sqlite3", + "db" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "ad98cff74097a54fc30245d5f7747d095834e68a", + "author": "Shawn Wilsher ", + "bug_id": 443220, + "desc": "Backed out changeset 12412df591a0 (bug 443220)", + "pushdate": "2008-07-08 22:34:54", + "backsout": [ + "12412df591a0" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 2962063.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "tools/test-harness/xpcshell-simple/test_one.sh" + ], + "components": [], + "directories": [ + "tools/test-harness", + "tools" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "337a43c872960010037890048fccfc08e2af8a96", + "author": "L. David Baron ", + "bug_id": 374754, + "desc": "Backed out changeset 5c009a853d70 for hitting a fatal JS_Assert during xpcshell unit tests (xpcom/unit/test_bug374754.js) on the DO_NEXT_OP(JSOP_INCNAME_LENGTH) line on !JS_THREADED_INTERP platforms (Windows).", + "pushdate": "2008-07-19 04:53:17", + "backsout": [ + "5c009a853d70" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 5651718.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsemit.cpp", + "js/src/jsinterp.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "16708f23daf5fbf23e298eeb28d7693e42ec6d34", + "author": "Edward Lee ", + "bug_id": 446621, + "desc": "Backout 6831521f03ac to fix Bug 446621 - Slowdown on AutoComplete - AwesomeBar. a=beltzner", + "pushdate": "2008-07-22 15:50:07", + "backsout": [ + "6831521f03ac" + ], + "backedoutby": "", + "author_email": "edward.lee@engineering.uiuc.edu", + "reviewers": [ + "beltzner" + ], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 5214472.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/components/places/src/nsNavHistoryAutoComplete.cpp" + ], + "components": [], + "directories": [ + "toolkit/components", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "cab5a570f46e10259bcd9152bcd3fab535a35e5c", + "author": "Ryan Flint ", + "bug_id": 432599, + "desc": "Backout changesets d811aa4cf0cf and 96ca77c43cb9 from bug 432599", + "pushdate": "2008-07-29 23:05:50", + "backsout": [ + "d811aa4cf0cf", + "96ca77c43cb9" + ], + "backedoutby": "", + "author_email": "rflint@ryanflint.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 836604.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/base/content/browser-places.js", + "browser/base/content/test/Makefile.in", + "browser/base/content/test/browser_bug432599.js" + ], + "components": [ + "Firefox::Bookmarks & History" + ], + "directories": [ + "browser/base", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "3bd5b0f13df3cce01677022941d92e14747eca78", + "author": "Justin Dolske ", + "bug_id": 449422, + "desc": "Backed out changeset 7362e63c648e (relanding bug 449422)", + "pushdate": "2008-08-14 04:20:03", + "backsout": [ + "7362e63c648e" + ], + "backedoutby": "", + "author_email": "dolske@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 5043247.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/tables/nsTableRowFrame.cpp", + "layout/tables/nsTableRowGroupFrame.cpp" + ], + "components": [ + "Core::Layout: Tables" + ], + "directories": [ + "layout/tables", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "93a88a69a3df3d36b4b4c28126cd38ebd04026b4", + "author": "Justin Dolske ", + "bug_id": 449168, + "desc": "Backed out changeset 4b2c67fe7e6b (relanding bug 449168)", + "pushdate": "2008-08-14 04:51:30", + "backsout": [ + "4b2c67fe7e6b" + ], + "backedoutby": "", + "author_email": "dolske@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 5045134.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/generic/nsFrameSelection.h", + "layout/generic/nsTextFrame.h", + "layout/generic/nsTextFrameThebes.cpp" + ], + "components": [ + "Core::Layout", + "Core::Layout: Text and Fonts" + ], + "directories": [ + "layout/generic", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "afeaf72a5266b81ccdc006fe1d923aea93f88811", + "author": "Justin Dolske ", + "bug_id": 121341, + "desc": "Backed out changeset db55605b2a4c (relanding bug 121341)", + "pushdate": "2008-08-14 05:00:00", + "backsout": [ + "db55605b2a4c" + ], + "backedoutby": "", + "author_email": "dolske@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 5045644.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "xpcom/ds/nsPersistentProperties.cpp", + "xpcom/ds/nsPersistentProperties.h", + "xpcom/tests/unit/data/bug121341-2.properties", + "xpcom/tests/unit/data/bug121341.properties", + "xpcom/tests/unit/test_bug121341.js" + ], + "components": [ + "Core::XPCOM" + ], + "directories": [ + "xpcom/ds", + "xpcom", + "xpcom/tests" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "573c5b6e8ec057ba45cc91e88b5ec74403fda2c8", + "author": "Benjamin Smedberg ", + "bug_id": 31290, + "desc": "Backed out changeset e92e18d52d71 due to the following test failures on Windows:\n*** 31290 ERROR TEST-UNEXPECTED-FAIL | /tests/dom/tests/mochitest/general/test_offsets.xul | svgbase bounding rect width - got 45, expected 0\n*** 31291 ERROR TEST-UNEXPECTED-FAIL | /tests/dom/tests/mochitest/general/test_offsets.xul | svgbase bounding rect height - got 20, expected 0\n*** 31292 ERROR TEST-UNEXPECTED-FAIL | /tests/dom/tests/mochitest/general/test_offsets.xul | svgbase bounding rect right - got 45, expected 0\n*** 31293 ERROR TEST-UNEXPECTED-FAIL | /tests/dom/tests/mochitest/general/test_offsets.xul | svgbase bounding rect bottom - got 20, expected 0\n*** 31306 ERROR TEST-UNEXPECTED-FAIL | /tests/dom/tests/mochitest/general/test_offsets.xul | svgrect bounding rect width - got 45, expected 0\n*** 31307 ERROR TEST-UNEXPECTED-FAIL | /tests/dom/tests/mochitest/general/test_offsets.xul | svgrect bounding rect height - got 20, expected 0\n*** 31308 ERROR TEST-UNEXPECTED-FAIL | /tests/dom/tests/mochitest/general/test_offsets.xul | svgrect bounding rect right - got 45, expected 0\n*** 31309 ERROR TEST-UNEXPECTED-FAIL | /tests/dom/tests/mochitest/general/test_offsets.xul | svgrect bounding rect bottom - got 20, expected 0", + "pushdate": "2008-08-19 16:22:27", + "backsout": [ + "e92e18d52d71" + ], + "backedoutby": "", + "author_email": "benjamin@smedbergs.us", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 13131183.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/base/nsLayoutUtils.cpp", + "layout/svg/base/src/nsISVGChildFrame.h", + "layout/svg/base/src/nsSVGClipPathFrame.cpp", + "layout/svg/base/src/nsSVGClipPathFrame.h", + "layout/svg/base/src/nsSVGContainerFrame.cpp", + "layout/svg/base/src/nsSVGContainerFrame.h", + "layout/svg/base/src/nsSVGEffects.cpp", + "layout/svg/base/src/nsSVGFilterFrame.cpp", + "layout/svg/base/src/nsSVGFilterFrame.h", + "layout/svg/base/src/nsSVGForeignObjectFrame.cpp", + "layout/svg/base/src/nsSVGForeignObjectFrame.h", + "layout/svg/base/src/nsSVGGlyphFrame.cpp", + "layout/svg/base/src/nsSVGGlyphFrame.h", + "layout/svg/base/src/nsSVGImageFrame.cpp", + "layout/svg/base/src/nsSVGInnerSVGFrame.cpp", + "layout/svg/base/src/nsSVGMarkerFrame.cpp", + "layout/svg/base/src/nsSVGMaskFrame.cpp", + "layout/svg/base/src/nsSVGOuterSVGFrame.cpp", + "layout/svg/base/src/nsSVGOuterSVGFrame.h", + "layout/svg/base/src/nsSVGPathGeometryFrame.cpp", + "layout/svg/base/src/nsSVGPathGeometryFrame.h", + "layout/svg/base/src/nsSVGSwitchFrame.cpp", + "layout/svg/base/src/nsSVGTextFrame.cpp", + "layout/svg/base/src/nsSVGTextFrame.h", + "layout/svg/base/src/nsSVGUtils.cpp", + "layout/svg/base/src/nsSVGUtils.h" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "layout/svg", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "2c020a9f03c14446c2b28966511240cc2883bcc5", + "author": "Dave Camp ", + "bug_id": 430061, + "desc": "Backed out changeset e63a23edb90c due to Rlk regression (bug 430061).", + "pushdate": "2008-08-19 21:43:06", + "backsout": [ + "e63a23edb90c" + ], + "backedoutby": "", + "author_email": "dcamp@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 4735124.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "modules/libpr0n/build/nsImageModule.cpp", + "modules/libpr0n/src/Makefile.in", + "modules/libpr0n/src/imgCache.cpp", + "modules/libpr0n/src/imgCache.h", + "modules/libpr0n/src/imgLoader.cpp", + "modules/libpr0n/src/imgLoader.h", + "modules/libpr0n/src/imgRequest.cpp", + "modules/libpr0n/src/imgRequest.h", + "modules/libpr0n/test/Makefile.in", + "modules/libpref/src/init/all.js" + ], + "components": [], + "directories": [ + "modules/libpref", + "modules/libpr0n", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "c82226c56072c7c85c7d9e614fa1c84b65d42592", + "author": "Dave Camp ", + "bug_id": 261074, + "desc": "Backed out changeset c0f5a0af84dd to try to fix windows orange (Bug 261074).", + "pushdate": "2008-08-19 22:46:59", + "backsout": [ + "c0f5a0af84dd" + ], + "backedoutby": "", + "author_email": "dcamp@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 4738957.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "widget/src/windows/nsWindow.cpp" + ], + "components": [], + "directories": [ + "widget", + "widget/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "aa14280d31fb3486a3371581ae6a04461738d1eb", + "author": "Dave Camp ", + "bug_id": 356295, + "desc": "Backed out changeset 30d900751ca9 to fix unit test orange (Bug 356295)", + "pushdate": "2008-08-20 00:57:00", + "backsout": [ + "30d900751ca9" + ], + "backedoutby": "", + "author_email": "dcamp@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 4746758.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/base/content/pageinfo/pageInfo.js", + "content/base/public/nsContentUtils.h", + "content/base/src/nsContentAreaDragDrop.cpp", + "content/base/src/nsContentAreaDragDrop.h", + "content/base/src/nsContentUtils.cpp", + "content/base/src/nsGkAtomList.h", + "content/events/public/nsIPrivateDOMEvent.h", + "content/events/src/Makefile.in", + "content/events/src/nsDOMDataTransfer.cpp", + "content/events/src/nsDOMDataTransfer.h", + "content/events/src/nsDOMDragEvent.cpp", + "content/events/src/nsDOMDragEvent.h", + "content/events/src/nsDOMEvent.cpp", + "content/events/src/nsDOMEvent.h", + "content/events/src/nsDOMMouseEvent.h", + "content/events/src/nsDOMUIEvent.cpp", + "content/events/src/nsEventDispatcher.cpp", + "content/events/src/nsEventListenerManager.cpp", + "content/events/src/nsEventStateManager.cpp", + "content/events/src/nsEventStateManager.h", + "content/events/test/Makefile.in", + "content/events/test/test_draggableprop.html", + "content/events/test/test_dragstart.html", + "content/html/content/src/nsGenericHTMLElement.cpp", + "content/html/content/src/nsGenericHTMLElement.h", + "content/html/content/src/nsHTMLAnchorElement.cpp", + "content/html/content/src/nsHTMLImageElement.cpp", + "dom/public/coreEvents/nsIDOMDragListener.h", + "dom/public/idl/events/Makefile.in", + "dom/public/idl/events/nsIDOMDataTransfer.idl", + "dom/public/idl/events/nsIDOMDragEvent.idl", + "dom/public/idl/html/nsIDOMNSHTMLElement.idl", + "dom/public/nsDOMClassInfoID.h", + "dom/src/base/nsDOMClassInfo.cpp", + "editor/libeditor/base/nsEditorUtils.cpp", + "editor/libeditor/base/nsEditorUtils.h", + "editor/libeditor/html/nsHTMLDataTransfer.cpp", + "editor/libeditor/text/nsEditorEventListeners.cpp", + "editor/libeditor/text/nsPlaintextDataTransfer.cpp", + "layout/base/nsLayoutUtils.cpp", + "layout/xul/base/src/tree/public/nsITreeBoxObject.idl", + "layout/xul/base/src/tree/src/nsTreeBodyFrame.cpp", + "layout/xul/base/src/tree/src/nsTreeBoxObject.cpp", + "testing/mochitest/tests/SimpleTest/EventUtils.js", + "toolkit/content/nsDragAndDrop.js", + "widget/public/nsGUIEvent.h", + "widget/public/nsIDragService.idl", + "widget/public/nsIDragSession.idl", + "widget/src/beos/nsWindow.cpp", + "widget/src/cocoa/nsChildView.mm", + "widget/src/cocoa/nsDragService.mm", + "widget/src/gtk2/nsWindow.cpp", + "widget/src/gtk2/nsWindow.h", + "widget/src/os2/nsWindow.cpp", + "widget/src/photon/nsWidget.cpp", + "widget/src/windows/nsNativeDragTarget.cpp", + "widget/src/xpwidgets/nsBaseDragService.cpp", + "widget/src/xpwidgets/nsBaseDragService.h", + "widget/src/xpwidgets/nsPrimitiveHelpers.cpp", + "xpfe/global/jar.mn" + ], + "components": [ + "Core::Layout", + "Firefox::Page Info Window", + "Testing::Mochitest" + ], + "directories": [ + "browser/base", + "toolkit/content", + "editor", + "content/base", + "content", + "content/html", + "toolkit", + "dom", + "browser", + "layout", + "dom/public", + "dom/src", + "xpfe", + "layout/xul", + "testing/mochitest", + "testing", + "layout/base", + "widget", + "editor/libeditor", + "xpfe/global", + "widget/public", + "widget/src", + "content/events" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "695ba8eac3dc1e4a5206ff29f25a36267bc2d3e0", + "author": "Dave Camp ", + "bug_id": 442812, + "desc": "Backed out changeset 1e3d4775197a (bug 442812)", + "pushdate": "2008-08-20 05:59:47", + "backsout": [ + "1e3d4775197a" + ], + "backedoutby": "", + "author_email": "dcamp@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 4764925.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "caps/src/nsScriptSecurityManager.cpp", + "content/base/public/nsContentUtils.h", + "content/base/src/Makefile.in", + "content/base/src/nsContentSink.cpp", + "content/base/src/nsContentSink.h", + "content/base/src/nsContentUtils.cpp", + "dom/src/offline/nsDOMOfflineResourceList.cpp", + "netwerk/base/public/nsNetUtil.h", + "netwerk/cache/src/nsDiskCacheDeviceSQL.cpp", + "netwerk/cache/src/nsDiskCacheDeviceSQL.h", + "uriloader/prefetch/nsIOfflineCacheUpdate.idl", + "uriloader/prefetch/nsOfflineCacheUpdate.cpp" + ], + "components": [], + "directories": [ + "netwerk/base", + "uriloader/prefetch", + "dom/src", + "netwerk", + "netwerk/cache", + "caps/src", + "caps", + "dom", + "content/base", + "content", + "uriloader" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "f65e7540fe97621babc413d15060df2cb3d86e81", + "author": "Dave Camp ", + "bug_id": 442806, + "desc": "Backed out changeset ea551e6f0f40 (bug 442806)", + "pushdate": "2008-08-20 05:59:47", + "backsout": [ + "ea551e6f0f40" + ], + "backedoutby": "", + "author_email": "dcamp@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 4764925.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/base/content/browser.js", + "browser/components/preferences/advanced.js", + "content/base/src/nsContentSink.cpp", + "content/base/src/nsContentUtils.cpp", + "content/base/src/nsDocument.cpp", + "content/base/src/nsDocument.h", + "docshell/base/nsDocShell.cpp", + "dom/src/offline/Makefile.in", + "dom/src/offline/nsDOMOfflineResourceList.cpp", + "dom/src/offline/nsDOMOfflineResourceList.h", + "dom/tests/mochitest/ajax/offline/offlineTests.js", + "dom/tests/mochitest/ajax/offline/test_changingManifest.html", + "dom/tests/mochitest/ajax/offline/test_simpleManifest.html", + "netwerk/base/public/Makefile.in", + "netwerk/base/public/nsIApplicationCache.idl", + "netwerk/base/public/nsIApplicationCacheContainer.idl", + "netwerk/base/public/nsIApplicationCacheService.idl", + "netwerk/base/public/nsINetUtil.idl", + "netwerk/base/public/nsNetUtil.h", + "netwerk/base/src/nsIOService.cpp", + "netwerk/base/src/nsIOService.h", + "netwerk/build/Makefile.in", + "netwerk/build/nsNetCID.h", + "netwerk/build/nsNetModule.cpp", + "netwerk/cache/public/Makefile.in", + "netwerk/cache/public/nsICacheService.idl", + "netwerk/cache/public/nsIOfflineCacheSession.idl", + "netwerk/cache/src/nsCacheService.cpp", + "netwerk/cache/src/nsCacheService.h", + "netwerk/cache/src/nsCacheSession.cpp", + "netwerk/cache/src/nsCacheSession.h", + "netwerk/cache/src/nsDiskCacheDeviceSQL.cpp", + "netwerk/cache/src/nsDiskCacheDeviceSQL.h", + "netwerk/protocol/http/src/nsHttpChannel.cpp", + "netwerk/protocol/http/src/nsHttpChannel.h", + "uriloader/prefetch/nsIOfflineCacheUpdate.idl", + "uriloader/prefetch/nsOfflineCacheUpdate.cpp", + "uriloader/prefetch/nsOfflineCacheUpdate.h" + ], + "components": [ + "Firefox::General", + "Core::Networking", + "Core::DOM: Navigation" + ], + "directories": [ + "netwerk/base", + "browser/base", + "uriloader/prefetch", + "netwerk/protocol", + "dom/src", + "dom/tests", + "netwerk", + "docshell/base", + "netwerk/cache", + "docshell", + "browser/components", + "content/base", + "content", + "dom", + "netwerk/build", + "browser", + "uriloader" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "2053bab906dc548240c7d3e279af04ffcac48843", + "author": "Dave Camp ", + "bug_id": 442803, + "desc": "Backed out changeset bbaf0d5fef61 (bug 442803)", + "pushdate": "2008-08-20 05:59:47", + "backsout": [ + "bbaf0d5fef61" + ], + "backedoutby": "", + "author_email": "dcamp@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 4764925.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "uriloader/prefetch/nsIPrefetchService.idl", + "uriloader/prefetch/nsPrefetchService.cpp", + "uriloader/prefetch/nsPrefetchService.h" + ], + "components": [ + "Core::Networking: Cache" + ], + "directories": [ + "uriloader/prefetch", + "uriloader" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "a9d2103187b145aec59e893a66ef3eec6efec569", + "author": "Dave Camp ", + "bug_id": 436531, + "desc": "Backed out changeset 2e3d61018e3d (Bug 436531)", + "pushdate": "2008-08-20 07:43:30", + "backsout": [ + "2e3d61018e3d" + ], + "backedoutby": "", + "author_email": "dcamp@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 4771148.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "xpcom/proxy/src/nsProxyEvent.cpp", + "xpcom/proxy/tests/Makefile.in", + "xpcom/proxy/tests/nsITestProxy.idl", + "xpcom/proxy/tests/nsITestProxyOrig.idl", + "xpcom/proxy/tests/proxy-create-threadsafety.cpp", + "xpcom/proxy/tests/proxytests.cpp", + "xpcom/reflect/xptcall/src/md/win32/xptc_arm_ceppc.asm" + ], + "components": [], + "directories": [ + "xpcom/reflect", + "xpcom/proxy", + "xpcom" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "e2f89ccef0e4b9e4f7cd72206a148692472b38dc", + "author": "Dave Camp ", + "bug_id": 418051, + "desc": "Backed out changeset af00b3f27c64 (Bug 418051)", + "pushdate": "2008-08-20 08:16:26", + "backsout": [ + "af00b3f27c64" + ], + "backedoutby": "", + "author_email": "dcamp@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 4773124.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsparse.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "ada680794b55d8ff552d5c3d73811725fef56e08", + "author": "Dave Camp ", + "bug_id": 419562, + "desc": "Backed out changeset 1c69f587516b (Bug 419562)", + "pushdate": "2008-08-20 09:43:02", + "backsout": [ + "1c69f587516b" + ], + "backedoutby": "", + "author_email": "dcamp@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 4778320.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "netwerk/protocol/http/src/nsHttpHandler.cpp", + "netwerk/protocol/http/src/nsHttpHandler.h" + ], + "components": [], + "directories": [ + "netwerk/protocol", + "netwerk" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "cafe838a9b87c8a80a674a2aa3acb890d2d4d37c", + "author": "Dave Camp ", + "bug_id": 367052, + "desc": "Backed out changeset f468ae1633d4 (bug 367052)", + "pushdate": "2008-08-20 10:48:44", + "backsout": [ + "f468ae1633d4" + ], + "backedoutby": "", + "author_email": "dcamp@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 4782262.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/components/sessionstore/src/nsSessionStore.js", + "browser/components/sessionstore/test/Makefile.in", + "browser/components/sessionstore/test/browser/Makefile.in", + "browser/components/sessionstore/test/browser/browser_367052.js" + ], + "components": [], + "directories": [ + "browser/components", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "da0fa455f1af06307d92b7a5a953a3d24b2641da", + "author": "Ted Mielczarek ", + "bug_id": 446529, + "desc": "Backed out changeset d55aac0ec553, bug 446529 - Disable discretionary ligatures on Mac, due to reftest failures on mac\n\nREFTEST TEST-UNEXPECTED-FAIL | file:///builds/slave/trunk_darwin_mini01/build/layout/reftests/text/wordwrap-01.html |\nREFTEST TEST-UNEXPECTED-FAIL | file:///builds/slave/trunk_darwin_mini01/build/layout/reftests/text/wordwrap-03.html |", + "pushdate": "2008-08-20 14:44:22", + "backsout": [ + "d55aac0ec553" + ], + "backedoutby": "", + "author_email": "ted.mielczarek@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 13211698.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "gfx/thebes/src/gfxAtsuiFonts.cpp" + ], + "components": [], + "directories": [ + "gfx/thebes", + "gfx" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "e376bc87ac4ac55653d08eae143ceeff73f0c2bf", + "author": "Dave Camp ", + "bug_id": 442806, + "desc": "Backed out changeset ebafb9df6ce0 (bug 442806)", + "pushdate": "2008-08-25 06:12:07", + "backsout": [ + "ebafb9df6ce0" + ], + "backedoutby": "", + "author_email": "dcamp@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 5197665.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/base/content/browser.js", + "browser/components/preferences/advanced.js", + "content/base/src/nsContentSink.cpp", + "content/base/src/nsContentUtils.cpp", + "content/base/src/nsDocument.cpp", + "content/base/src/nsDocument.h", + "docshell/base/nsDocShell.cpp", + "dom/src/offline/Makefile.in", + "dom/src/offline/nsDOMOfflineResourceList.cpp", + "dom/src/offline/nsDOMOfflineResourceList.h", + "dom/tests/mochitest/ajax/offline/offlineTests.js", + "dom/tests/mochitest/ajax/offline/test_changingManifest.html", + "dom/tests/mochitest/ajax/offline/test_simpleManifest.html", + "netwerk/base/public/Makefile.in", + "netwerk/base/public/nsIApplicationCache.idl", + "netwerk/base/public/nsIApplicationCacheContainer.idl", + "netwerk/base/public/nsIApplicationCacheService.idl", + "netwerk/base/public/nsINetUtil.idl", + "netwerk/base/public/nsNetUtil.h", + "netwerk/base/src/nsIOService.cpp", + "netwerk/base/src/nsIOService.h", + "netwerk/build/Makefile.in", + "netwerk/build/nsNetCID.h", + "netwerk/build/nsNetModule.cpp", + "netwerk/cache/public/Makefile.in", + "netwerk/cache/public/nsICacheService.idl", + "netwerk/cache/public/nsIOfflineCacheSession.idl", + "netwerk/cache/src/nsCacheService.cpp", + "netwerk/cache/src/nsCacheService.h", + "netwerk/cache/src/nsCacheSession.cpp", + "netwerk/cache/src/nsCacheSession.h", + "netwerk/cache/src/nsDiskCacheDeviceSQL.cpp", + "netwerk/cache/src/nsDiskCacheDeviceSQL.h", + "netwerk/protocol/http/src/nsHttpChannel.cpp", + "netwerk/protocol/http/src/nsHttpChannel.h", + "uriloader/prefetch/nsIOfflineCacheUpdate.idl", + "uriloader/prefetch/nsOfflineCacheUpdate.cpp", + "uriloader/prefetch/nsOfflineCacheUpdate.h" + ], + "components": [ + "Firefox::General", + "Core::Networking", + "Core::DOM: Navigation" + ], + "directories": [ + "netwerk/base", + "browser/base", + "uriloader/prefetch", + "netwerk/protocol", + "dom/src", + "dom/tests", + "netwerk", + "docshell/base", + "netwerk/cache", + "docshell", + "browser/components", + "content/base", + "content", + "dom", + "netwerk/build", + "browser", + "uriloader" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "5e208ee3e1cc379390bf83d2acd5aa2d2d28a40c", + "author": "Dave Townsend ", + "bug_id": 449027, + "desc": "Backed out changeset 47db77d641d4 from bug 449027", + "pushdate": "2008-08-28 09:58:46", + "backsout": [ + "47db77d641d4" + ], + "backedoutby": "", + "author_email": "dtownsend@oxymoronical.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 7427684.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/app/profile/firefox.js", + "toolkit/mozapps/extensions/src/nsBlocklistService.js", + "toolkit/mozapps/extensions/test/unit/data/test_bug449027_app.xml", + "toolkit/mozapps/extensions/test/unit/data/test_bug449027_toolkit.xml", + "toolkit/mozapps/extensions/test/unit/test_bug449027.js" + ], + "components": [ + "Firefox::General" + ], + "directories": [ + "toolkit/mozapps", + "toolkit", + "browser", + "browser/app" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "f1bb365372c6d7f74e199deea15cc6c632c5d180", + "author": "Brian Crowder ", + "bug_id": 422792, + "desc": "Backed out changeset 6b496b906af4, bug 422792", + "pushdate": "2008-08-29 20:37:43", + "backsout": [ + "6b496b906af4" + ], + "backedoutby": "", + "author_email": "crowder@fiverocks.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 5086271.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "widget/src/windows/nsAppShell.cpp", + "widget/src/windows/nsBidiKeyboard.cpp", + "widget/src/windows/nsBidiKeyboard.h", + "widget/src/windows/nsClipboard.cpp", + "widget/src/windows/nsDataObj.h", + "widget/src/windows/nsFilePicker.cpp", + "widget/src/windows/nsLookAndFeel.cpp", + "widget/src/windows/nsSound.cpp", + "widget/src/windows/nsToolkit.cpp", + "widget/src/windows/nsWindow.cpp" + ], + "components": [], + "directories": [ + "widget", + "widget/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "62e63419dfb3f79ca8825b93434e34ab626a3efd", + "author": "timeless@mozdev.org", + "bug_id": 454186, + "desc": "Backed out changeset 18b48ea2b188\nto fix Bug 454186\nSM crashes when try to download file [@ nsString::ToInteger - nsTreeBodyFrame::PaintProgressMeter]", + "pushdate": "2008-09-08 13:47:42", + "backsout": [ + "18b48ea2b188" + ], + "backedoutby": "", + "author_email": "timeless@mozdev.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 14849898.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/generic/nsContainerFrame.cpp" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "layout/generic", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "4b5063537a0f9c4a6dfeafe5bffcd4db54c82d08", + "author": "timeless@mozdev.org", + "bug_id": 454186, + "desc": "Backed out changeset 54215f2cbc66\nto fix Bug 454186\nSM crashes when try to download file [@ nsString::ToInteger - nsTreeBodyFrame::PaintProgressMeter]", + "pushdate": "2008-09-08 13:47:42", + "backsout": [ + "54215f2cbc66" + ], + "backedoutby": "", + "author_email": "timeless@mozdev.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 14849898.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/base/nsImageLoader.cpp", + "layout/base/nsLayoutUtils.cpp", + "layout/base/nsPresShell.cpp", + "layout/forms/nsListControlFrame.cpp", + "layout/generic/nsBlockFrame.cpp", + "layout/generic/nsContainerFrame.cpp", + "layout/generic/nsObjectFrame.cpp", + "layout/style/nsCSSDataBlock.cpp", + "layout/svg/base/src/nsSVGOuterSVGFrame.cpp", + "layout/xul/base/src/nsBox.cpp", + "layout/xul/base/src/nsXULPopupManager.cpp", + "layout/xul/base/src/nsXULTooltipListener.cpp", + "layout/xul/base/src/tree/src/nsTreeBodyFrame.cpp" + ], + "components": [ + "Core::Layout", + "Core::Layout: Form Controls", + "Core::Layout: Block and Inline" + ], + "directories": [ + "layout/generic", + "layout/xul", + "layout/forms", + "layout/svg", + "layout/style", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "713e17a251656ca02e552f7131ae0aa3e547b384", + "author": "Daniel Holbert ", + "bug_id": 454896, + "desc": "Backed out changeset 38140c8a8327 to see if it fixes Bug 454896 (sporadic RLk)", + "pushdate": "2008-09-12 01:03:43", + "backsout": [ + "38140c8a8327" + ], + "backedoutby": "", + "author_email": "dholbert@cs.stanford.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 10350350.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "netwerk/protocol/http/src/nsHttpConnection.cpp", + "security/manager/boot/src/nsSecureBrowserUIImpl.cpp", + "security/manager/ssl/src/nsNSSIOLayer.cpp", + "security/manager/ssl/src/nsNSSIOLayer.h", + "uriloader/base/nsDocLoader.cpp" + ], + "components": [ + "Core::DOM: Navigation" + ], + "directories": [ + "netwerk/protocol", + "netwerk", + "uriloader/base", + "security", + "security/manager", + "uriloader" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "9d9569916616f85f22b692a02041af3026eb43de", + "author": "Daniel Holbert ", + "bug_id": 451918, + "desc": "Backed out changeset 6772511dc81a (bug 451918) to see if it fixes broken linux leak stats (bug 455095)", + "pushdate": "2008-09-12 23:57:52", + "backsout": [ + "6772511dc81a" + ], + "backedoutby": "", + "author_email": "dholbert@cs.stanford.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 10432799.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/app/Makefile.in" + ], + "components": [ + "Firefox Build System::General" + ], + "directories": [ + "browser", + "browser/app" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "d793ccba25a5557255063ef27f3a3ab373cac258", + "author": "Steven Michaud ", + "bug_id": 444864, + "desc": "Backed out changeset f82532e1b6b5 due to reftest failures (b=444864,444260,449111)", + "pushdate": "2008-09-15 17:33:09", + "backsout": [ + "f82532e1b6b5" + ], + "backedoutby": "", + "author_email": "smichaud@pobox.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 6913211.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "widget/src/cocoa/nsNativeThemeCocoa.mm" + ], + "components": [], + "directories": [ + "widget", + "widget/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "0879f08590a9fe2a8b207ce82135408d878310cf", + "author": "Mark Banner ", + "bug_id": 325842, + "desc": "Back out changeset 493bbc89ca54 / Bug 325842", + "pushdate": "2008-09-18 11:10:27", + "backsout": [ + "493bbc89ca54" + ], + "backedoutby": "", + "author_email": "bugzilla@standard8.plus.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 9251531.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/components/autocomplete/src/nsAutoCompleteController.cpp", + "toolkit/content/tests/chrome/Makefile.in", + "toolkit/content/tests/chrome/test_autocomplete3.xul" + ], + "components": [], + "directories": [ + "toolkit/components", + "toolkit/content", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "406532c41fca52eb8570b727f8e8a5a614e5e84c", + "author": "Shawn Wilsher ", + "bug_id": 455836, + "desc": "Backed out changeset b3783fc5a9c9 (bug 455836) - TREE IS CLOSED!", + "pushdate": "2008-09-18 14:54:30", + "backsout": [ + "b3783fc5a9c9" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 9155239.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "widget/src/qt/nsNativeThemeQt.cpp" + ], + "components": [], + "directories": [ + "widget", + "widget/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "118ab5caf67dcf39de83014ca5e95b1a8cd62bdb", + "author": "Karl Tomlinson ", + "bug_id": 455791, + "desc": "backout f51aad9e6a88 due to intermittent talos ts failures b=455791", + "pushdate": "2008-09-19 03:04:07", + "backsout": [ + "f51aad9e6a88" + ], + "backedoutby": "", + "author_email": "karlt+@karlt.net", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 6393023.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "gfx/thebes/public/gfxFont.h" + ], + "components": [], + "directories": [ + "gfx/thebes", + "gfx" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "7aac9d9d651b0610c41d22707111c54271e625ff", + "author": "L. David Baron ", + "bug_id": 455403, + "desc": "Backed out changeset aab6b12f4a2b (Bug 455403) due to reftest failures from landing patches in the wrong order, and unexplained reftest hangs.", + "pushdate": "2008-09-19 23:05:30", + "backsout": [ + "aab6b12f4a2b" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 11074051.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "gfx/thebes/public/gfxMatrix.h", + "layout/reftests/transform/compound-1-fail.html", + "layout/reftests/transform/compound-1-ref.html", + "layout/reftests/transform/compound-1a.html", + "layout/reftests/transform/reftest.list", + "layout/reftests/transform/rotate-2a.html", + "layout/style/nsStyleTransformMatrix.cpp", + "layout/style/nsStyleTransformMatrix.h" + ], + "components": [ + "Core::Layout", + "Core::CSS Parsing and Computation" + ], + "directories": [ + "gfx/thebes", + "layout/reftests", + "layout/style", + "gfx", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "783541270c298725bcc433342ad12069551148fa", + "author": "Serge Gautherie ", + "bug_id": 452899, + "desc": "Backed out changeset fa8fbd81159d\nBug 452899 - Don't explicitly create the statement wrapper - storage does it for us; r=(dolske + sdwilsh)\nto try to fix leak", + "pushdate": "2008-09-20 17:43:00", + "backsout": [ + "fa8fbd81159d" + ], + "backedoutby": "", + "author_email": "sgautherie.bz@free.fr", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 6297643.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/components/passwordmgr/src/storage-mozStorage.js" + ], + "components": [], + "directories": [ + "toolkit/components", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "01d095208bdfd2fb3a09b91b5055f02dae58f02a", + "author": "Markus Stange ", + "bug_id": 403174, + "desc": "Backed out changeset 84bbd1f88fac (bug 403174)", + "pushdate": "2008-09-22 08:24:43", + "backsout": [ + "84bbd1f88fac" + ], + "backedoutby": "", + "author_email": "mstange@themasta.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 7282379.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "widget/src/cocoa/nsCocoaWindow.mm" + ], + "components": [], + "directories": [ + "widget", + "widget/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "2f9f1ea54be78fe8fe754bfbc235d7a369f730cf", + "author": "Benjamin Smedberg ", + "bug_id": 453388, + "desc": "Backed out changeset e2614011f194 - Bug 453388 - the better solution is to allow static objects and link libjs.so with g++ so that _init and _fini run static constructors/destructors correctly backout r=crowder", + "pushdate": "2008-09-23 07:43:09", + "backsout": [ + "e2614011f194" + ], + "backedoutby": "", + "author_email": "benjamin@smedbergs.us", + "reviewers": [ + "crowder" + ], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 16124025.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsapi.cpp", + "js/src/jstracer.cpp", + "js/src/jstracer.h" + ], + "components": [ + "Core::JavaScript Engine" + ], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "71d860a3a3006a0ea8b2d3dedfcec3810c64928c", + "author": "Benjamin Smedberg ", + "bug_id": 453388, + "desc": "Backed out changeset fc4a8cc07c9f - bustage fix from the first patch for bug 453388 which is also being backed out", + "pushdate": "2008-09-23 07:43:09", + "backsout": [ + "fc4a8cc07c9f" + ], + "backedoutby": "", + "author_email": "benjamin@smedbergs.us", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 16124025.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsapi.cpp", + "js/src/jstracer.cpp" + ], + "components": [ + "Core::JavaScript Engine" + ], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "6e6ac7a9540d42b871819923f441fd6d057e7718", + "author": "Serge Gautherie ", + "bug_id": 455813, + "desc": "Backed out changeset 9841b5e5cf10\nBug 455813 - Windows PGO builds fail when --disable-tests is set; r=ted.mielczarek", + "pushdate": "2008-09-24 05:18:25", + "backsout": [ + "9841b5e5cf10" + ], + "backedoutby": "", + "author_email": "sgautherie.bz@free.fr", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 6598568.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "build/Makefile.in", + "build/pgo/Makefile.in", + "build/pgo/automation.py.in", + "testing/mochitest/Makefile.in" + ], + "components": [], + "directories": [ + "testing/mochitest", + "build/pgo", + "testing", + "build" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "04a7c91e0f31b21d076ac52037ad6313dbefe0bd", + "author": "Justin Dolske ", + "bug_id": 454781, + "desc": "Backed out changeset fa432b23baa5. (Backing out bug 454781 to investigate mochitest leaks)", + "pushdate": "2008-09-25 00:19:08", + "backsout": [ + "fa432b23baa5" + ], + "backedoutby": "", + "author_email": "dolske@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 8657592.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "testing/mochitest/harness-overlay.xul", + "testing/mochitest/server.js", + "testing/mochitest/tests/SimpleTest/TestRunner.js" + ], + "components": [ + "Testing::Mochitest" + ], + "directories": [ + "testing/mochitest", + "testing" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "c2efb31d59857d6d3f8458080d44dbad60f4f135", + "author": "Karl Tomlinson ", + "bug_id": 385263, + "desc": "backout 23e255271851 b=385263", + "pushdate": "2008-09-26 08:01:41", + "backsout": [ + "23e255271851" + ], + "backedoutby": "", + "author_email": "karlt+@karlt.net", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 7015677.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "gfx/thebes/public/gfxPangoFonts.h", + "gfx/thebes/src/gfxBeOSPlatform.cpp", + "gfx/thebes/src/gfxPangoFonts.cpp", + "gfx/thebes/src/gfxPlatformGtk.cpp" + ], + "components": [], + "directories": [ + "gfx/thebes", + "gfx" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "f523d647bc5d8392a3bc2c312820694cc0f87291", + "author": "Shawn Wilsher ", + "bug_id": 417037, + "desc": "Backed out changeset b2d48e54c537 (bug 417037)\nWe have to backout bug 449443 because we have to backout bug 456910 because of\na Tp regression, which means we need to back this out :(", + "pushdate": "2008-09-26 19:56:06", + "backsout": [ + "b2d48e54c537" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 9864535.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "db/sqlite3/src/Makefile.in" + ], + "components": [], + "directories": [ + "db/sqlite3", + "db" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "f2f0728d979fabd8d40cab94a5d653ceab06e360", + "author": "Marco Zehe ", + "bug_id": 454997, + "desc": "Backout changeset 8fe1cd2d3c66 (bug 454997) because of regressions and crashes", + "pushdate": "2008-09-28 05:53:26", + "backsout": [ + "8fe1cd2d3c66" + ], + "backedoutby": "", + "author_email": "marco.zehe@googlemail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 9910520.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "accessible/src/base/nsAccessibilityUtils.cpp", + "accessible/src/base/nsAccessibilityUtils.h", + "accessible/src/base/nsDocAccessible.cpp", + "accessible/tests/mochitest/Makefile.in", + "accessible/tests/mochitest/common.js", + "accessible/tests/mochitest/nsIAccessible_states.js", + "accessible/tests/mochitest/test_nsIAccessible_editablebody.html" + ], + "components": [ + "Core::Disability Access APIs" + ], + "directories": [ + "accessible/src", + "accessible", + "accessible/tests" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "3db739625352ee5e378899dc583193a1c1ba0f25", + "author": "Mark Banner ", + "bug_id": 382690, + "desc": "Backed out changeset 93928936b1ab bug 382690 due to check-in during string freeze.", + "pushdate": "2008-09-28 14:56:16", + "backsout": [ + "93928936b1ab" + ], + "backedoutby": "", + "author_email": "bugzilla@standard8.plus.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 10129080.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/components/viewconfig/content/config.js", + "toolkit/components/viewconfig/content/config.xul", + "toolkit/locales/en-US/chrome/global/config.dtd" + ], + "components": [], + "directories": [ + "toolkit/components", + "toolkit", + "toolkit/locales" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "996d2802d3f2762122f9cb25a4b2302d2facbb8f", + "author": "Dave Townsend ", + "bug_id": 364315, + "desc": "Backed out changeset 961d90be2ba8 from bug 364315 due to random crashes in\ntests.", + "pushdate": "2008-09-30 12:09:36", + "backsout": [ + "961d90be2ba8" + ], + "backedoutby": "", + "author_email": "dtownsend@oxymoronical.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 10286734.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/base/src/nsScriptLoader.cpp", + "content/base/src/nsScriptLoader.h", + "parser/htmlparser/src/CParserContext.cpp", + "parser/htmlparser/src/CParserContext.h", + "parser/htmlparser/src/nsParser.cpp", + "parser/htmlparser/src/nsParser.h", + "parser/htmlparser/src/nsScanner.cpp", + "parser/htmlparser/src/nsScanner.h" + ], + "components": [], + "directories": [ + "parser/htmlparser", + "content/base", + "content", + "parser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "4e7a2d27d63649d9b58a772f6f29903f2601d607", + "author": "L. David Baron ", + "bug_id": 433616, + "desc": "Backed out changeset c1f6a55626be (bug 433616, part 2) because it probably caused a Windows XP performance regression.", + "pushdate": "2008-09-30 16:53:08", + "backsout": [ + "c1f6a55626be" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 12002109.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/base/public/nsIDocument.h", + "content/base/src/nsContentUtils.cpp", + "content/base/src/nsDataDocumentContentPolicy.cpp", + "content/base/src/nsDocument.cpp", + "content/base/src/nsDocument.h", + "content/base/src/nsFrameLoader.cpp", + "content/svg/document/src/Makefile.in", + "content/xul/content/src/nsXULElement.cpp", + "layout/base/nsDocumentViewer.cpp", + "layout/generic/nsFrameFrame.cpp", + "layout/generic/nsObjectFrame.cpp" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "layout/generic", + "content/xul", + "content/base", + "content", + "content/svg", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "abf1f4529de2161662d54fbc398943b5d0eef15d", + "author": "Dave Camp ", + "bug_id": 426932, + "desc": "Backed out changeset 38a48d485876 (bug 426932).", + "pushdate": "2008-09-30 19:25:44", + "backsout": [ + "38a48d485876" + ], + "backedoutby": "", + "author_email": "dcamp@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 8355682.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/components/url-classifier/tests/unit/test_cleankeycache.js" + ], + "components": [], + "directories": [ + "toolkit/components", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "507fca9fa64116a2bf6829c6b5f5fbf9414f40da", + "author": "Dave Camp ", + "bug_id": 453723, + "desc": "Backed out changeset 74aad43f37a5 (bug 453723).", + "pushdate": "2008-09-30 19:25:44", + "backsout": [ + "74aad43f37a5" + ], + "backedoutby": "", + "author_email": "dcamp@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 8355682.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/components/url-classifier/src/nsUrlClassifierDBService.cpp", + "toolkit/components/url-classifier/src/nsUrlClassifierDBService.h", + "toolkit/components/url-classifier/src/nsUrlClassifierUtils.h", + "toolkit/components/url-classifier/tests/unit/head_urlclassifier.js", + "toolkit/components/url-classifier/tests/unit/test_cleankeycache.js" + ], + "components": [ + "Toolkit::Safe Browsing" + ], + "directories": [ + "toolkit/components", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "2eade6ea592b184c39b36f93951cf4335de3e24e", + "author": "Dave Townsend ", + "bug_id": 457194, + "desc": "Backed out changeset a9838a973cdd from bug 457194 due to failing mochitest", + "pushdate": "2008-10-01 15:41:18", + "backsout": [ + "a9838a973cdd" + ], + "backedoutby": "", + "author_email": "dtownsend@oxymoronical.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 10385836.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "gfx/thebes/src/gfxAtsuiFonts.cpp" + ], + "components": [], + "directories": [ + "gfx/thebes", + "gfx" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "115934f340f058345955b0458f60fae44e4e41c8", + "author": "L. David Baron ", + "bug_id": 114649, + "desc": "Backed out changeset 6f3797124c84: Relanding: Fire resize events every 200ms during resizing, not just 200ms after resizing stops. (Bug 114649) r+sr=roc", + "pushdate": "2008-10-02 03:12:35", + "backsout": [ + "6f3797124c84" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 12125676.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/base/nsPresShell.cpp", + "layout/base/tests/test_bug114649.html" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "f9dccfb26ec9faa5399d84113fcbfd572ed90393", + "author": "Boris Zbarsky ", + "bug_id": 373701, + "desc": "Backed out changeset d07aa0d0712a: Relanding: Bug 373701. Make sure to properly cancel multipart image loads when they need canceling. r=joedrew, sr=biesi", + "pushdate": "2008-10-02 13:53:43", + "backsout": [ + "d07aa0d0712a" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [ + "joedrew", + "biesi" + ], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 7400931.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "modules/libpr0n/src/imgRequest.cpp" + ], + "components": [], + "directories": [ + "modules/libpr0n", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "5df4c3d437eeaa49e2121fca1eae9cdd52d876eb", + "author": "Boris Zbarsky ", + "bug_id": 433616, + "desc": "Backed out changeset 4e7a2d27d636: relanding Bug 433616 part 2. Implement loading of external resource documents. r=jst, sr=roc", + "pushdate": "2008-10-04 20:01:17", + "backsout": [ + "4e7a2d27d636" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [ + "roc", + "jst" + ], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 7595785.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/base/public/nsIDocument.h", + "content/base/src/nsContentUtils.cpp", + "content/base/src/nsDataDocumentContentPolicy.cpp", + "content/base/src/nsDocument.cpp", + "content/base/src/nsDocument.h", + "content/base/src/nsFrameLoader.cpp", + "content/svg/document/src/Makefile.in", + "content/xul/content/src/nsXULElement.cpp", + "layout/base/nsDocumentViewer.cpp", + "layout/generic/nsFrameFrame.cpp", + "layout/generic/nsObjectFrame.cpp" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "layout/generic", + "content/xul", + "content/base", + "content", + "content/svg", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "a8eb5fc88c015017c7eaa662a81d8631df00e382", + "author": "L. David Baron ", + "bug_id": 455311, + "desc": "Backed out changeset 6357eb31cec6 (bug 455311) for causing performance regression bug 458065.", + "pushdate": "2008-10-06 02:56:35", + "backsout": [ + "6357eb31cec6" + ], + "backedoutby": "e3b597862e2a2d0f6556f7a6a439e1b1ee487521", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 12470316.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "netwerk/base/src/nsBaseChannel.cpp", + "netwerk/base/src/nsBaseChannel.h", + "netwerk/base/src/nsInputStreamChannel.cpp", + "netwerk/base/src/nsInputStreamChannel.h", + "netwerk/protocol/data/src/nsDataChannel.cpp", + "netwerk/protocol/data/src/nsDataChannel.h", + "netwerk/protocol/file/src/nsFileChannel.cpp", + "netwerk/protocol/file/src/nsFileChannel.h", + "netwerk/protocol/file/src/nsFileProtocolHandler.cpp", + "netwerk/protocol/ftp/src/nsFTPChannel.cpp", + "netwerk/protocol/ftp/src/nsFTPChannel.h", + "netwerk/protocol/gopher/src/nsGopherChannel.cpp", + "netwerk/protocol/gopher/src/nsGopherChannel.h" + ], + "components": [], + "directories": [ + "netwerk/base", + "netwerk/protocol", + "netwerk" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "6681dc7f1293b6e328450ab0df24f73b5a96f536", + "author": "D\u00e3o Gottwald ", + "bug_id": 455990, + "desc": "Backed out changeset a8cfcc9b6d5c: relanding Bug 455990 - Close button on last open tab should be hidden. r=gavin", + "pushdate": "2008-10-06 03:45:11", + "backsout": [ + "a8cfcc9b6d5c" + ], + "backedoutby": "", + "author_email": "dao@mozilla.com", + "reviewers": [ + "gavin" + ], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 10071174.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/base/content/tabbrowser.css" + ], + "components": [ + "Firefox::Tabbed Browser" + ], + "directories": [ + "browser/base", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "e3b597862e2a2d0f6556f7a6a439e1b1ee487521", + "author": "Boris Zbarsky ", + "bug_id": 455311, + "desc": "Back out changeset a8eb5fc88c01: relanding bug 455311. Treat .url files as redirects. r+sr=biesi", + "pushdate": "2008-10-06 20:45:30", + "backsout": [ + "a8eb5fc88c01" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 7771238.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "netwerk/base/src/nsBaseChannel.cpp", + "netwerk/base/src/nsBaseChannel.h", + "netwerk/base/src/nsInputStreamChannel.cpp", + "netwerk/base/src/nsInputStreamChannel.h", + "netwerk/protocol/data/src/nsDataChannel.cpp", + "netwerk/protocol/data/src/nsDataChannel.h", + "netwerk/protocol/file/src/nsFileChannel.cpp", + "netwerk/protocol/file/src/nsFileChannel.h", + "netwerk/protocol/file/src/nsFileProtocolHandler.cpp", + "netwerk/protocol/ftp/src/nsFTPChannel.cpp", + "netwerk/protocol/ftp/src/nsFTPChannel.h", + "netwerk/protocol/gopher/src/nsGopherChannel.cpp", + "netwerk/protocol/gopher/src/nsGopherChannel.h" + ], + "components": [], + "directories": [ + "netwerk/base", + "netwerk/protocol", + "netwerk" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "cfaa8db2c177f79ebc5392db50bc0d7cdcc97b6f", + "author": "Ted Mielczarek ", + "bug_id": 365467, + "desc": "Backed out changeset 893b2c3b521f (Bug 365467 Focus controller's initial window and element can get out of sync r+sr=jst)", + "pushdate": "2008-10-08 16:44:01", + "backsout": [ + "893b2c3b521f" + ], + "backedoutby": "", + "author_email": "ted.mielczarek@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 17452477.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/base/nsPresShell.cpp" + ], + "components": [], + "directories": [ + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "1d8c68c2989e53ab13b883ce0e2023e049b9894e", + "author": "Justin Dolske ", + "bug_id": 394611, + "desc": "Backed out changeset 2f36cde1694c (bug 394611, due to leaks)", + "pushdate": "2008-10-11 04:42:26", + "backsout": [ + "2f36cde1694c" + ], + "backedoutby": "", + "author_email": "dolske@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 10055790.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/components/passwordmgr/src/nsLoginManager.js", + "toolkit/components/passwordmgr/src/nsLoginManagerPrompter.js", + "toolkit/components/passwordmgr/test/Makefile.in", + "toolkit/components/passwordmgr/test/notification_common.js", + "toolkit/components/passwordmgr/test/subtst_notifications_10.html", + "toolkit/components/passwordmgr/test/subtst_notifications_8.html", + "toolkit/components/passwordmgr/test/subtst_notifications_9.html", + "toolkit/components/passwordmgr/test/test_notifications.html", + "toolkit/components/passwordmgr/test/test_prompt.html" + ], + "components": [], + "directories": [ + "toolkit/components", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "d8a6df699a2635c9bf3c02a97941a0a540844200", + "author": "Markus Stange ", + "bug_id": 398928, + "desc": "Backed out changeset 151e51ec625e (bug 398928) because of unit test orange", + "pushdate": "2008-10-13 12:34:11", + "backsout": [ + "151e51ec625e" + ], + "backedoutby": "", + "author_email": "mstange@themasta.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 9111747.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/base/content/browser.xul", + "browser/base/content/pageinfo/pageInfo.xul", + "toolkit/components/console/content/console.xul", + "toolkit/content/Makefile.in", + "toolkit/content/WindowDraggingUtils.jsm", + "toolkit/content/customizeToolbar.js", + "toolkit/content/widgets/general.xml", + "toolkit/content/widgets/preferences.xml", + "toolkit/content/widgets/toolbar.xml", + "toolkit/mozapps/downloads/content/downloads.xul", + "toolkit/mozapps/extensions/content/extensions.xul", + "toolkit/themes/pinstripe/global/global.css" + ], + "components": [], + "directories": [ + "browser/base", + "toolkit/content", + "toolkit/components", + "toolkit", + "toolkit/mozapps", + "browser", + "toolkit/themes" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "726c49f3ea91e36175a708bafe4607194eadd56b", + "author": "Brian Crowder ", + "bug_id": 411726, + "desc": "Backed out changeset 82af7163534f\n(Bug 411726 -- Time offset and zone code are set wrong for some locales, r=mrbkap)", + "pushdate": "2008-10-14 21:21:14", + "backsout": [ + "82af7163534f" + ], + "backedoutby": "", + "author_email": "crowder@fiverocks.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 9063282.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsdate.cpp", + "js/src/prmjtime.cpp" + ], + "components": [ + "Core::JavaScript: Standard Library" + ], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "fdb6f474fc26c902aaeae57c9a2c39c37de65819", + "author": "Reed Loden ", + "bug_id": 459780, + "desc": "Backed out changeset f678aac23eae from bug 459780 because it caused the regression in bug 460643.", + "pushdate": "2008-10-20 01:26:21", + "backsout": [ + "f678aac23eae" + ], + "backedoutby": "", + "author_email": "reed@reedloden.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 13746475.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "widget/src/gtk2/nsWindow.cpp" + ], + "components": [], + "directories": [ + "widget", + "widget/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "6db7098c04e46b24fc7731203602e19a3921c588", + "author": "Benjamin Smedberg ", + "bug_id": 461410, + "desc": "Backed out changeset affcc1c08bc0 (deCOM frame enumerator) due to regression from it or bug 461410.", + "pushdate": "2008-10-28 06:59:42", + "backsout": [ + "affcc1c08bc0" + ], + "backedoutby": "", + "author_email": "benjamin@smedbergs.us", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 19145418.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/events/src/nsEventStateManager.cpp", + "layout/base/nsFrameTraversal.cpp", + "layout/base/nsFrameTraversal.h", + "layout/base/nsIFrameTraversal.h", + "layout/generic/nsFrame.cpp", + "layout/generic/nsSelection.cpp", + "toolkit/components/typeaheadfind/src/nsTypeAheadFind.cpp" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "layout/generic", + "toolkit", + "toolkit/components", + "content", + "layout", + "layout/base", + "content/events" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "b13e55f6cfda45d7fef4b6621e7681a7532edf2c", + "author": "Benjamin Smedberg ", + "bug_id": 461410, + "desc": "Backed out changeset eda9709dc586 (deCOM frame enumerator) due to regression from it or bug 461410.", + "pushdate": "2008-10-28 06:59:42", + "backsout": [ + "eda9709dc586" + ], + "backedoutby": "", + "author_email": "benjamin@smedbergs.us", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 19145418.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/base/nsFrameTraversal.cpp" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "66c23339bd12aca0833a922b63d10477ea5b224b", + "author": "Benjamin Smedberg ", + "bug_id": 461212, + "desc": "Backed out changeset d4c9a0776667 (deCOM nsILineEnumerator) due to regression from it or bug 461212", + "pushdate": "2008-10-28 06:59:42", + "backsout": [ + "d4c9a0776667" + ], + "backedoutby": "", + "author_email": "benjamin@smedbergs.us", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 19145418.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "accessible/src/html/nsHyperTextAccessible.cpp", + "layout/base/nsPresShell.cpp", + "layout/generic/nsBlockFrame.cpp", + "layout/generic/nsBlockFrame.h", + "layout/generic/nsFrame.cpp", + "layout/generic/nsFrame.h", + "layout/generic/nsFrameList.cpp", + "layout/generic/nsIFrame.h", + "layout/generic/nsILineIterator.h", + "layout/generic/nsLineBox.cpp", + "layout/generic/nsLineBox.h", + "layout/tables/nsTableRowGroupFrame.cpp", + "layout/tables/nsTableRowGroupFrame.h" + ], + "components": [ + "Core::Layout", + "Core::Layout: Tables", + "Core::Layout: Block and Inline" + ], + "directories": [ + "layout/generic", + "layout/tables", + "accessible/src", + "accessible", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "0370470de0650dabd61aac4d282eb60d1b7aa014", + "author": "L. David Baron ", + "bug_id": 322475, + "desc": "Backed out changeset d7338fec7266 (from bug 322475, which made us construct all our image loaders at frame construction time) because of issues with propagation of backgrounds to the canvas (bug 460796).", + "pushdate": "2008-10-28 22:52:00", + "backsout": [ + "d7338fec7266" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 14442841.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/generic/nsFrame.cpp" + ], + "components": [], + "directories": [ + "layout/generic", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "01e2b22db875bc378c6668f160a7ef4630806295", + "author": "L. David Baron ", + "bug_id": 322475, + "desc": "Backed out changeset 7f708623bf59 (from bug 322475, which made us construct all our image loaders at frame construction time) because of issues with propagation of backgrounds to the canvas (bug 460796).", + "pushdate": "2008-10-28 22:52:00", + "backsout": [ + "7f708623bf59" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 14442841.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/base/Makefile.in", + "layout/base/nsImageLoadNotifier.cpp", + "layout/base/nsImageLoadNotifier.h", + "layout/base/nsImageLoader.cpp", + "layout/base/nsImageLoader.h", + "layout/base/nsPresContext.cpp", + "layout/base/nsPresContext.h", + "layout/generic/nsFrame.cpp" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "layout/generic", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "80654a9e4692b8cc671683911c2e53240be3df1c", + "author": "L. David Baron ", + "bug_id": 322475, + "desc": "Backed out changeset 23eebebb8b48 (from bug 322475, which made us construct all our image loaders at frame construction time) because of issues with propagation of backgrounds to the canvas (bug 460796).", + "pushdate": "2008-10-28 22:52:00", + "backsout": [ + "23eebebb8b48" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 14442841.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/events/src/nsDOMDataContainerEvent.h", + "layout/base/nsCSSRendering.cpp", + "layout/base/nsFrameManager.cpp", + "layout/base/nsImageLoader.cpp", + "layout/base/nsImageLoader.h", + "layout/base/nsPresContext.cpp", + "layout/base/nsPresContext.h", + "layout/generic/nsFrame.cpp", + "layout/generic/nsHTMLReflowState.cpp" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "layout/generic", + "content", + "layout", + "layout/base", + "content/events" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "a935c0b1617856bc62d2aa0f2d12b3e109f831d8", + "author": "Josh Aas ", + "bug_id": 456662, + "desc": "back out changeset 47259b642835, b=456662", + "pushdate": "2008-10-28 23:59:08", + "backsout": [ + "47259b642835" + ], + "backedoutby": "", + "author_email": "joshmoz@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 10697909.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "configure.in", + "modules/libreg/src/Makefile.in", + "modules/libreg/src/reg.c", + "modules/libreg/standalone/Makefile.in", + "xpcom/Makefile.in", + "xpcom/MoreFiles/FSCopyObject.c", + "xpcom/MoreFiles/FSCopyObject.h", + "xpcom/MoreFiles/Makefile.in", + "xpcom/MoreFiles/MoreFilesX.c", + "xpcom/MoreFiles/MoreFilesX.h", + "xpcom/MoreFiles/ReadMe.txt", + "xpcom/build/Makefile.in", + "xpcom/io/Makefile.in", + "xpcom/io/nsLocalFileOSX.h", + "xpcom/io/nsLocalFileOSX.mm", + "xpcom/obsolete/Makefile.in" + ], + "components": [], + "directories": [ + "xpcom/MoreFiles", + "xpcom/io", + "xpcom/obsolete", + "xpcom/build", + "modules/libreg", + "xpcom", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "429bfa1c5dea5601da90aba52524b302a1472ab9", + "author": "timeless@mozdev.org", + "bug_id": 454561, + "desc": "Backed out changeset b0d41235146a\nBug 454561 disable tracing when JavaScript-Debugger is enabled [ @ jsd_lock ]\nthis isn't the correct fix\nr=graydon", + "pushdate": "2008-10-31 11:54:34", + "backsout": [ + "b0d41235146a" + ], + "backedoutby": "", + "author_email": "timeless@mozdev.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 19422310.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "dom/src/base/nsJSEnvironment.cpp" + ], + "components": [], + "directories": [ + "dom", + "dom/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "cf6c01973a893ff010964216f3e4d75b1bd12347", + "author": "Shawn Wilsher ", + "bug_id": 462050, + "desc": "Backed out changeset 84a9e53373c7\nBackout of bug 462050. We are going to try to reland this later to get reliable\nperformance numbers.", + "pushdate": "2008-11-01 00:43:02", + "backsout": [ + "84a9e53373c7" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 12905751.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/base/content/browser.js" + ], + "components": [ + "Firefox::General" + ], + "directories": [ + "browser/base", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "8b08744c500c3b7cb1929f2ab2a5b015f3b89eee", + "author": "Shawn Wilsher ", + "bug_id": 461422, + "desc": "Backed out changeset 157abfbcb96e (bug 461422) tree is closed", + "pushdate": "2008-11-03 22:30:47", + "backsout": [ + "157abfbcb96e" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 13157016.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/xul/templates/src/nsXULContentBuilder.cpp" + ], + "components": [], + "directories": [ + "content/xul", + "content" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "1830e12fe251edd7afb8671795bd127bebd70004", + "author": "Dave Townsend ", + "bug_id": 462986, + "desc": "Backed out changeset fbae114d6133 from bug 462986 due to test failures", + "pushdate": "2008-11-04 12:03:56", + "backsout": [ + "fbae114d6133" + ], + "backedoutby": "", + "author_email": "dtownsend@oxymoronical.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 13310394.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/components/sessionstore/test/browser/browser_248970_a.js" + ], + "components": [], + "directories": [ + "browser/components", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "0d823e9893ad2dc95c4e402b280c01804c543721", + "author": "Dave Townsend ", + "bug_id": 436304, + "desc": "Backed out changeset 9b96bcff860b from bug 436304 - Implement All Tabs panel\nwith previews and search.", + "pushdate": "2008-11-04 14:21:32", + "backsout": [ + "9b96bcff860b" + ], + "backedoutby": "", + "author_email": "dtownsend@oxymoronical.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 13318650.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/app/profile/firefox.js", + "browser/base/content/browser-tabPreviews.js", + "browser/base/content/browser-tabPreviews.xml", + "browser/base/content/browser.css", + "browser/base/content/browser.js", + "browser/base/content/browser.xul", + "browser/base/content/tabbrowser.css", + "browser/base/content/tabbrowser.xml", + "browser/base/content/test/browser_ctrlTab.js", + "browser/base/jar.mn", + "browser/locales/en-US/chrome/browser/browser.dtd", + "browser/themes/gnomestripe/browser/browser.css", + "browser/themes/gnomestripe/browser/jar.mn", + "browser/themes/gnomestripe/browser/tabbrowser/alltabs.png", + "browser/themes/pinstripe/browser/browser.css", + "browser/themes/winstripe/browser/browser-aero.css", + "browser/themes/winstripe/browser/browser.css", + "browser/themes/winstripe/browser/jar.mn", + "browser/themes/winstripe/browser/tabbrowser/alltabs-box-overflow-end-bkgnd-hover.png", + "browser/themes/winstripe/browser/tabbrowser/alltabs-box-overflow-end-bkgnd.png", + "browser/themes/winstripe/browser/tabbrowser/alltabs-box-overflow-start-bkgnd-hover.png", + "browser/themes/winstripe/browser/tabbrowser/alltabs-box-overflow-start-bkgnd.png", + "browser/themes/winstripe/browser/tabbrowser/alltabs.png" + ], + "components": [ + "Firefox::General", + "Firefox::Tabbed Browser" + ], + "directories": [ + "browser/base", + "browser/app", + "browser/themes", + "browser/locales", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "1a2fefd12905bbc6aae0b495c005959593b11fce", + "author": "Robert O'Callahan ", + "bug_id": 460811, + "desc": "Back out changeset b83d3c8ac166 (bug 460811) to try to fix bustage", + "pushdate": "2008-11-04 23:48:43", + "backsout": [ + "b83d3c8ac166" + ], + "backedoutby": "", + "author_email": "robert@ocallahan.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 12703332.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "dom/public/idl/base/nsIDOMNavigator.idl", + "dom/public/idl/threads/Makefile.in", + "dom/public/nsDOMClassInfoID.h", + "dom/src/base/nsDOMClassInfo.cpp", + "dom/src/base/nsDOMClassInfo.h", + "dom/src/base/nsDOMScriptObjectFactory.cpp", + "dom/src/base/nsGlobalWindow.cpp", + "dom/src/base/nsGlobalWindow.h", + "dom/src/base/nsJSEnvironment.cpp", + "dom/src/threads/Makefile.in", + "dom/src/threads/nsDOMThreadService.cpp", + "dom/src/threads/nsDOMThreadService.h", + "dom/src/threads/nsDOMWorkerPool.cpp", + "dom/src/threads/nsDOMWorkerPool.h", + "dom/src/threads/nsDOMWorkerScriptLoader.cpp", + "dom/src/threads/nsDOMWorkerScriptLoader.h", + "dom/src/threads/nsDOMWorkerTimeout.cpp", + "dom/src/threads/nsDOMWorkerTimeout.h", + "dom/src/threads/nsDOMWorkerXHR.cpp", + "dom/src/threads/nsDOMWorkerXHR.h", + "dom/src/threads/nsDOMWorkerXHRProxy.cpp", + "dom/src/threads/nsDOMWorkerXHRProxy.h", + "dom/src/threads/test/Makefile.in", + "dom/src/threads/test/importScripts_worker.js", + "dom/src/threads/test/test_importScripts.html", + "dom/src/threads/test/test_longThread.html", + "dom/src/threads/test/test_recursion.html", + "dom/src/threads/test/test_regExpStatics.html", + "dom/src/threads/test/test_simpleThread.html", + "dom/src/threads/test/test_threadErrors.html", + "dom/src/threads/test/test_threadTimeouts.html", + "dom/src/threads/test/test_xhr.html", + "js/src/xpconnect/src/xpcwrappednativescope.cpp" + ], + "components": [], + "directories": [ + "js/src", + "dom/public", + "dom/src", + "dom", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "b5cba763fe6da4cd635d05a00ac63a13e62a3371", + "author": "Robert O'Callahan ", + "bug_id": 460811, + "desc": "Back out changeset b83d3c8ac166 (bug 460811) to try to fix bustage ... re-adding removed files", + "pushdate": "2008-11-05 00:04:07", + "backsout": [ + "b83d3c8ac166" + ], + "backedoutby": "", + "author_email": "robert@ocallahan.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 12704256.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "dom/public/idl/threads/nsIDOMThreads.idl", + "dom/src/threads/nsDOMWorkerThread.cpp", + "dom/src/threads/nsDOMWorkerThread.h" + ], + "components": [], + "directories": [ + "dom", + "dom/public", + "dom/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "5b1425e110372a469590cb5e2eeb641b321f7bc0", + "author": "Dave Townsend ", + "bug_id": 407110, + "desc": "Backed out changeset 10c21d116e5d from bug 407110 to investigate Ts\nregression.", + "pushdate": "2008-11-07 10:15:13", + "backsout": [ + "10c21d116e5d" + ], + "backedoutby": "", + "author_email": "dtownsend@oxymoronical.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 13563071.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/components/sessionstore/src/nsSessionStore.js" + ], + "components": [], + "directories": [ + "browser/components", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "9a2cbd5d3984c5ac673cef6fcebe32b89c5ae5ef", + "author": "Dave Townsend ", + "bug_id": 462973, + "desc": "Backed out changeset 4df50933e7cb from bug 462973 to investigate Ts\nregression.", + "pushdate": "2008-11-07 10:55:58", + "backsout": [ + "4df50933e7cb" + ], + "backedoutby": "", + "author_email": "dtownsend@oxymoronical.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 13565516.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/components/sessionstore/src/nsSessionStore.js" + ], + "components": [], + "directories": [ + "browser/components", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "83c8769d5fd9358dad12acf73440372f4a0e9651", + "author": "Dave Townsend ", + "bug_id": 455057, + "desc": "Backed out changeset 673d1ba18849 from bug 455057 as the likely cause of the\nVista Ts regression", + "pushdate": "2008-11-07 15:21:44", + "backsout": [ + "673d1ba18849" + ], + "backedoutby": "", + "author_email": "dtownsend@oxymoronical.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 13581462.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/base/content/aboutRobots-icon-rtl.png", + "browser/themes/gnomestripe/browser/Search-glass-rtl.png", + "browser/themes/gnomestripe/browser/Toolbar-small.png", + "browser/themes/gnomestripe/browser/Toolbar.png", + "browser/themes/gnomestripe/browser/identity.png", + "browser/themes/gnomestripe/browser/pageInfo.png", + "browser/themes/gnomestripe/browser/preferences/Options.png", + "browser/themes/gnomestripe/browser/preview.png", + "browser/themes/gnomestripe/browser/tabbrowser/newtab.png", + "browser/themes/pinstripe/browser/tabbrowser/newtab.png", + "browser/themes/winstripe/browser/tabbrowser/newtab-aero.png", + "browser/themes/winstripe/browser/tabbrowser/newtab.png", + "layout/reftests/border-image/10x5multicolor.png", + "layout/reftests/border-image/3x3multicolor.png", + "layout/reftests/border-image/4x4multicolor.png", + "layout/reftests/box-properties/abspos-replaced-width-offset-margin-narrow.png", + "layout/reftests/box-properties/abspos-replaced-width-offset-margin-wide.png", + "layout/reftests/bugs/solidblue.png", + "layout/reftests/bugs/solidblue2.png", + "layout/reftests/bugs/square-outline-32x32.png", + "layout/reftests/generated-content/square-outline-32x32.png", + "layout/reftests/pixel-rounding/corner-bl.png", + "layout/reftests/pixel-rounding/corner-tr.png", + "layout/reftests/pixel-rounding/random-10x10.png", + "layout/reftests/table-background/repeatable-diagonal-gradient-with-ticks.png", + "modules/libpr0n/test/reftest/generic/green.png", + "testing/performance/talos/page_load_test/gfx/images/png-2x2.png", + "toolkit/themes/gnomestripe/global/console/console-toolbar.png", + "toolkit/themes/gnomestripe/global/icons/Search-glass-rtl.png", + "toolkit/themes/gnomestripe/global/icons/blacklist_large.png", + "toolkit/themes/gnomestripe/global/icons/find.png", + "toolkit/themes/gnomestripe/global/icons/folder-item.png", + "toolkit/themes/gnomestripe/mozapps/extensions/extensionIcons.png", + "toolkit/themes/gnomestripe/mozapps/extensions/themeGeneric.png", + "toolkit/themes/gnomestripe/mozapps/extensions/viewButtons.png", + "toolkit/themes/gnomestripe/mozapps/update/update.png", + "toolkit/themes/gnomestripe/mozapps/xpinstall/xpinstallItemGeneric.png", + "toolkit/themes/pinstripe/global/icons/Search-close.png", + "toolkit/themes/pinstripe/global/icons/Search-glass.png" + ], + "components": [ + "Core::Layout", + "Core::Layout: Tables" + ], + "directories": [ + "browser/base", + "toolkit", + "modules/libpr0n", + "testing/performance", + "browser/themes", + "browser", + "layout/reftests", + "toolkit/themes", + "testing", + "layout", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "05c20a65b1df77e59275266e9a70cf3109344b45", + "author": "Jason Orendorff ", + "bug_id": 458851, + "desc": "Backed out changeset d4fe79372140 (bug 458851) due to persistent orange on TraceMonkey tinderboxes.", + "pushdate": "2008-11-08 09:06:43", + "backsout": [ + "d4fe79372140" + ], + "backedoutby": "", + "author_email": "jorendorff@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 14039732.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsemit.cpp", + "js/src/jsinterp.cpp", + "js/src/jsobj.cpp", + "js/src/jsopcode.cpp", + "js/src/jsopcode.h", + "js/src/jsopcode.tbl", + "js/src/jstracer.cpp", + "js/src/jstracer.h", + "js/src/jsxdrapi.h" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "0a765c5ce37d5a6e9f6a9518e3b5df6d1d187530", + "author": "timeless@mozdev.org", + "bug_id": 454561, + "desc": "Backed out changeset b0d41235146a\nBug 454561 disable tracing when JavaScript-Debugger is enabled [ @ jsd_lock ]\nthis isn't the correct fix\nr=graydon", + "pushdate": "2008-11-08 09:06:43", + "backsout": [ + "b0d41235146a" + ], + "backedoutby": "", + "author_email": "timeless@mozdev.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 20103439.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "dom/src/base/nsJSEnvironment.cpp" + ], + "components": [], + "directories": [ + "dom", + "dom/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "827edbbc90885ef4742de54252ced8ffbe0b82aa", + "author": "Dave Townsend ", + "bug_id": 462774, + "desc": "Backed out changeset ec9a1864d1fb from bug 462774, drop JSON.jsm due to OSX\nburning", + "pushdate": "2008-11-14 12:36:21", + "backsout": [ + "ec9a1864d1fb" + ], + "backedoutby": "", + "author_email": "dtownsend@oxymoronical.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 14176339.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/xpconnect/loader/JSON.jsm", + "js/src/xpconnect/loader/Makefile.in", + "js/src/xpconnect/tests/unit/test_json.js" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "e10a0f54b14ea85629a77bf6ec0cb7f0e671efbf", + "author": "Dave Townsend ", + "bug_id": 462878, + "desc": "Backed out changeset 72088d2498c3 from bug 462878 as it was causing\nmochitests to crash", + "pushdate": "2008-11-14 14:51:28", + "backsout": [ + "72088d2498c3" + ], + "backedoutby": "", + "author_email": "dtownsend@oxymoronical.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 14184446.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/media/video/public/nsOggDecoder.h", + "content/media/video/src/nsChannelReader.cpp", + "content/media/video/src/nsOggDecoder.cpp" + ], + "components": [], + "directories": [ + "content", + "content/media" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "d0c342436fa89f4d72c4ff14e98115a640f52b4e", + "author": "Daniel Holbert ", + "bug_id": 421885, + "desc": "Backed out changeset e4690fcf6f7c, due to reftest failures on linux (421885-1.xml and 403181-1.xml)", + "pushdate": "2008-11-14 21:17:30", + "backsout": [ + "e4690fcf6f7c" + ], + "backedoutby": "", + "author_email": "dholbert@cs.stanford.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 15866377.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "gfx/src/thebes/nsThebesImage.cpp" + ], + "components": [], + "directories": [ + "gfx/src", + "gfx" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "75a38b047225e75426cc7ed74b1ab2e45e5ad513", + "author": "Igor Bukanov ", + "bug_id": 453157, + "desc": "Backed out changeset 8329a91db67d - bug 453157, CLOSED TREE", + "pushdate": "2008-11-20 23:18:55", + "backsout": [ + "8329a91db67d" + ], + "backedoutby": "", + "author_email": "igor@mir2.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 13398236.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "dom/src/base/nsJSEnvironment.cpp", + "dom/src/threads/nsDOMThreadService.cpp", + "js/src/js.cpp", + "js/src/jsapi.cpp", + "js/src/jsapi.h", + "js/src/jscntxt.cpp", + "js/src/jscntxt.h", + "js/src/jsinterp.cpp", + "js/src/jspubtd.h", + "js/src/jsversion.h", + "js/src/xpconnect/idl/nsIXPConnect.idl", + "js/src/xpconnect/src/nsXPConnect.cpp", + "js/src/xpconnect/src/xpccomponents.cpp", + "js/src/xpconnect/src/xpccontext.cpp", + "js/src/xpconnect/src/xpcjsruntime.cpp", + "js/src/xpconnect/src/xpcprivate.h" + ], + "components": [ + "Core::JavaScript Engine" + ], + "directories": [ + "dom", + "js", + "dom/src", + "js/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "1f6bac1d9ed0bef5a0c9af637b63c5a905004de3", + "author": "Dave Townsend ", + "bug_id": 463384, + "desc": "Backed out changeset 4b5e00c182be from bug 463384 due to it causing bug 465883", + "pushdate": "2008-11-20 23:59:44", + "backsout": [ + "4b5e00c182be" + ], + "backedoutby": "", + "author_email": "dtownsend@oxymoronical.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 14735742.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/base/content/browser.js", + "browser/base/content/tabbrowser.xml" + ], + "components": [ + "Firefox::General" + ], + "directories": [ + "browser/base", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "25a79f857a12b49dc3cf819331cb0457fdafa8db", + "author": "Igor Bukanov ", + "bug_id": 453157, + "desc": "Backed out changeset c54f1957d564 - bug 453157 - build system changes caused mouchi test failures. CLOSED TREE", + "pushdate": "2008-11-21 23:13:52", + "backsout": [ + "c54f1957d564" + ], + "backedoutby": "", + "author_email": "igor@mir2.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 13484333.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "build/Makefile.in", + "build/pgo/Makefile.in", + "build/pgo/automation.py.in", + "dom/src/base/nsJSEnvironment.cpp", + "dom/src/threads/nsDOMThreadService.cpp", + "js/src/js.cpp", + "js/src/jsapi.cpp", + "js/src/jsapi.h", + "js/src/jscntxt.cpp", + "js/src/jscntxt.h", + "js/src/jsinterp.cpp", + "js/src/jspubtd.h", + "js/src/jsversion.h", + "js/src/xpconnect/idl/nsIXPConnect.idl", + "js/src/xpconnect/src/nsXPConnect.cpp", + "js/src/xpconnect/src/xpccomponents.cpp", + "js/src/xpconnect/src/xpccontext.cpp", + "js/src/xpconnect/src/xpcjsruntime.cpp", + "js/src/xpconnect/src/xpcprivate.h" + ], + "components": [ + "Core::JavaScript Engine" + ], + "directories": [ + "js/src", + "dom/src", + "build", + "dom", + "js", + "build/pgo" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "51249e968f249def386436609c6f2950197e2061", + "author": "Igor Bukanov ", + "bug_id": 453157, + "desc": "Backed out changeset 700ae4e59496 - bug 453157 caused talos oranges. CLOSED TREE", + "pushdate": "2008-11-24 10:37:44", + "backsout": [ + "700ae4e59496" + ], + "backedoutby": "", + "author_email": "igor@mir2.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 13698165.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "build/Makefile.in", + "build/pgo/Makefile.in", + "build/pgo/automation.py.in", + "dom/src/base/nsJSEnvironment.cpp", + "dom/src/threads/nsDOMThreadService.cpp", + "js/src/js.cpp", + "js/src/jsapi.cpp", + "js/src/jsapi.h", + "js/src/jscntxt.cpp", + "js/src/jscntxt.h", + "js/src/jsinterp.cpp", + "js/src/jspubtd.h", + "js/src/jsversion.h", + "js/src/xpconnect/idl/nsIXPConnect.idl", + "js/src/xpconnect/src/nsXPConnect.cpp", + "js/src/xpconnect/src/xpccomponents.cpp", + "js/src/xpconnect/src/xpccontext.cpp", + "js/src/xpconnect/src/xpcjsruntime.cpp", + "js/src/xpconnect/src/xpcprivate.h", + "testing/mochitest/Makefile.in" + ], + "components": [ + "Core::JavaScript Engine" + ], + "directories": [ + "js/src", + "dom/src", + "build", + "testing/mochitest", + "dom", + "js", + "testing", + "build/pgo" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "21d4cb73f6fe401968c9f1f10da7ed1cb72e40db", + "author": "Shawn Wilsher ", + "bug_id": 435474, + "desc": "Backed out changeset 87f6ae0c4324 (bug 435474) for orange.", + "pushdate": "2008-11-27 21:18:19", + "backsout": [ + "87f6ae0c4324" + ], + "backedoutby": "", + "author_email": "me@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/app/Makefile.in", + "config/Makefile.in", + "config/rules.mk", + "config/static-rules.mk", + "embedding/browser/photon/src/Makefile.in", + "embedding/componentlib/Makefile.in", + "extensions/java/xpcom/interfaces/Makefile.in", + "modules/staticmod/Makefile.in", + "toolkit/mozapps/installer/packager.mk", + "xpcom/tests/static-checker/Makefile.in", + "xulrunner/app/Makefile.in", + "xulrunner/installer/Makefile.in" + ], + "components": [ + "Firefox Build System::General", + "Firefox::Installer" + ], + "directories": [ + "embedding/browser", + "embedding", + "toolkit", + "browser/app", + "xpcom/tests", + "config", + "extensions/java", + "xulrunner/installer", + "embedding/componentlib", + "toolkit/mozapps", + "extensions", + "browser", + "xpcom", + "xulrunner/app", + "xulrunner", + "modules/staticmod", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "ec6ae3ecb8815f3e272e5acf74321173a53ee171", + "author": "Shawn Wilsher ", + "bug_id": 453865, + "desc": "Backed out changeset 17842a2d0c7f (bug 453865) due to test failures", + "pushdate": "2008-11-27 22:23:09", + "backsout": [ + "17842a2d0c7f" + ], + "backedoutby": "", + "author_email": "me@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 3890.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "dom/public/idl/threads/nsIDOMWorkers.idl", + "dom/src/threads/Makefile.in", + "dom/src/threads/nsDOMWorker.cpp", + "dom/src/threads/nsDOMWorker.h", + "dom/src/threads/nsDOMWorkerEvents.cpp", + "dom/src/threads/nsDOMWorkerEvents.h", + "dom/src/threads/nsDOMWorkerMacros.h", + "dom/src/threads/test/Makefile.in", + "dom/src/threads/test/json_worker.js", + "dom/src/threads/test/test_json.html", + "dom/src/threads/test/test_xhrAbort.html", + "js/src/json.cpp", + "js/src/xpconnect/public/nsAutoJSValHolder.h" + ], + "components": [], + "directories": [ + "js/src", + "dom/public", + "dom/src", + "dom", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "1b45760df6eefe25863b23b93cafc5bc73b6a559", + "author": "Shawn Wilsher ", + "bug_id": 561566, + "desc": "Backed out changeset 037f635ced9f (bug 561566)", + "pushdate": "2008-11-28 04:35:30", + "backsout": [ + "037f635ced9f" + ], + "backedoutby": "", + "author_email": "me@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 26231.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "dom/src/base/nsDOMClassInfo.cpp", + "dom/src/base/nsDOMClassInfo.h", + "js/src/xpconnect/idl/nsIXPConnect.idl", + "js/src/xpconnect/src/nsXPConnect.cpp", + "js/src/xpconnect/src/qsgen.py", + "js/src/xpconnect/src/xpcconvert.cpp", + "js/src/xpconnect/src/xpcjsruntime.cpp", + "js/src/xpconnect/src/xpcprivate.h", + "js/src/xpconnect/src/xpcquickstubs.cpp", + "js/src/xpconnect/src/xpcquickstubs.h", + "js/src/xpconnect/src/xpcwrappednative.cpp" + ], + "components": [], + "directories": [ + "dom", + "js", + "dom/src", + "js/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "3957258880e7d6f4a8a3c7b4aff5475666cbd3b1", + "author": "Shawn Wilsher ", + "bug_id": 457215, + "desc": "Backed out changeset 527249758771 (bug 457215) to investigate a performance regression (bug 467102)", + "pushdate": "2008-11-28 19:08:08", + "backsout": [ + "527249758771" + ], + "backedoutby": "", + "author_email": "me@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 78589.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "modules/lcms/src/cmsprecache.c" + ], + "components": [], + "directories": [ + "modules/lcms", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "a6d8a0bcac507df8008225e2683664f29145f395", + "author": "Shawn Wilsher ", + "bug_id": 460629, + "desc": "Backed out changeset 0586ee185c87 (bug 460629) to investigate possible performance regression (bug 467102)", + "pushdate": "2008-11-28 19:08:08", + "backsout": [ + "0586ee185c87" + ], + "backedoutby": "", + "author_email": "me@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 78589.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "gfx/thebes/src/gfxPlatform.cpp", + "modules/lcms/include/lcms.h", + "modules/lcms/src/cmsio1.c", + "modules/lcms/src/lcms.def" + ], + "components": [], + "directories": [ + "modules/lcms", + "gfx/thebes", + "gfx", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "a3f9376ede1ea7fd6c56c4cb4e6f192267a97683", + "author": "Shawn Wilsher ", + "bug_id": 460520, + "desc": "Backed out changeset 6d9d920759cb (bug 460520) to investigate a performance regression (bug 467102)", + "pushdate": "2008-11-28 19:08:08", + "backsout": [ + "6d9d920759cb" + ], + "backedoutby": "", + "author_email": "me@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 78589.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "modules/lcms/src/cmsmtrx.c", + "modules/lcms/src/cmswtpnt.c" + ], + "components": [], + "directories": [ + "modules/lcms", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "de15a638ac3c89a392ecd313c3562e275e4f3f31", + "author": "Shawn Wilsher ", + "bug_id": 407725, + "desc": "Backed out changeset fdd5e4e34241 (bug 407725) to possibly fix random failures of browser/base/content/test/browser_customize.js", + "pushdate": "2008-11-28 23:22:07", + "backsout": [ + "fdd5e4e34241" + ], + "backedoutby": "", + "author_email": "me@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 93828.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/content/customizeToolbar.js", + "toolkit/content/widgets/toolbar.xml" + ], + "components": [], + "directories": [ + "toolkit/content", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "5d192e3eee829d162556c9ba7391222c32967154", + "author": "Shawn Wilsher ", + "bug_id": 464362, + "desc": "Backed out changeset 30adfe786ffa (bug 464362) in an attempt to fix red on tinderbox.", + "pushdate": "2008-11-29 00:15:56", + "backsout": [ + "30adfe786ffa" + ], + "backedoutby": "", + "author_email": "me@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 97057.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "modules/libreg/src/Makefile.in", + "modules/libreg/src/reg.c", + "modules/libreg/standalone/Makefile.in" + ], + "components": [], + "directories": [ + "modules/libreg", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "6dc4b85cd8a70d847b884dd841cccbbea3a25277", + "author": "Shawn Wilsher ", + "bug_id": 458397, + "desc": "Backed out changeset a4495a0cf2ff (bug 458397) to investigate Txul regression (bug 467102)", + "pushdate": "2008-11-29 01:07:07", + "backsout": [ + "a4495a0cf2ff" + ], + "backedoutby": "", + "author_email": "me@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 100128.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "dom/src/base/nsDOMClassInfo.cpp", + "dom/src/base/nsDOMClassInfo.h", + "js/src/xpconnect/idl/nsIXPConnect.idl", + "js/src/xpconnect/src/nsXPConnect.cpp", + "js/src/xpconnect/src/xpcconvert.cpp", + "js/src/xpconnect/src/xpcprivate.h", + "js/src/xpconnect/src/xpcquickstubs.cpp", + "js/src/xpconnect/src/xpcwrappedjsclass.cpp" + ], + "components": [], + "directories": [ + "dom", + "js", + "dom/src", + "js/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "09ec08895dea4dfdd86671846bacc89efd1c1114", + "author": "Ted Mielczarek ", + "bug_id": 427750, + "desc": "Backed out changeset 96956634349c, bug 427750 - Require python >= 2.4 to build Mozilla (and >=2.5 on Windows). Apparently scratchbox only ships with 2.3 by default.", + "pushdate": "2008-12-02 19:17:03", + "backsout": [ + "96956634349c" + ], + "backedoutby": "", + "author_email": "ted.mielczarek@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 22213659.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "configure.in" + ], + "components": [], + "directories": [], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "b4b8f7a7212b6cf9a1cb5d84cc5f656d7be4970b", + "author": "Benjamin Smedberg ", + "bug_id": 466486, + "desc": "Backed out changeset f71446b6fc7e: bug 466486- directories are getting skipped, causing things like xpcshell not to be built", + "pushdate": "2008-12-02 22:18:45", + "backsout": [ + "f71446b6fc7e" + ], + "backedoutby": "", + "author_email": "benjamin@smedbergs.us", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 22224561.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "config/rules.mk", + "js/src/config/rules.mk" + ], + "components": [ + "Firefox Build System::General" + ], + "directories": [ + "js/src", + "config", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "c0e30a87ce6381e10e3948f0877bd07f180e5caf", + "author": "Gavin Sharp ", + "bug_id": 455381, + "desc": "backout changeset ce8fbd7d222e from bug 455381 to fix windows unit test bustage", + "pushdate": "2008-12-03 23:51:55", + "backsout": [ + "ce8fbd7d222e" + ], + "backedoutby": "", + "author_email": "gavin@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 14769262.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "xpcom/threads/nsProcessCommon.cpp" + ], + "components": [ + "Core::XPCOM" + ], + "directories": [ + "xpcom/threads", + "xpcom" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "212de1e1a1048edc5d3976b83694d0533a6c9b87", + "author": "L. David Baron ", + "bug_id": 302561, + "desc": "Backed out changeset 7b553bbed53d (bug 302561) due to chrome test crash.", + "pushdate": "2008-12-04 17:57:59", + "backsout": [ + "7b553bbed53d" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 17622000.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/base/nsCSSFrameConstructor.cpp", + "layout/base/nsCSSFrameConstructor.h", + "layout/base/nsPresShell.cpp", + "layout/style/test/Makefile.in", + "layout/style/test/test_hover.html", + "view/public/nsIViewObserver.h", + "view/src/nsViewManager.cpp" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "view", + "view/src", + "view/public", + "layout/style", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "024fa1c26e347b5281a1cb57854f6eff6687dc90", + "author": "Daniel Holbert ", + "bug_id": 335531, + "desc": "Backed out changeset 78d662c2c878 (Bug 335531) on suspicion of causing mochitest failures in test_bug399284.html on linux & windows unittest boxes.", + "pushdate": "2008-12-05 19:53:14", + "backsout": [ + "78d662c2c878" + ], + "backedoutby": "", + "author_email": "dholbert@cs.stanford.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 17675721.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/base/public/nsContentUtils.h", + "content/base/src/nsContentUtils.cpp", + "content/base/src/nsScriptLoader.cpp", + "dom/locales/en-US/chrome/charsetTitles.properties", + "extensions/universalchardet/src/base/nsUniversalDetector.cpp", + "intl/chardet/src/nsMetaCharsetObserver.cpp", + "intl/uconv/src/charsetalias.properties", + "intl/uconv/src/nsUConvModule.cpp", + "intl/uconv/tests/unit/test_bug335531.js", + "intl/uconv/ucvlatin/nsUCvLatinCID.h", + "intl/uconv/ucvlatin/nsUTF32ToUnicode.cpp", + "intl/uconv/ucvlatin/nsUTF32ToUnicode.h", + "intl/uconv/ucvlatin/nsUnicodeToUTF32.cpp", + "intl/uconv/ucvlatin/nsUnicodeToUTF32.h", + "layout/style/nsCSSLoader.cpp", + "netwerk/streamconv/converters/nsUnknownDecoder.cpp", + "parser/htmlparser/src/nsParser.cpp", + "toolkit/locales/en-US/chrome/global/intl.properties" + ], + "components": [ + "Core::Networking", + "Firefox Build System::General" + ], + "directories": [ + "toolkit", + "netwerk", + "toolkit/locales", + "dom/locales", + "extensions/universalchardet", + "netwerk/streamconv", + "dom", + "content/base", + "content", + "extensions", + "intl", + "intl/chardet", + "parser", + "parser/htmlparser", + "layout/style", + "layout", + "intl/uconv" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "6c07d6a8cd3344d35263acd501806ce01c661c2f", + "author": "Shawn Wilsher ", + "bug_id": 466582, + "desc": "Backed out changeset b6f762fde736 (bug 466582) for unit test orange.", + "pushdate": "2008-12-08 23:53:23", + "backsout": [ + "b6f762fde736" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 16185972.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "chrome/src/nsChromeProtocolHandler.cpp", + "chrome/src/nsChromeRegistry.cpp", + "chrome/test/unit/data/test_bug401153.manifest", + "chrome/test/unit/data/test_data_protocol_registration.manifest", + "chrome/test/unit/data/test_no_remote_registration.manifest", + "chrome/test/unit/test_bug401153.js", + "chrome/test/unit/test_data_protocol_registration.js", + "chrome/test/unit/test_no_remote_registration.js", + "docshell/base/nsDocShell.cpp", + "modules/libpr0n/decoders/icon/nsIconProtocolHandler.cpp", + "netwerk/base/public/nsIProtocolHandler.idl", + "netwerk/protocol/data/src/nsDataHandler.cpp", + "netwerk/protocol/file/src/nsFileProtocolHandler.cpp", + "netwerk/protocol/res/src/nsResProtocolHandler.cpp", + "toolkit/components/places/src/nsAnnoProtocolHandler.cpp" + ], + "components": [ + "Core::DOM: Navigation", + "Toolkit::Startup and Profile System" + ], + "directories": [ + "modules", + "netwerk/base", + "netwerk/protocol", + "toolkit", + "modules/libpr0n", + "netwerk", + "toolkit/components", + "docshell/base", + "docshell", + "chrome/src", + "chrome/test", + "chrome" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "5af0a48a20d48baf754d6b71831334134effc6aa", + "author": "Shawn Wilsher ", + "bug_id": 432938, + "desc": "Backed out changeset 3744204c1576 (bug 432938) due to orange", + "pushdate": "2008-12-08 23:53:23", + "backsout": [ + "3744204c1576" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 16185972.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/themes/gnomestripe/browser/jar.mn" + ], + "components": [], + "directories": [ + "browser/themes", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "3ce0936aef4054e10469b2af018aa2779f25de57", + "author": "L. David Baron ", + "bug_id": 466104, + "desc": "Backed out changeset 957a4fed14af (bug 466104) due to leaks", + "pushdate": "2008-12-09 07:13:47", + "backsout": [ + "957a4fed14af" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 18015348.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "testing/mochitest/tests/SimpleTest/SimpleTest.js", + "testing/mochitest/tests/SimpleTest/TestRunner.js" + ], + "components": [ + "Testing::Mochitest" + ], + "directories": [ + "testing/mochitest", + "testing" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "57c92d052aca6c275b7a08ed52cf7a084d664526", + "author": "Shawn Wilsher ", + "bug_id": 463887, + "desc": "Backed out changeset 00563815af18 (bug 463887) because it caused orange.", + "pushdate": "2008-12-12 01:27:07", + "backsout": [ + "00563815af18" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 16450796.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "configure.in" + ], + "components": [], + "directories": [], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "c39b5108ca5184cafb529908608991022e2c63ae", + "author": "L. David Baron ", + "bug_id": 468824, + "desc": "Backed out changeset 12f97a5bc3b6 (bug 468824) for causing failed unit test because of differences between config/system-headers and js/src/config/system-headers", + "pushdate": "2008-12-12 02:21:01", + "backsout": [ + "12f97a5bc3b6" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 18256982.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "config/system-headers" + ], + "components": [], + "directories": [ + "config" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "3cbb1961f1f7047554228cbae0629112ffeaf5f5", + "author": "Benjamin Smedberg ", + "bug_id": 460926, + "desc": "Backed out changeset 71c3a9d14712 - Bug 460926 - due to crash regression, bug 468845", + "pushdate": "2008-12-15 14:21:49", + "backsout": [ + "71c3a9d14712" + ], + "backedoutby": "", + "author_email": "benjamin@smedbergs.us", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 23319145.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/xre/nsAppRunner.cpp" + ], + "components": [ + "Toolkit::Startup and Profile System" + ], + "directories": [ + "toolkit", + "toolkit/xre" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "44ef5053568e07019c19149684eae85c1b8a64e4", + "author": "Joe Drew ", + "bug_id": 469809, + "desc": "Backed out changeset 0c0bf7bd8e7b for bug 469809", + "pushdate": "2008-12-16 19:54:02", + "backsout": [ + "0c0bf7bd8e7b" + ], + "backedoutby": "", + "author_email": "joe@drew.ca", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 10323370.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "widget/src/gtk2/nsWindow.cpp" + ], + "components": [], + "directories": [ + "widget", + "widget/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "eceb4663cfd926c4541e094756c1c0bc29500401", + "author": "Justin Dolske ", + "bug_id": 463806, + "desc": "Backed out changeset 98ea743c9156 (Bug 463806) due to crashes on OS X 10.4 talos boxes.", + "pushdate": "2008-12-17 21:03:07", + "backsout": [ + "98ea743c9156" + ], + "backedoutby": "", + "author_email": "dolske@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 15903431.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "gfx/thebes/src/gfxQuartzFontCache.h", + "gfx/thebes/src/gfxQuartzFontCache.mm" + ], + "components": [], + "directories": [ + "gfx/thebes", + "gfx" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "e0740bbd7f753add0a5973e031f7388c2c87a2a1", + "author": "L. David Baron ", + "bug_id": 470769, + "desc": "Backed out changeset 441f119f1a0c (Bug 470769) due to failures in layout/style/test/test_bug365932.html", + "pushdate": "2008-12-23 16:12:28", + "backsout": [ + "441f119f1a0c" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 19257269.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/style/nsComputedDOMStyle.cpp", + "layout/style/nsROCSSPrimitiveValue.cpp", + "layout/style/nsROCSSPrimitiveValue.h", + "layout/style/test/Makefile.in", + "layout/style/test/test_bug373875.html" + ], + "components": [ + "Core::DOM: CSS Object Model" + ], + "directories": [ + "layout/style", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "f506b00d99f4bfcd16df58ff86c0e435ae3bbcc0", + "author": "Igor Bukanov ", + "bug_id": 453157, + "desc": "Backed out changeset 7184e014cd05 - the patch for bug 453157 bursted tgfx test on Windows.", + "pushdate": "2008-12-26 01:26:36", + "backsout": [ + "7184e014cd05" + ], + "backedoutby": "", + "author_email": "igor@mir2.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 16429897.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "build/Makefile.in", + "build/pgo/Makefile.in", + "build/pgo/automation.py.in", + "dom/src/base/nsJSEnvironment.cpp", + "dom/src/threads/nsDOMThreadService.cpp", + "js/src/js.cpp", + "js/src/jsapi.cpp", + "js/src/jsapi.h", + "js/src/jscntxt.cpp", + "js/src/jscntxt.h", + "js/src/jsinterp.cpp", + "js/src/jspubtd.h", + "js/src/jsversion.h", + "js/src/xpconnect/idl/nsIXPConnect.idl", + "js/src/xpconnect/src/nsXPConnect.cpp", + "js/src/xpconnect/src/xpccomponents.cpp", + "js/src/xpconnect/src/xpccontext.cpp", + "js/src/xpconnect/src/xpcjsruntime.cpp", + "js/src/xpconnect/src/xpcprivate.h", + "testing/mochitest/Makefile.in" + ], + "components": [ + "Core::JavaScript Engine" + ], + "directories": [ + "js/src", + "dom/src", + "build", + "testing/mochitest", + "dom", + "js", + "testing", + "build/pgo" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "0928c4fc27901f10216e5ac2509530bea0c62c3b", + "author": "Phil Ringnalda ", + "bug_id": 467862, + "desc": "Backed out changeset 73be1c836d7f (bug 467862) to see if that fixes Windows bustage (bug 471097)", + "pushdate": "2008-12-26 03:30:08", + "backsout": [ + "73be1c836d7f" + ], + "backedoutby": "", + "author_email": "philringnalda@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 16769818.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "config/config.mk", + "config/rules.mk", + "js/src/config/config.mk", + "js/src/config/rules.mk" + ], + "components": [ + "Firefox Build System::General" + ], + "directories": [ + "js/src", + "config", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "bac73f9f2d2b28630201fe2a2511b3a5bce0f68e", + "author": "Phil Ringnalda ", + "bug_id": 462004, + "desc": "Backed out changeset 55e23c647137 (bug 462004) so the backout for bug 467862 to solve bug 471097 can actually build", + "pushdate": "2008-12-26 03:52:55", + "backsout": [ + "55e23c647137" + ], + "backedoutby": "", + "author_email": "philringnalda@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 16771185.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "config/autoconf.mk.in", + "configure.in", + "js/src/Makefile.in", + "js/src/config/autoconf.mk.in", + "js/src/configure.in", + "js/src/editline/Makefile.in", + "js/src/js.cpp", + "js/src/shell/Makefile.in", + "js/src/shell/js.cpp" + ], + "components": [ + "Firefox Build System::General", + "Core::JavaScript Engine" + ], + "directories": [ + "js/src", + "config", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "de8572d5add0ea788427cc233df093a3e893d76d", + "author": "Phil Ringnalda ", + "bug_id": 466224, + "desc": "Backed out changeset e0cce6a738c9 (Bug 466224 - Make quickstubs call nsINode/nsINodeList methods) for failing mochitest", + "pushdate": "2009-01-01 02:43:25", + "backsout": [ + "e0cce6a738c9" + ], + "backedoutby": "", + "author_email": "philringnalda@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 17285415.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/base/public/nsIDocument.h", + "content/base/public/nsINode.h", + "content/base/public/nsINodeList.h", + "content/base/src/nsDOMAttribute.cpp", + "content/base/src/nsDocument.cpp", + "content/base/src/nsGenericDOMDataNode.cpp", + "content/base/src/nsGenericDOMDataNode.h", + "content/base/src/nsGenericElement.cpp", + "content/base/src/nsGenericElement.h", + "js/src/xpconnect/src/Makefile.in", + "js/src/xpconnect/src/dom_quickstubs.qsconf", + "js/src/xpconnect/src/nsXPConnect.cpp", + "js/src/xpconnect/src/qsgen.py", + "js/src/xpconnect/src/xpcconvert.cpp", + "js/src/xpconnect/src/xpcprivate.h", + "js/src/xpconnect/src/xpcquickstubs.cpp", + "js/src/xpconnect/src/xpcquickstubs.h", + "js/src/xpconnect/src/xpcwrappedjsclass.cpp" + ], + "components": [], + "directories": [ + "js", + "content/base", + "content", + "js/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "4a377a57eb8ef906c2381bc07212154f5323a402", + "author": "Dave Camp ", + "bug_id": 441359, + "desc": "Backed out changeset e31d0d3c28fd (bug 441359)", + "pushdate": "2009-01-05 09:29:44", + "backsout": [ + "e31d0d3c28fd" + ], + "backedoutby": "", + "author_email": "dcamp@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 16700722.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "build/pgo/server-locations.txt", + "content/base/src/nsObjectLoadingContent.cpp", + "content/base/src/nsScriptLoader.cpp", + "docshell/base/nsDocShell.cpp", + "docshell/base/nsDocShell.h", + "docshell/base/nsIChannelClassifier.idl", + "layout/style/nsCSSLoader.cpp", + "toolkit/components/url-classifier/tests/Makefile.in", + "toolkit/components/url-classifier/tests/mochitest/Makefile.in", + "toolkit/components/url-classifier/tests/mochitest/classifierFrame.html", + "toolkit/components/url-classifier/tests/mochitest/evil.css", + "toolkit/components/url-classifier/tests/mochitest/evil.js", + "toolkit/components/url-classifier/tests/mochitest/import.css", + "toolkit/components/url-classifier/tests/mochitest/test_classifier.html" + ], + "components": [ + "Toolkit::Safe Browsing", + "Firefox Build System::General", + "Core::DOM: Navigation" + ], + "directories": [ + "toolkit", + "toolkit/components", + "docshell/base", + "docshell", + "build", + "content/base", + "content", + "layout/style", + "build/pgo", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "e3bab6e6bfc24812be67c4952811ffcd341f37a1", + "author": "Boris Zbarsky ", + "bug_id": 437366, + "desc": "Backed out changeset f87b46d44d22 (bug 437366)", + "pushdate": "2009-01-05 22:05:44", + "backsout": [ + "f87b46d44d22" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 15638452.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/style/nsCSSDataBlock.cpp" + ], + "components": [], + "directories": [ + "layout/style", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "0f85bea9dea38a4923d328f57b6ab00d5d751669", + "author": "Andreas Gal ", + "bug_id": 453157, + "desc": "Backed out changeset adbe8e4b21dc due to tinderbox failures/timeouts (453157).", + "pushdate": "2009-01-08 04:49:11", + "backsout": [ + "adbe8e4b21dc" + ], + "backedoutby": "", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 16390673.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "build/Makefile.in", + "build/pgo/Makefile.in", + "build/pgo/automation.py.in", + "dom/src/base/nsJSEnvironment.cpp", + "dom/src/threads/nsDOMThreadService.cpp", + "js/src/js.cpp", + "js/src/jsapi.cpp", + "js/src/jsapi.h", + "js/src/jscntxt.cpp", + "js/src/jscntxt.h", + "js/src/jsinterp.cpp", + "js/src/jspubtd.h", + "js/src/jsversion.h", + "js/src/xpconnect/idl/nsIXPConnect.idl", + "js/src/xpconnect/src/nsXPConnect.cpp", + "js/src/xpconnect/src/xpccomponents.cpp", + "js/src/xpconnect/src/xpccontext.cpp", + "js/src/xpconnect/src/xpcjsruntime.cpp", + "js/src/xpconnect/src/xpcprivate.h", + "testing/mochitest/Makefile.in" + ], + "components": [ + "Core::JavaScript Engine" + ], + "directories": [ + "js/src", + "dom/src", + "build", + "testing/mochitest", + "dom", + "js", + "testing", + "build/pgo" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "d77eef73aeb6917ae4edb654a15fbdf8c9321bc8", + "author": "Boris Zbarsky ", + "bug_id": 464838, + "desc": "Backed out changeset b73e063a3f99 (bug 464838)", + "pushdate": "2009-01-08 19:59:07", + "backsout": [ + "b73e063a3f99" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 15890055.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/html/content/src/nsHTMLAnchorElement.cpp", + "content/html/content/src/nsHTMLDNSPrefetch.cpp", + "content/html/content/src/nsHTMLDNSPrefetch.h" + ], + "components": [], + "directories": [ + "content/html", + "content" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "48b1dea326bb61ab862b363b4223404e242b2e88", + "author": "Dave Townsend ", + "bug_id": 469613, + "desc": "Backed out changeset fe759e3fd895 from bug 469613 due to mochitest failures", + "pushdate": "2009-01-09 13:47:34", + "backsout": [ + "fe759e3fd895" + ], + "backedoutby": "", + "author_email": "dtownsend@oxymoronical.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 19019012.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/generic/test/Makefile.in", + "layout/generic/test/test_bug469613.xul", + "view/src/nsScrollPortView.cpp" + ], + "components": [], + "directories": [ + "view", + "layout/generic", + "view/src", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "864061941ee1bd4ae34deec261b8440e4a3a720d", + "author": "Benjamin Smedberg ", + "bug_id": 396185, + "desc": "Backed out changeset 4c4df6ed1b41 - Bug 396185 - Make nsIFrame not inherit from nsISupports due to mochitest failures... these appear to be crashes in nsGenericHTMLElement::GetEditorInternal.", + "pushdate": "2009-01-09 16:36:02", + "backsout": [ + "4c4df6ed1b41" + ], + "backedoutby": "", + "author_email": "benjamin@smedbergs.us", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 25487198.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "accessible/public/nsIAccessibilityService.idl", + "accessible/src/base/nsAccessibilityService.cpp", + "accessible/src/base/nsAccessibilityService.h", + "accessible/src/base/nsAccessible.cpp", + "accessible/src/base/nsCoreUtils.cpp", + "accessible/src/base/nsRootAccessible.cpp", + "accessible/src/html/nsHTMLAreaAccessible.cpp", + "accessible/src/html/nsHTMLFormControlAccessible.cpp", + "accessible/src/html/nsHTMLSelectAccessible.cpp", + "accessible/src/html/nsHTMLTableAccessible.cpp", + "accessible/src/html/nsHyperTextAccessible.cpp", + "accessible/src/msaa/nsAccessibleWrap.cpp", + "content/base/src/nsFrameLoader.cpp", + "content/base/src/nsGenericElement.cpp", + "content/base/src/nsObjectLoadingContent.cpp", + "content/events/src/nsEventStateManager.cpp", + "content/html/content/src/nsGenericHTMLElement.cpp", + "content/html/content/src/nsHTMLButtonElement.cpp", + "content/html/content/src/nsHTMLInputElement.cpp", + "content/html/content/src/nsHTMLObjectElement.cpp", + "content/html/content/src/nsHTMLSelectElement.cpp", + "content/html/content/src/nsHTMLTextAreaElement.cpp", + "content/html/document/src/nsPluginDocument.cpp", + "content/svg/content/src/nsISVGTextContentMetrics.h", + "content/svg/content/src/nsISVGValue.h", + "content/svg/content/src/nsSVGGraphicElement.cpp", + "content/svg/content/src/nsSVGPatternElement.cpp", + "content/svg/content/src/nsSVGSVGElement.cpp", + "content/svg/content/src/nsSVGSwitchElement.cpp", + "content/svg/content/src/nsSVGTSpanElement.cpp", + "content/svg/content/src/nsSVGTextElement.cpp", + "content/svg/content/src/nsSVGTextPathElement.cpp", + "content/svg/content/src/nsSVGTextPathElement.h", + "docshell/base/nsDocShell.cpp", + "editor/libeditor/html/nsTableEditor.cpp", + "embedding/components/find/src/nsFind.cpp", + "embedding/components/find/src/nsWebBrowserFind.cpp", + "layout/base/nsBidiPresUtils.cpp", + "layout/base/nsCSSFrameConstructor.cpp", + "layout/base/nsCSSRendering.cpp", + "layout/base/nsCaret.cpp", + "layout/base/nsDocumentViewer.cpp", + "layout/base/nsFrameManager.cpp", + "layout/base/nsIPercentHeightObserver.h", + "layout/base/nsLayoutDebugger.cpp", + "layout/base/nsLayoutUtils.cpp", + "layout/base/nsPresShell.cpp", + "layout/forms/nsComboboxControlFrame.cpp", + "layout/forms/nsComboboxControlFrame.h", + "layout/forms/nsFileControlFrame.cpp", + "layout/forms/nsFileControlFrame.h", + "layout/forms/nsFormControlFrame.cpp", + "layout/forms/nsFormControlFrame.h", + "layout/forms/nsGfxButtonControlFrame.cpp", + "layout/forms/nsGfxButtonControlFrame.h", + "layout/forms/nsGfxCheckboxControlFrame.cpp", + "layout/forms/nsGfxCheckboxControlFrame.h", + "layout/forms/nsGfxRadioControlFrame.cpp", + "layout/forms/nsGfxRadioControlFrame.h", + "layout/forms/nsHTMLButtonControlFrame.cpp", + "layout/forms/nsHTMLButtonControlFrame.h", + "layout/forms/nsICheckboxControlFrame.h", + "layout/forms/nsIComboboxControlFrame.h", + "layout/forms/nsIFormControlFrame.h", + "layout/forms/nsIListControlFrame.h", + "layout/forms/nsIRadioControlFrame.h", + "layout/forms/nsISelectControlFrame.h", + "layout/forms/nsImageControlFrame.cpp", + "layout/forms/nsIsIndexFrame.cpp", + "layout/forms/nsIsIndexFrame.h", + "layout/forms/nsLegendFrame.cpp", + "layout/forms/nsLegendFrame.h", + "layout/forms/nsListControlFrame.cpp", + "layout/forms/nsListControlFrame.h", + "layout/forms/nsTextControlFrame.cpp", + "layout/forms/nsTextControlFrame.h", + "layout/generic/Makefile.in", + "layout/generic/nsAbsoluteContainingBlock.cpp", + "layout/generic/nsBRFrame.cpp", + "layout/generic/nsBlockFrame.cpp", + "layout/generic/nsBlockFrame.h", + "layout/generic/nsContainerFrame.cpp", + "layout/generic/nsFloatManager.cpp", + "layout/generic/nsFrame.cpp", + "layout/generic/nsFrame.h", + "layout/generic/nsFrameFrame.cpp", + "layout/generic/nsFrameList.cpp", + "layout/generic/nsFrameSetFrame.cpp", + "layout/generic/nsFrameSetFrame.h", + "layout/generic/nsGfxScrollFrame.cpp", + "layout/generic/nsGfxScrollFrame.h", + "layout/generic/nsHTMLFrame.cpp", + "layout/generic/nsIAnonymousContentCreator.h", + "layout/generic/nsICanvasFrame.h", + "layout/generic/nsIFrame.h", + "layout/generic/nsIFrameDebug.h", + "layout/generic/nsIFrameFrame.h", + "layout/generic/nsIImageFrame.h", + "layout/generic/nsIObjectFrame.h", + "layout/generic/nsIPageSequenceFrame.h", + "layout/generic/nsIScrollableFrame.h", + "layout/generic/nsIScrollableViewProvider.h", + "layout/generic/nsIStatefulFrame.h", + "layout/generic/nsImageFrame.cpp", + "layout/generic/nsImageFrame.h", + "layout/generic/nsInlineFrame.cpp", + "layout/generic/nsInlineFrame.h", + "layout/generic/nsLineBox.cpp", + "layout/generic/nsObjectFrame.cpp", + "layout/generic/nsObjectFrame.h", + "layout/generic/nsQueryFrame.h", + "layout/generic/nsSelection.cpp", + "layout/generic/nsSimplePageSequence.cpp", + "layout/generic/nsSimplePageSequence.h", + "layout/generic/nsVideoFrame.cpp", + "layout/generic/nsVideoFrame.h", + "layout/generic/nsViewportFrame.cpp", + "layout/mathml/base/src/nsIMathMLFrame.h", + "layout/mathml/base/src/nsMathMLContainerFrame.cpp", + "layout/mathml/base/src/nsMathMLContainerFrame.h", + "layout/mathml/base/src/nsMathMLForeignFrameWrapper.cpp", + "layout/mathml/base/src/nsMathMLForeignFrameWrapper.h", + "layout/mathml/base/src/nsMathMLFrame.cpp", + "layout/mathml/base/src/nsMathMLFrame.h", + "layout/mathml/base/src/nsMathMLmactionFrame.cpp", + "layout/mathml/base/src/nsMathMLmfencedFrame.cpp", + "layout/mathml/base/src/nsMathMLmtableFrame.cpp", + "layout/mathml/base/src/nsMathMLmtableFrame.h", + "layout/printing/nsPrintEngine.cpp", + "layout/style/nsComputedDOMStyle.cpp", + "layout/style/nsICSSPseudoComparator.h", + "layout/svg/base/src/nsISVGChildFrame.h", + "layout/svg/base/src/nsISVGGlyphFragmentLeaf.h", + "layout/svg/base/src/nsISVGGlyphFragmentNode.h", + "layout/svg/base/src/nsISVGSVGFrame.h", + "layout/svg/base/src/nsSVGClipPathFrame.cpp", + "layout/svg/base/src/nsSVGContainerFrame.cpp", + "layout/svg/base/src/nsSVGContainerFrame.h", + "layout/svg/base/src/nsSVGFilterFrame.cpp", + "layout/svg/base/src/nsSVGForeignObjectFrame.cpp", + "layout/svg/base/src/nsSVGForeignObjectFrame.h", + "layout/svg/base/src/nsSVGGlyphFrame.cpp", + "layout/svg/base/src/nsSVGGlyphFrame.h", + "layout/svg/base/src/nsSVGInnerSVGFrame.cpp", + "layout/svg/base/src/nsSVGIntegrationUtils.cpp", + "layout/svg/base/src/nsSVGMarkerFrame.cpp", + "layout/svg/base/src/nsSVGOuterSVGFrame.cpp", + "layout/svg/base/src/nsSVGOuterSVGFrame.h", + "layout/svg/base/src/nsSVGPathGeometryFrame.cpp", + "layout/svg/base/src/nsSVGPathGeometryFrame.h", + "layout/svg/base/src/nsSVGPatternFrame.cpp", + "layout/svg/base/src/nsSVGSwitchFrame.cpp", + "layout/svg/base/src/nsSVGTSpanFrame.cpp", + "layout/svg/base/src/nsSVGTSpanFrame.h", + "layout/svg/base/src/nsSVGTextContainerFrame.cpp", + "layout/svg/base/src/nsSVGTextContainerFrame.h", + "layout/svg/base/src/nsSVGUseFrame.cpp", + "layout/svg/base/src/nsSVGUtils.cpp", + "layout/tables/nsITableCellLayout.h", + "layout/tables/nsITableLayout.h", + "layout/tables/nsTableCellFrame.cpp", + "layout/tables/nsTableCellFrame.h", + "layout/tables/nsTableFrame.cpp", + "layout/tables/nsTableFrame.h", + "layout/tables/nsTableOuterFrame.cpp", + "layout/tables/nsTableOuterFrame.h", + "layout/tables/nsTableRowGroupFrame.cpp", + "layout/tables/nsTableRowGroupFrame.h", + "layout/xul/base/public/nsIMenuFrame.h", + "layout/xul/base/public/nsIScrollbarMediator.h", + "layout/xul/base/src/grid/nsGrid.cpp", + "layout/xul/base/src/grid/nsGridRowLeafLayout.cpp", + "layout/xul/base/src/nsBoxObject.cpp", + "layout/xul/base/src/nsContainerBoxObject.cpp", + "layout/xul/base/src/nsDocElementBoxFrame.cpp", + "layout/xul/base/src/nsIRootBox.h", + "layout/xul/base/src/nsIScrollbarFrame.h", + "layout/xul/base/src/nsListBoxBodyFrame.cpp", + "layout/xul/base/src/nsListBoxBodyFrame.h", + "layout/xul/base/src/nsListBoxObject.cpp", + "layout/xul/base/src/nsListItemFrame.cpp", + "layout/xul/base/src/nsListItemFrame.h", + "layout/xul/base/src/nsMenuFrame.cpp", + "layout/xul/base/src/nsMenuFrame.h", + "layout/xul/base/src/nsMenuPopupFrame.cpp", + "layout/xul/base/src/nsPopupSetFrame.cpp", + "layout/xul/base/src/nsRootBoxFrame.cpp", + "layout/xul/base/src/nsScrollBoxObject.cpp", + "layout/xul/base/src/nsScrollbarButtonFrame.cpp", + "layout/xul/base/src/nsScrollbarFrame.cpp", + "layout/xul/base/src/nsScrollbarFrame.h", + "layout/xul/base/src/nsSliderFrame.cpp", + "layout/xul/base/src/nsSplitterFrame.cpp", + "layout/xul/base/src/nsSplitterFrame.h", + "layout/xul/base/src/tree/src/nsTreeBodyFrame.cpp", + "layout/xul/base/src/tree/src/nsTreeBodyFrame.h", + "layout/xul/base/src/tree/src/nsTreeBoxObject.cpp", + "layout/xul/base/src/tree/src/nsTreeColFrame.cpp", + "layout/xul/base/src/tree/src/nsTreeColFrame.h", + "widget/src/gtk2/nsNativeThemeGTK.cpp", + "widget/src/windows/nsNativeThemeWin.cpp" + ], + "components": [ + "Core::DOM: Navigation", + "Core::Layout: Block and Inline", + "Core::DOM: CSS Object Model", + "Core::Audio/Video", + "Core::Layout: Form Controls", + "Core::Layout: Images, Video, and HTML Frames", + "Core::Layout", + "Core::Layout: Tables", + "Core::Layout: Scrolling and Overflow", + "Core::Layout: Text and Fonts", + "Core::Layout: Positioned", + "Core::Layout: Floats" + ], + "directories": [ + "accessible/src", + "accessible", + "docshell/base", + "layout/mathml", + "editor", + "content/base", + "content", + "content/html", + "embedding/components", + "layout/generic", + "accessible/public", + "layout/style", + "layout", + "layout/xul", + "docshell", + "layout/forms", + "layout/base", + "widget", + "editor/libeditor", + "layout/tables", + "embedding", + "layout/printing", + "layout/svg", + "content/svg", + "widget/src", + "content/events" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "a7489d8375cf34005f915e5bc93f997ae239ed11", + "author": "Shawn Wilsher ", + "bug_id": 471685, + "desc": "Backed out changeset 4de172f0d8b8 (bug 471685) with a CLOSED TREE", + "pushdate": "2009-01-09 21:19:50", + "backsout": [ + "4de172f0d8b8" + ], + "backedoutby": "", + "author_email": "me@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 3715291.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "db/sqlite3/src/sqlite3.c", + "db/sqlite3/src/sqlite3.h" + ], + "components": [], + "directories": [ + "db/sqlite3", + "db" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "f8a05a8b28eb977cf4a1a2e032e06489fead4d26", + "author": "Shawn Wilsher ", + "bug_id": 471685, + "desc": "Backed out changeset c569a8f91c0e (bug 471685) with a CLOSED TREE", + "pushdate": "2009-01-09 21:19:50", + "backsout": [ + "c569a8f91c0e" + ], + "backedoutby": "", + "author_email": "me@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 3715291.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "configure.in", + "db/sqlite3/README.MOZILLA" + ], + "components": [], + "directories": [ + "db/sqlite3", + "db" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "e1da61348ddaee37776ea497c30e517b718caa6b", + "author": "Benjamin Smedberg ", + "bug_id": 469558, + "desc": "Backed out changeset 8f347bf50a53 due to x86-64 build bustage, and the fact that the committed patch didn't match the reviewed patch in an important way (bug 469558)", + "pushdate": "2009-01-13 15:22:11", + "backsout": [ + "8f347bf50a53" + ], + "backedoutby": "", + "author_email": "benjamin@smedbergs.us", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 25828367.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "config/Makefile.in", + "config/autoconf.mk.in", + "config/system-headers", + "configure.in", + "js/src/config/system-headers", + "toolkit/toolkit-makefiles.sh", + "toolkit/toolkit-tiers.mk" + ], + "components": [ + "Firefox Build System::General" + ], + "directories": [ + "js/src", + "config", + "js", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "c573ff777cc4311b0b57bb909fd1eeac274e9e5f", + "author": "Peter Van der Beken ", + "bug_id": 471126, + "desc": "Back out changeset 9fd8740decb8 (Fix for bug 471126 (leak content nodes (and sometimes dom windows) after clicking on nytimes.com articles).) to try to fix orange.", + "pushdate": "2009-01-14 14:13:59", + "backsout": [ + "9fd8740decb8" + ], + "backedoutby": "", + "author_email": "peterv@propagandism.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 17878266.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "editor/composer/src/nsComposerCommandsUpdater.cpp", + "editor/composer/src/nsComposerCommandsUpdater.h", + "layout/base/nsDocumentViewer.cpp", + "layout/base/tests/Makefile.in", + "layout/base/tests/test_bug471126.html", + "layout/generic/nsFrameSelection.h", + "layout/generic/nsSelection.cpp" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "layout/generic", + "editor", + "editor/composer", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "d7c6fc72e3cd032ee4c24f903d58730336372dd3", + "author": "Kai Engert ", + "bug_id": 473837, + "desc": "Backout 6c571dc80a99, bug 473837", + "pushdate": "2009-01-16 19:16:17", + "backsout": [ + "6c571dc80a99" + ], + "backedoutby": "", + "author_email": "kaie@kuix.de", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 19572297.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "dbm/Makefile.in", + "dbm/include/mcom_db.h", + "dbm/src/h_bigkey.c", + "dbm/src/h_page.c", + "dbm/src/hash.c", + "dbm/src/hash_buf.c", + "dbm/src/mktemp.c", + "dbm/src/snprintf.c", + "dbm/tests/Makefile.in", + "dbm/tests/dbmtest.pkg", + "security/coreconf/WINCE.mk", + "security/coreconf/WINCE3.0.mk", + "security/coreconf/config.mk", + "security/dbm/Makefile", + "security/nss/Makefile", + "security/nss/cmd/bltest/blapitest.c", + "security/nss/cmd/bltest/tests/seed_cbc/ciphertext0", + "security/nss/cmd/bltest/tests/seed_cbc/iv0", + "security/nss/cmd/bltest/tests/seed_cbc/key0", + "security/nss/cmd/bltest/tests/seed_cbc/numtests", + "security/nss/cmd/bltest/tests/seed_cbc/plaintext0", + "security/nss/cmd/bltest/tests/seed_ecb/ciphertext0", + "security/nss/cmd/bltest/tests/seed_ecb/iv0", + "security/nss/cmd/bltest/tests/seed_ecb/key0", + "security/nss/cmd/bltest/tests/seed_ecb/numtests", + "security/nss/cmd/bltest/tests/seed_ecb/plaintext0", + "security/nss/cmd/certutil/certutil.c", + "security/nss/cmd/pk11mode/pk11mode.c", + "security/nss/cmd/platlibs.mk", + "security/nss/cmd/shlibsign/Makefile", + "security/nss/cmd/shlibsign/mangle/Makefile", + "security/nss/cmd/shlibsign/shlibsign.c", + "security/nss/cmd/signtool/list.c", + "security/nss/cmd/symkeyutil/symkeyutil.c", + "security/nss/cmd/vfychain/vfychain.c", + "security/nss/lib/certdb/cert.h", + "security/nss/lib/certdb/certdb.c", + "security/nss/lib/certdb/certi.h", + "security/nss/lib/certdb/certt.h", + "security/nss/lib/certdb/crl.c", + "security/nss/lib/certdb/genname.c", + "security/nss/lib/certdb/stanpcertdb.c", + "security/nss/lib/certdb/xauthkid.c", + "security/nss/lib/certdb/xbsconst.c", + "security/nss/lib/certdb/xconst.c", + "security/nss/lib/certhigh/certvfypkix.c", + "security/nss/lib/certhigh/certvfypkixprint.c", + "security/nss/lib/certhigh/ocsp.c", + "security/nss/lib/certhigh/ocspi.h", + "security/nss/lib/ckfw/Makefile", + "security/nss/lib/ckfw/builtins/certdata.c", + "security/nss/lib/ckfw/builtins/certdata.txt", + "security/nss/lib/ckfw/builtins/config.mk", + "security/nss/lib/ckfw/builtins/nssckbi.h", + "security/nss/lib/crmf/crmffut.h", + "security/nss/lib/cryptohi/hasht.h", + "security/nss/lib/cryptohi/keythi.h", + "security/nss/lib/cryptohi/manifest.mn", + "security/nss/lib/cryptohi/sechash.h", + "security/nss/lib/dev/devslot.c", + "security/nss/lib/dev/devutil.c", + "security/nss/lib/freebl/Makefile", + "security/nss/lib/freebl/aeskeywrap.c", + "security/nss/lib/freebl/alg2268.c", + "security/nss/lib/freebl/alghmac.c", + "security/nss/lib/freebl/arcfive.c", + "security/nss/lib/freebl/arcfour.c", + "security/nss/lib/freebl/blapi.h", + "security/nss/lib/freebl/blapit.h", + "security/nss/lib/freebl/camellia.c", + "security/nss/lib/freebl/config.mk", + "security/nss/lib/freebl/des.c", + "security/nss/lib/freebl/desblapi.c", + "security/nss/lib/freebl/dh.c", + "security/nss/lib/freebl/dsa.c", + "security/nss/lib/freebl/ec.c", + "security/nss/lib/freebl/freebl_hash.def", + "security/nss/lib/freebl/hasht.h", + "security/nss/lib/freebl/intel-aes.h", + "security/nss/lib/freebl/intel-aes.s", + "security/nss/lib/freebl/ldvector.c", + "security/nss/lib/freebl/loader.c", + "security/nss/lib/freebl/loader.h", + "security/nss/lib/freebl/manifest.mn", + "security/nss/lib/freebl/md2.c", + "security/nss/lib/freebl/md5.c", + "security/nss/lib/freebl/mpi/mpcpucache.c", + "security/nss/lib/freebl/mpi/mpcpucache_amd64.s", + "security/nss/lib/freebl/mpi/mpcpucache_x86.s", + "security/nss/lib/freebl/mpi/mpi.h", + "security/nss/lib/freebl/mpi/mpprime.c", + "security/nss/lib/freebl/nsslowhash.c", + "security/nss/lib/freebl/nsslowhash.h", + "security/nss/lib/freebl/pqg.c", + "security/nss/lib/freebl/prng_fips1861.c", + "security/nss/lib/freebl/rawhash.c", + "security/nss/lib/freebl/rijndael.c", + "security/nss/lib/freebl/rsa.c", + "security/nss/lib/freebl/sechash.h", + "security/nss/lib/freebl/seed.c", + "security/nss/lib/freebl/seed.h", + "security/nss/lib/freebl/sha512.c", + "security/nss/lib/freebl/sha_fast.c", + "security/nss/lib/freebl/shvfy.c", + "security/nss/lib/freebl/stubs.c", + "security/nss/lib/freebl/stubs.h", + "security/nss/lib/freebl/sysrand.c", + "security/nss/lib/freebl/tlsprfalg.c", + "security/nss/lib/jar/jarfile.c", + "security/nss/lib/libpkix/include/pkix.h", + "security/nss/lib/libpkix/include/pkix_certstore.h", + "security/nss/lib/libpkix/include/pkix_crlsel.h", + "security/nss/lib/libpkix/include/pkix_errorstrings.h", + "security/nss/lib/libpkix/include/pkix_params.h", + "security/nss/lib/libpkix/include/pkix_pl_pki.h", + "security/nss/lib/libpkix/include/pkix_revchecker.h", + "security/nss/lib/libpkix/include/pkix_sample_modules.h", + "security/nss/lib/libpkix/include/pkixt.h", + "security/nss/lib/libpkix/pkix/checker/manifest.mn", + "security/nss/lib/libpkix/pkix/checker/pkix_crlchecker.c", + "security/nss/lib/libpkix/pkix/checker/pkix_crlchecker.h", + "security/nss/lib/libpkix/pkix/checker/pkix_defaultcrlchecker.c", + "security/nss/lib/libpkix/pkix/checker/pkix_defaultcrlchecker.h", + "security/nss/lib/libpkix/pkix/checker/pkix_defaultrevchecker.c", + "security/nss/lib/libpkix/pkix/checker/pkix_defaultrevchecker.h", + "security/nss/lib/libpkix/pkix/checker/pkix_ekuchecker.c", + "security/nss/lib/libpkix/pkix/checker/pkix_ekuchecker.h", + "security/nss/lib/libpkix/pkix/checker/pkix_ocspchecker.c", + "security/nss/lib/libpkix/pkix/checker/pkix_ocspchecker.h", + "security/nss/lib/libpkix/pkix/checker/pkix_revocationchecker.c", + "security/nss/lib/libpkix/pkix/checker/pkix_revocationchecker.h", + "security/nss/lib/libpkix/pkix/checker/pkix_revocationmethod.c", + "security/nss/lib/libpkix/pkix/checker/pkix_revocationmethod.h", + "security/nss/lib/libpkix/pkix/crlsel/pkix_crlselector.c", + "security/nss/lib/libpkix/pkix/crlsel/pkix_crlselector.h", + "security/nss/lib/libpkix/pkix/params/pkix_procparams.c", + "security/nss/lib/libpkix/pkix/params/pkix_procparams.h", + "security/nss/lib/libpkix/pkix/params/pkix_trustanchor.c", + "security/nss/lib/libpkix/pkix/results/pkix_verifynode.c", + "security/nss/lib/libpkix/pkix/store/pkix_store.c", + "security/nss/lib/libpkix/pkix/store/pkix_store.h", + "security/nss/lib/libpkix/pkix/top/pkix_build.c", + "security/nss/lib/libpkix/pkix/top/pkix_build.c.orig", + "security/nss/lib/libpkix/pkix/top/pkix_build.h", + "security/nss/lib/libpkix/pkix/top/pkix_validate.c", + "security/nss/lib/libpkix/pkix/top/pkix_validate.c.orig", + "security/nss/lib/libpkix/pkix/top/pkix_validate.h", + "security/nss/lib/libpkix/pkix/util/pkix_error.c", + "security/nss/lib/libpkix/pkix/util/pkix_list.c", + "security/nss/lib/libpkix/pkix/util/pkix_logger.c", + "security/nss/lib/libpkix/pkix/util/pkix_logger.h", + "security/nss/lib/libpkix/pkix/util/pkix_tools.c", + "security/nss/lib/libpkix/pkix/util/pkix_tools.h", + "security/nss/lib/libpkix/pkix_pl_nss/module/manifest.mn", + "security/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_aiamgr.c", + "security/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_colcertstore.c", + "security/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ekuchecker.c", + "security/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ekuchecker.h", + "security/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_httpcertstore.c", + "security/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_httpdefaultclient.c", + "security/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_httpdefaultclient.h", + "security/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapcertstore.c", + "security/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_nsscontext.c", + "security/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_nsscontext.h", + "security/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_pk11certstore.c", + "security/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_cert.c", + "security/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_certpolicymap.c", + "security/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_crl.h", + "security/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_date.c", + "security/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_ocsprequest.c", + "security/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_ocsprequest.h", + "security/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_ocspresponse.c", + "security/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_ocspresponse.h", + "security/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_x500name.c", + "security/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_common.h", + "security/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_lifecycle.c", + "security/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_lifecycle.h", + "security/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c", + "security/nss/lib/nss/nss.def", + "security/nss/lib/nss/nss.h", + "security/nss/lib/pk11wrap/manifest.mn", + "security/nss/lib/pk11wrap/pk11akey.c", + "security/nss/lib/pk11wrap/pk11err.c", + "security/nss/lib/pk11wrap/pk11init.h", + "security/nss/lib/pk11wrap/pk11mech.c", + "security/nss/lib/pk11wrap/pk11merge.c", + "security/nss/lib/pk11wrap/pk11obj.c", + "security/nss/lib/pk11wrap/pk11slot.c", + "security/nss/lib/pk11wrap/secmod.h", + "security/nss/lib/pk11wrap/secmodi.h", + "security/nss/lib/pk11wrap/secmodt.h", + "security/nss/lib/pki/tdcache.c", + "security/nss/lib/smime/config.mk", + "security/nss/lib/softoken/Makefile", + "security/nss/lib/softoken/config.mk", + "security/nss/lib/softoken/legacydb/config.mk", + "security/nss/lib/softoken/manifest.mn", + "security/nss/lib/softoken/pk11init.h", + "security/nss/lib/softoken/pk11pars.h", + "security/nss/lib/softoken/pkcs11.c", + "security/nss/lib/softoken/pkcs11c.c", + "security/nss/lib/softoken/pkcs11t.h", + "security/nss/lib/softoken/pkcs11u.c", + "security/nss/lib/softoken/sdb.c", + "security/nss/lib/softoken/secmodt.h", + "security/nss/lib/softoken/sftkdb.c", + "security/nss/lib/softoken/sftkdb.h", + "security/nss/lib/softoken/sftkpars.c", + "security/nss/lib/softoken/softkver.h", + "security/nss/lib/softoken/softoken.h", + "security/nss/lib/sqlite/config.mk", + "security/nss/lib/ssl/config.mk", + "security/nss/lib/ssl/ssl3con.c", + "security/nss/lib/ssl/ssl3gthr.c", + "security/nss/lib/ssl/sslenum.c", + "security/nss/lib/ssl/sslimpl.h", + "security/nss/lib/ssl/sslinfo.c", + "security/nss/lib/ssl/sslmutex.c", + "security/nss/lib/ssl/sslmutex.h", + "security/nss/lib/ssl/sslproto.h", + "security/nss/lib/ssl/sslsnce.c", + "security/nss/lib/ssl/sslsock.c", + "security/nss/lib/ssl/sslt.h", + "security/nss/lib/ssl/win32err.c", + "security/nss/lib/util/nssutil.def", + "security/nss/lib/util/secitem.c", + "security/nss/lib/util/secoid.c", + "security/nss/lib/util/secoidt.h", + "security/nss/tests/README.txt", + "security/nss/tests/all.sh", + "security/nss/tests/chains/chains.sh", + "security/nss/tests/chains/scenarios/aia.cfg", + "security/nss/tests/chains/scenarios/anypolicy.cfg", + "security/nss/tests/chains/scenarios/anypolicywithlevel.cfg", + "security/nss/tests/chains/scenarios/bridge.cfg", + "security/nss/tests/chains/scenarios/bridgewithaia.cfg", + "security/nss/tests/chains/scenarios/bridgewithhalfaia.cfg", + "security/nss/tests/chains/scenarios/bridgewithpolicyextensionandmapping.cfg", + "security/nss/tests/chains/scenarios/dsa.cfg", + "security/nss/tests/chains/scenarios/extension.cfg", + "security/nss/tests/chains/scenarios/extension2.cfg", + "security/nss/tests/chains/scenarios/mapping.cfg", + "security/nss/tests/chains/scenarios/mapping2.cfg", + "security/nss/tests/chains/scenarios/megabridge_3_2.cfg", + "security/nss/tests/chains/scenarios/realcerts.cfg", + "security/nss/tests/chains/scenarios/scenarios", + "security/nss/tests/cipher/cipher.txt", + "security/nss/tests/cipher/symmkey.txt", + "security/nss/tests/dbtests/dbtests.sh", + "security/nss/tests/libpkix/libpkix.sh", + "security/nss/tests/memleak/ignored", + "security/nss/tests/memleak/memleak.sh", + "security/nss/tests/merge/merge.sh", + "security/nss/tests/ssl/ssl.sh" + ], + "components": [ + "NSS::Libraries" + ], + "directories": [ + "security/nss", + "dbm", + "security", + "security/dbm", + "dbm/include", + "dbm/tests", + "dbm/src", + "security/coreconf" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "f5436f305f3a8917c651c798be17d63aa051cdaa", + "author": "L. David Baron ", + "bug_id": 462188, + "desc": "Backed out changeset 9b832d90d637 (bug 462188) due to 7 test failures on Linux and 1 on Windows (0 on Mac).", + "pushdate": "2009-01-16 23:01:46", + "backsout": [ + "9b832d90d637" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 21355427.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "editor/libeditor/html/nsHTMLEditRules.cpp", + "layout/generic/test/test_backspace_delete.html" + ], + "components": [], + "directories": [ + "editor/libeditor", + "layout", + "layout/generic", + "editor" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "79043b10f34c01764ab4e9a542fdd48257d0e369", + "author": "Igor Bukanov ", + "bug_id": 473721, + "desc": "Backed out changeset 562d8990f33a - with the fix for bug 473721 this workaround is no longer necessary.", + "pushdate": "2009-01-19 01:17:02", + "backsout": [ + "562d8990f33a" + ], + "backedoutby": "", + "author_email": "igor@mir2.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 18502923.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsapi.cpp" + ], + "components": [ + "Core::JavaScript Engine" + ], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "6f2d2ef53d758d199d16ddb88ca982ecd6e67845", + "author": "L. David Baron ", + "bug_id": 468645, + "desc": "Backed out changeset 6849ce51dfef (patch 3 from bug 468645) to fix bug 472353.", + "pushdate": "2009-01-20 21:59:23", + "backsout": [ + "6849ce51dfef" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 21697284.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/base/nsCSSFrameConstructor.cpp", + "layout/base/nsPresContext.cpp" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "929d0451c9b5ac985511f01d48d8347a5a788276", + "author": "Benjamin Smedberg ", + "bug_id": 470971, + "desc": "Backed out changeset 700bca4b693f due to reftest failure (bug 470971)", + "pushdate": "2009-01-21 00:00:44", + "backsout": [ + "700bca4b693f" + ], + "backedoutby": "", + "author_email": "benjamin@smedbergs.us", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 26464280.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "config/autoconf.mk.in", + "configure.in", + "js/src/xpconnect/shell/Makefile.in", + "js/src/xpconnect/shell/xpcshell.cpp" + ], + "components": [ + "Firefox Build System::General" + ], + "directories": [ + "js/src", + "config", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "3b4b3555239203608307ebb31e790e9345ac145c", + "author": "Benjamin Smedberg ", + "bug_id": 269538, + "desc": "Backed out changeset 525e42406396, bug 269538 (jscpucfg-ectomy) due to Windows TUnit bustage.", + "pushdate": "2009-01-21 22:35:10", + "backsout": [ + "525e42406396" + ], + "backedoutby": "", + "author_email": "benjamin@smedbergs.us", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 26545546.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "build/autoconf/moznbytetype.m4", + "js/src/Makefile.in", + "js/src/build/autoconf/moznbytetype.m4", + "js/src/configure.in", + "js/src/js-config.h.in", + "js/src/jscpucfg.cpp", + "js/src/jscpucfg.h", + "js/src/jslock.cpp", + "js/src/jslong.cpp", + "js/src/jslong.h", + "js/src/jstypes.h", + "js/src/prmjtime.cpp" + ], + "components": [ + "Firefox Build System::General", + "Core::JavaScript Engine" + ], + "directories": [ + "build/autoconf", + "js", + "js/src", + "build" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "835e35dd544217fb4247d8060836be95497c9b59", + "author": "Daniel Holbert ", + "bug_id": 466410, + "desc": "Backed out changeset e6566d187edd (bug 466410) on suspicion of causing linux reftest failures in 'ogg-video/basic-1.html' and 'ogg-video/zoomed-1.html'", + "pushdate": "2009-01-22 06:37:50", + "backsout": [ + "e6566d187edd" + ], + "backedoutby": "", + "author_email": "dholbert@cs.stanford.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 21775197.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/media/video/src/nsMediaDecoder.cpp", + "content/media/video/src/nsOggDecoder.cpp", + "content/media/video/test/test_onloadedmetadata.html" + ], + "components": [], + "directories": [ + "content", + "content/media" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "d27fe7afe11e276037b99a04b77481c687cd8241", + "author": "Peter Van der Beken ", + "bug_id": 464954, + "desc": "Backed out changeset 9fc993ac4427 (Bug 464954: Update Access-Control implementation to latest draft and fix some bugs. r/sr=bz) to fix orange.", + "pushdate": "2009-01-22 13:53:44", + "backsout": [ + "9fc993ac4427" + ], + "backedoutby": "", + "author_email": "peterv@propagandism.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 18568251.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/base/public/nsContentUtils.h", + "content/base/src/nsContentUtils.cpp", + "content/base/src/nsCrossSiteListenerProxy.cpp", + "content/base/src/nsCrossSiteListenerProxy.h", + "content/base/src/nsXMLHttpRequest.cpp", + "content/base/test/Makefile.in", + "content/base/test/file_CrossSiteXHR_inner.html", + "content/base/test/file_CrossSiteXHR_inner.jar", + "content/base/test/file_CrossSiteXHR_inner_data.sjs", + "content/base/test/file_CrossSiteXHR_server.sjs", + "content/base/test/test_CrossSiteXHR.html", + "docshell/test/Makefile.in", + "dom/src/base/nsGlobalWindow.cpp", + "netwerk/base/public/nsNetUtil.h", + "testing/mochitest/server.js" + ], + "components": [ + "Testing::Mochitest" + ], + "directories": [ + "netwerk/base", + "dom/src", + "netwerk", + "docshell", + "testing/mochitest", + "dom", + "docshell/test", + "content/base", + "content", + "testing" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "dffc4413419a5c0b6a88fb51ef81a37bc6c814fe", + "author": "Peter Van der Beken ", + "bug_id": 464676, + "desc": "Back out changeset 32dc89bc34ad (Fix for bug 464676 (Cycle collector sometimes unlinks live cycles). r=bent, sr=jst.) to fix orange.", + "pushdate": "2009-01-23 16:06:05", + "backsout": [ + "32dc89bc34ad" + ], + "backedoutby": "", + "author_email": "peterv@propagandism.org", + "reviewers": [ + "bent", + "jst" + ], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 18662592.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/xpconnect/src/nsXPConnect.cpp", + "js/src/xpconnect/src/xpcwrappednativescope.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "173e57cbce97ad7ed4710aacf6486fba023ddbc7", + "author": "Peter Van der Beken ", + "bug_id": 462106, + "desc": "Backed out changeset 97907892496f (Bug 462106 - Clear the data copied to clipboard inside the private browsing mode after leaving it; r,sr=roc a=blocking-firefox3.1+) to fix orange.", + "pushdate": "2009-01-24 13:28:32", + "backsout": [ + "97907892496f" + ], + "backedoutby": "", + "author_email": "peterv@propagandism.org", + "reviewers": [ + "roc", + "blocking-firefox3.1" + ], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 18739539.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "widget/src/gtk2/nsClipboard.cpp", + "widget/src/gtk2/nsClipboard.h", + "widget/src/photon/nsClipboard.cpp", + "widget/src/photon/nsClipboard.h", + "widget/src/qt/nsClipboard.cpp", + "widget/src/qt/nsClipboard.h", + "widget/src/xpwidgets/Makefile.in", + "widget/src/xpwidgets/nsBaseClipboard.cpp", + "widget/src/xpwidgets/nsBaseClipboard.h", + "widget/src/xpwidgets/nsClipboardPrivacyHandler.cpp", + "widget/src/xpwidgets/nsClipboardPrivacyHandler.h", + "widget/tests/Makefile.in", + "widget/tests/test_bug462106.xul" + ], + "components": [], + "directories": [ + "widget/tests", + "widget", + "widget/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "6718f7e66778dc26dadec571c108b29b37df0822", + "author": "Peter Van der Beken ", + "bug_id": 464676, + "desc": "Back out changeset e919f0c1dfa9 (Fix for bug 464676 (Cycle collector sometimes unlinks live cycles). r=bent, sr=jst.) to try to fix red on leak tinderboxes.", + "pushdate": "2009-01-24 22:14:11", + "backsout": [ + "e919f0c1dfa9" + ], + "backedoutby": "", + "author_email": "peterv@propagandism.org", + "reviewers": [ + "bent", + "jst" + ], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 18771078.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/xpconnect/src/nsXPConnect.cpp", + "js/src/xpconnect/src/xpcwrappednativescope.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "4d6ed97f82f3c86991c11b90f7f8aabc19f05094", + "author": "Peter Van der Beken ", + "bug_id": 464676, + "desc": "Backed out changeset 81428de4b5dc (Fix for bug 464676 (Cycle collector sometimes unlinks live cycles). r=bent, sr=jst.).", + "pushdate": "2009-01-26 08:11:21", + "backsout": [ + "81428de4b5dc" + ], + "backedoutby": "", + "author_email": "peterv@propagandism.org", + "reviewers": [ + "bent", + "jst" + ], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 18893308.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/xpconnect/src/nsXPConnect.cpp", + "js/src/xpconnect/src/xpcprivate.h", + "js/src/xpconnect/src/xpcwrappednative.cpp", + "js/src/xpconnect/src/xpcwrappednativescope.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "73bfcdaa1a516a2c25ca7d9f6106ba30a3ca11c5", + "author": "Igor Bukanov ", + "bug_id": 474801, + "desc": "Backed out changeset 6657640cbbb2 - the patch from the bug 474801 caused leak and crash test failures", + "pushdate": "2009-01-27 21:40:57", + "backsout": [ + "6657640cbbb2" + ], + "backedoutby": "", + "author_email": "igor@mir2.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 19267558.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "dom/src/base/nsJSEnvironment.cpp", + "js/src/jsapi.cpp", + "js/src/jsapi.h", + "js/src/jscntxt.h", + "js/src/jsgc.cpp", + "js/src/shell/js.cpp" + ], + "components": [ + "Core::JavaScript Engine" + ], + "directories": [ + "dom", + "js", + "dom/src", + "js/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "2bed5117722e6f63ebf50ec02562946c129bed3f", + "author": "Andreas Gal ", + "bug_id": 462027, + "desc": "Backed out changeset 17663da1b840 (bug 462027).", + "pushdate": "2009-01-27 21:40:57", + "backsout": [ + "17663da1b840" + ], + "backedoutby": "", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 18092979.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/builtins.tbl", + "js/src/imacro_asm.js.in", + "js/src/imacros.c.out", + "js/src/imacros.jsasm", + "js/src/jsbuiltins.cpp", + "js/src/jscntxt.h", + "js/src/jsgc.cpp", + "js/src/jsinterp.cpp", + "js/src/jsopcode.tbl", + "js/src/jstracer.cpp", + "js/src/jstracer.h", + "js/src/trace-test.js" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "6e5e50fe7ca61ddf885122b938f825af08c81ee2", + "author": "Andreas Gal ", + "bug_id": 24106, + "desc": "Backed out changeset 05cbbc9f1ae2, which backed out bug 24106 (so this is re-landing 24106).", + "pushdate": "2009-01-27 21:40:57", + "backsout": [ + "05cbbc9f1ae2" + ], + "backedoutby": "", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 18092979.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jstracer.cpp", + "js/src/trace-test.js" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "799a55cfae002c1a1b0e8a6a089b3b3c007f0668", + "author": "Andreas Gal ", + "bug_id": 474771, + "desc": "Backed out changeset d50d3681b94e (attempted re-landing of 474771).", + "pushdate": "2009-01-28 18:59:34", + "backsout": [ + "d50d3681b94e" + ], + "backedoutby": "", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 18169696.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jscntxt.h", + "js/src/jsinterp.cpp", + "js/src/jsobj.cpp", + "js/src/jsstaticcheck.h", + "js/src/jstracer.cpp", + "js/src/trace-test.js" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "0cbd3800749f3bffc26297d2307262908464c554", + "author": "L. David Baron ", + "bug_id": 475128, + "desc": "Backed out changeset 24917a339f2e (bug 475128) because it didn't patch the IsRoot check nsRuleNode::Sweep, which it needs to.", + "pushdate": "2009-01-29 22:37:28", + "backsout": [ + "24917a339f2e" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 22477169.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/base/nsPresContext.h", + "layout/style/nsStyleContext.cpp", + "layout/style/nsStyleSet.cpp", + "layout/style/nsStyleSet.h" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "layout/style", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "6efc982bb051993be0ab7d97a8efc25745dbb945", + "author": "Justin Dolske ", + "bug_id": 451352, + "desc": "Backout changeset 8dd2e82503cd (bug 451352), it broke password manager.", + "pushdate": "2009-01-30 20:02:08", + "backsout": [ + "8dd2e82503cd" + ], + "backedoutby": "", + "author_email": "dolske@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 19701372.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/components/passwordmgr/content/passwordManager.js" + ], + "components": [], + "directories": [ + "toolkit/components", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "6a6d6d76ebc8fad447f77cf8d537dea380361855", + "author": "shaver@mozilla.org", + "bug_id": 469625, + "desc": "Backed out changeset 7246c4dcf997 (bug 469625) due to trace-test.js failures.", + "pushdate": "2009-01-31 19:45:42", + "backsout": [ + "7246c4dcf997" + ], + "backedoutby": "", + "author_email": "shaver@mozilla.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 27399378.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsarray.cpp", + "js/src/jsemit.cpp", + "js/src/jsobj.cpp", + "js/src/jstracer.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "143ac6c35cfacf6ec31a1cb8bce9d295d3889aaf", + "author": "Ted Mielczarek ", + "bug_id": 460515, + "desc": "Backed out changeset 7c7ec4bd36a6 (bug 460515 - Remove assumption that xpcshell etc in same directory as app executable) because it's broken on OS X.", + "pushdate": "2009-02-04 20:43:14", + "backsout": [ + "7c7ec4bd36a6" + ], + "backedoutby": "", + "author_email": "ted.mielczarek@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 27748430.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "build/pgo/automation.py.in", + "testing/mochitest/runtests.py.in", + "testing/mochitest/server.js" + ], + "components": [ + "Testing::Mochitest" + ], + "directories": [ + "testing/mochitest", + "build/pgo", + "testing", + "build" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "674246a64ed25f818e72b1982cc20168502c2988", + "author": "L. David Baron ", + "bug_id": 474655, + "desc": "Backed out changeset eec3076f3bab (Bug 474655, Warn when nsIDOMCSSStyleDeclaration::GetPropertyCSSValue is called) because we trigger the warning too much ourselves (Bug 475311)", + "pushdate": "2009-02-04 21:25:12", + "backsout": [ + "eec3076f3bab" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 22991233.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "dom/locales/en-US/chrome/layout/css.properties", + "layout/style/nsCSSRules.cpp", + "layout/style/nsComputedDOMStyle.cpp", + "layout/style/nsComputedDOMStyle.h", + "layout/style/nsDOMCSSDeclaration.cpp", + "layout/style/nsStyleUtil.cpp", + "layout/style/nsStyleUtil.h" + ], + "components": [ + "Core::DOM: CSS Object Model", + "Core::CSS Parsing and Computation" + ], + "directories": [ + "dom", + "layout", + "dom/locales", + "layout/style" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "c5044341110e9e79210a7547b1a3e75f01b6e58a", + "author": "L. David Baron ", + "bug_id": 476345, + "desc": "Backed out changeset d9eff1fb5e60 (bug 476345) due to Windows bustage.", + "pushdate": "2009-02-04 22:39:56", + "backsout": [ + "d9eff1fb5e60" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 22995717.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/style/nsCSSValue.h" + ], + "components": [ + "Core::CSS Parsing and Computation" + ], + "directories": [ + "layout/style", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "c1dabe868c329e83fc95183ba931d0da48e7d865", + "author": "Peter Van der Beken ", + "bug_id": 445087, + "desc": "Backed out changeset d679ac3a8de0 (Bug 445087. Add extra pixel on each side of the glyph's black box returned by GetGlyphOutlineW, to avoid clipping ClearType pixels. r=vlad) to fix orange.", + "pushdate": "2009-02-05 14:35:14", + "backsout": [ + "d679ac3a8de0" + ], + "backedoutby": "", + "author_email": "peterv@propagandism.org", + "reviewers": [ + "vlad" + ], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 19780341.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "gfx/cairo/README", + "gfx/cairo/cairo/src/cairo-win32-font.c", + "gfx/cairo/win32-cleartype-clipping.patch" + ], + "components": [ + "Core::Graphics" + ], + "directories": [ + "gfx/cairo", + "gfx" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "1dabc169a3c4f6afea7acec07e2fe983bdce6186", + "author": "Benjamin Smedberg ", + "bug_id": 476643, + "desc": "Backed out changeset 64d5b7cdeb69 - bug 476643 because of Windows bustage (js_LeaveTrace is not a friend API)", + "pushdate": "2009-02-06 01:20:20", + "backsout": [ + "64d5b7cdeb69" + ], + "backedoutby": "", + "author_email": "benjamin@smedbergs.us", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 27851456.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "dom/src/base/nsJSEnvironment.cpp", + "dom/src/base/nsJSEnvironment.h", + "js/src/xpconnect/src/xpcprivate.h", + "js/src/xpconnect/src/xpcwrappedjsclass.cpp" + ], + "components": [], + "directories": [ + "dom", + "js", + "dom/src", + "js/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "27d46c33caddcf8b00b874230d539e283e9ddfa2", + "author": "L. David Baron ", + "bug_id": 460882, + "desc": "Backed out changeset 423eea03fb54 (Bug 460882) for being one of the two changesets that's causing chrome and a11y tests not to start.", + "pushdate": "2009-02-07 04:58:06", + "backsout": [ + "423eea03fb54" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 23191207.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "dom/src/base/nsDOMClassInfo.cpp", + "js/src/jsdbgapi.cpp", + "js/src/jsinterp.cpp", + "js/src/jsscope.h", + "js/src/xpconnect/idl/nsIXPConnect.idl", + "js/src/xpconnect/src/XPCCrossOriginWrapper.cpp", + "js/src/xpconnect/src/nsXPConnect.cpp", + "js/src/xpconnect/src/xpccallcontext.cpp", + "js/src/xpconnect/src/xpcprivate.h", + "js/src/xpconnect/src/xpcwrappednativejsops.cpp", + "js/src/xpconnect/src/xpcwrappednativescope.cpp" + ], + "components": [], + "directories": [ + "dom", + "js", + "dom/src", + "js/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "7a4f890c862d61c7d8d26f656a1f438e81c6c9d5", + "author": "Phil Ringnalda ", + "bug_id": 320954, + "desc": "Backed out changeset c8d43645a578 (bug 320954) for burning leak tests", + "pushdate": "2009-02-07 22:40:16", + "backsout": [ + "c8d43645a578" + ], + "backedoutby": "", + "author_email": "philringnalda@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 20554026.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "security/manager/ssl/src/nsNSSModule.cpp" + ], + "components": [], + "directories": [ + "security/manager", + "security" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "7581b9caf300976be72d4be0a74041533a586396", + "author": "Marco Bonardo ", + "bug_id": 469831, + "desc": "Backed out changeset 92a47ed3d54e - Michael Ventnor \u2014 Bug 469831 - need gtk2 drawing code for test plugin - due to mochitest leak failures (crash?)", + "pushdate": "2009-02-10 00:37:27", + "backsout": [ + "92a47ed3d54e" + ], + "backedoutby": "", + "author_email": "mbonardo@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 474492.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "modules/plugin/test/reftest/reftest.list", + "modules/plugin/test/testplugin/Makefile.in", + "modules/plugin/test/testplugin/nptest_gtk2.cpp" + ], + "components": [], + "directories": [ + "modules/plugin", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "4bb932755d5c4d2a79ce867b256e95cbb3118fcd", + "author": "Marco Zehe ", + "bug_id": 475522, + "desc": "Backout changeset 4767c92771e6 from bug 475522 because of burning tree", + "pushdate": "2009-02-12 14:37:38", + "backsout": [ + "4767c92771e6" + ], + "backedoutby": "", + "author_email": "marco.zehe@googlemail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 21778772.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "accessible/src/base/Makefile.in", + "accessible/src/base/nsAccessibilityAtomList.h", + "accessible/src/base/nsTextAttrs.cpp", + "accessible/src/base/nsTextAttrs.h", + "accessible/src/base/nsTextUtils.cpp", + "accessible/src/base/nsTextUtils.h", + "accessible/src/html/nsHyperTextAccessible.cpp", + "accessible/src/html/nsHyperTextAccessible.h", + "accessible/tests/mochitest/attributes.js", + "accessible/tests/mochitest/test_textattrs.html" + ], + "components": [ + "Core::Disability Access APIs" + ], + "directories": [ + "accessible/src", + "accessible", + "accessible/tests" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "8dccd5c59ad200b7187886fd95d6847b11d03607", + "author": "L. David Baron ", + "bug_id": 474536, + "desc": "Backed out changeset 4bd7dd7645c2 (Bug 474536)", + "pushdate": "2009-02-19 20:38:52", + "backsout": [ + "4bd7dd7645c2" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 24284453.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "modules/libjar/nsJARChannel.cpp", + "modules/libjar/nsJARChannel.h", + "netwerk/base/public/nsChannelProperties.h", + "netwerk/base/public/nsNetStrings.h", + "netwerk/base/public/nsNetUtil.h", + "netwerk/base/src/nsNetStrings.cpp", + "netwerk/protocol/http/src/nsHttpAtomList.h", + "netwerk/streamconv/test/Makefile.in", + "uriloader/base/nsURILoader.cpp" + ], + "components": [ + "Core::DOM: Navigation", + "Core::Networking: JAR" + ], + "directories": [ + "netwerk/base", + "modules/libjar", + "netwerk/protocol", + "netwerk", + "uriloader/base", + "netwerk/streamconv", + "uriloader", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "0590dccbad048faa84af827bb1eaefe978e95260", + "author": "L. David Baron ", + "bug_id": 322475, + "desc": "Backed out changeset fde0b361f25e (bug 322475, main patch) due to Mac talos startup failures and hitting the NS_ABORT_IF_FALSE in SetupBackgroundClip, which may be related.", + "pushdate": "2009-02-19 21:52:07", + "backsout": [ + "fde0b361f25e" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 24288848.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "accessible/src/base/nsTextAttrs.cpp", + "content/html/content/src/nsGenericHTMLElement.cpp", + "content/mathml/content/src/nsMathMLElement.cpp", + "gfx/thebes/public/gfxContext.h", + "layout/base/nsCSSRendering.cpp", + "layout/base/nsDisplayList.cpp", + "layout/base/nsLayoutUtils.cpp", + "layout/base/nsPresContext.cpp", + "layout/base/nsStyleConsts.h", + "layout/generic/nsFrame.cpp", + "layout/reftests/backgrounds/aqua-32x32.png", + "layout/reftests/backgrounds/blue-32x32.png", + "layout/reftests/backgrounds/fallback-color-1.xhtml", + "layout/reftests/backgrounds/fallback-color-2.xhtml", + "layout/reftests/backgrounds/fallback-color-3.xhtml", + "layout/reftests/backgrounds/fallback-color-4.xhtml", + "layout/reftests/backgrounds/fallback-color-5.xhtml", + "layout/reftests/backgrounds/fallback-color-6.xhtml", + "layout/reftests/backgrounds/fallback-color-7.xhtml", + "layout/reftests/backgrounds/fallback-color-8.xhtml", + "layout/reftests/backgrounds/fallback-color-9.xhtml", + "layout/reftests/backgrounds/fallback-color-ref.xhtml", + "layout/reftests/backgrounds/fuchsia-32x32.png", + "layout/reftests/backgrounds/layers-layer-count-1-ref.xhtml", + "layout/reftests/backgrounds/layers-layer-count-2-ref.xhtml", + "layout/reftests/backgrounds/layers-layer-count-cascade-1.xhtml", + "layout/reftests/backgrounds/layers-layer-count-cascade-2.xhtml", + "layout/reftests/backgrounds/layers-layer-count-inheritance-1.xhtml", + "layout/reftests/backgrounds/layers-layer-count-inheritance-2.xhtml", + "layout/reftests/backgrounds/layers-stacking-order-ref.xhtml", + "layout/reftests/backgrounds/layers-stacking-order.xhtml", + "layout/reftests/backgrounds/lime-32x32.png", + "layout/reftests/backgrounds/malformed.png", + "layout/reftests/backgrounds/red-32x32.png", + "layout/reftests/backgrounds/reftest.list", + "layout/reftests/backgrounds/transparent-32x32.png", + "layout/reftests/backgrounds/yellow-32x32.png", + "layout/reftests/reftest.list", + "layout/style/nsCSSDataBlock.cpp", + "layout/style/nsCSSDeclaration.cpp", + "layout/style/nsCSSParser.cpp", + "layout/style/nsCSSPropList.h", + "layout/style/nsCSSProps.cpp", + "layout/style/nsCSSStruct.cpp", + "layout/style/nsCSSStruct.h", + "layout/style/nsComputedDOMStyle.cpp", + "layout/style/nsComputedDOMStyle.h", + "layout/style/nsRuleNode.cpp", + "layout/style/nsStyleStruct.cpp", + "layout/style/nsStyleStruct.h", + "layout/style/test/property_database.js", + "layout/style/test/test_shorthand_property_getters.html", + "layout/tables/nsTablePainter.cpp", + "layout/xul/base/src/tree/src/nsTreeBodyFrame.cpp", + "xpcom/glue/nsTArray.h" + ], + "components": [ + "Core::Layout", + "Core::DOM: CSS Object Model", + "Core::CSS Parsing and Computation" + ], + "directories": [ + "xpcom/glue", + "layout/generic", + "layout/tables", + "accessible/src", + "accessible", + "content/mathml", + "gfx/thebes", + "layout/xul", + "content", + "xpcom", + "content/html", + "layout/style", + "gfx", + "layout", + "layout/base", + "layout/reftests" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "6e008e161a0fed680d40e4f811254f51ece7b7bf", + "author": "Shawn Wilsher ", + "bug_id": 474749, + "desc": "Backed out changeset 690209fc5b6b (bug 474749) due to unit test failures.", + "pushdate": "2009-02-22 06:44:40", + "backsout": [ + "690209fc5b6b" + ], + "backedoutby": "", + "author_email": "me@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 7464381.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "media/liboggplay/src/liboggplay/oggplay_yuv2rgb.c", + "media/liboggplay/update.sh", + "media/liboggplay/yuv_fix_mmx.patch" + ], + "components": [], + "directories": [ + "media", + "media/liboggplay" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "0e56b82242f20ff27016b2816acf79363ce9190e", + "author": "Shawn Wilsher ", + "bug_id": 479543, + "desc": "Backed out changeset f8926cd4a7b2 (bug 479543) since it breaks unit tests in\ndebug builds.", + "pushdate": "2009-02-23 22:35:40", + "backsout": [ + "f8926cd4a7b2" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 22834109.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "storage/src/mozStorageConnection.cpp" + ], + "components": [], + "directories": [ + "storage/src", + "storage" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "87097563da9eb475bae4354e8b4953530d70ab25", + "author": "L. David Baron ", + "bug_id": 476245, + "desc": "Backed out changeset a328b5ae57e0 (bug 476245) for causing failures of test_videocontrols.html across platforms (although Linux hasn't cycled yet).", + "pushdate": "2009-02-24 21:39:20", + "backsout": [ + "a328b5ae57e0" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 24720081.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/base/public/nsIContent.h", + "content/base/public/nsINode.h", + "content/base/src/nsGenericDOMDataNode.cpp", + "content/base/src/nsGenericElement.cpp", + "content/xbl/src/nsXBLBinding.cpp", + "layout/base/nsCSSFrameConstructor.cpp" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "content/base", + "content", + "content/xbl", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "596366a3c3413b7b303f75f0beb8e2ebb36ca3a9", + "author": "Jonas Sicking ", + "bug_id": 479521, + "desc": "Backed out changeset 4130ff1e52f3 (bug 479521) due to test failures.", + "pushdate": "2009-02-24 23:38:22", + "backsout": [ + "4130ff1e52f3" + ], + "backedoutby": "", + "author_email": "jonas@sicking.cc", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 17628917.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "build/automation.py.in", + "content/base/src/nsCrossSiteListenerProxy.cpp", + "content/base/src/nsCrossSiteListenerProxy.h", + "content/base/src/nsXMLHttpRequest.cpp", + "content/base/test/file_CrossSiteXHR_server.sjs", + "content/base/test/test_CrossSiteXHR.html", + "modules/libpref/src/init/all.js", + "netwerk/protocol/http/src/nsHttpChannel.cpp", + "netwerk/protocol/http/src/nsHttpHandler.cpp", + "netwerk/protocol/http/src/nsHttpHandler.h" + ], + "components": [], + "directories": [ + "modules/libpref", + "netwerk/protocol", + "netwerk", + "build", + "content/base", + "content", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "34ee950622aa5c2f92b3143421fee9eef6952c5a", + "author": "Andreas Gal ", + "bug_id": 24968, + "desc": "Back out a2b6a4c57a05 (bug 24968). Cross-platform orange.", + "pushdate": "2009-02-25 09:05:38", + "backsout": [ + "a2b6a4c57a05" + ], + "backedoutby": "", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 20553260.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jstracer.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "939103e7a4abcecf6035ba8ff205410c958e4ec1", + "author": "Dave Camp ", + "bug_id": 479393, + "desc": "Backed out changeset 209a7cc3150e (Bug 479393)", + "pushdate": "2009-02-26 05:51:42", + "backsout": [ + "209a7cc3150e" + ], + "backedoutby": "", + "author_email": "dcamp@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 21180440.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "security/manager/ssl/src/nsNSSComponent.cpp" + ], + "components": [], + "directories": [ + "security/manager", + "security" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "c395bb2cf30ab1144bc0e41da4e3accd44209589", + "author": "Johnathan Nightingale ", + "bug_id": 479499, + "desc": "Backed out changeset fdbe218cdcc7 - Causing crashtest hangs on linux. Tracked by bug 479499.", + "pushdate": "2009-03-03 14:47:16", + "backsout": [ + "fdbe218cdcc7" + ], + "backedoutby": "", + "author_email": "johnath@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 16886130.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "parser/htmlparser/tests/crashtests/crashtests.list" + ], + "components": [ + "Core::XML" + ], + "directories": [ + "parser/htmlparser", + "parser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "f8b100b574f316c48f77427708315ac7921e00a4", + "author": "Igor Bukanov ", + "bug_id": 480700, + "desc": "Backed out changeset 5befb6301e9b for bug 480700 - the patch broke 32-bit linux build.", + "pushdate": "2009-03-09 18:47:08", + "backsout": [ + "5befb6301e9b" + ], + "backedoutby": "", + "author_email": "igor@mir2.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 22799529.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsbit.h", + "js/src/jslog2.cpp", + "js/src/jsprvtd.h", + "js/src/jstypes.h", + "js/src/jsutil.cpp" + ], + "components": [ + "Core::JavaScript Engine" + ], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "14bc4dbf10cb18b41e6a7e2f79039e6cd0eb71ea", + "author": "Joe Drew ", + "bug_id": 480267, + "desc": "Backed out changeset 635b1c8783a6 - bug 480267 - because it seems to have\ncaused a reftest failure.", + "pushdate": "2009-03-10 16:26:18", + "backsout": [ + "635b1c8783a6" + ], + "backedoutby": "", + "author_email": "joe@drew.ca", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 17568506.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "gfx/thebes/public/gfxFontUtils.h", + "gfx/thebes/src/gfxFontUtils.cpp", + "gfx/thebes/src/gfxQuartzFontCache.mm", + "gfx/thebes/src/gfxWindowsFonts.cpp", + "layout/reftests/font-face/reftest.list", + "layout/reftests/font-face/synthetic-weight-style-ref.html", + "layout/reftests/font-face/synthetic-weight-style.html" + ], + "components": [ + "Core::CSS Parsing and Computation" + ], + "directories": [ + "layout/reftests", + "gfx/thebes", + "gfx", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "44cd744842422ca215443df7c86c7490686773ef", + "author": "Karl Tomlinson ", + "bug_id": 481881, + "desc": "backout dac7c3176b33 from bug 481881", + "pushdate": "2009-03-11 04:09:25", + "backsout": [ + "dac7c3176b33" + ], + "backedoutby": "", + "author_email": "karlt+@karlt.net", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 21344141.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/generic/nsFrame.cpp", + "layout/generic/nsTextFrameThebes.cpp", + "layout/inspector/src/inDeepTreeWalker.cpp", + "layout/inspector/src/inDeepTreeWalker.h", + "layout/tables/nsCellMap.cpp", + "layout/tables/nsCellMap.h", + "layout/tables/nsTableFrame.cpp" + ], + "components": [ + "Core::Layout: Tables" + ], + "directories": [ + "layout/inspector", + "layout/generic", + "layout/tables", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "ad96e3d1ab56c30857baab534d1b353d121dc61f", + "author": "Ehsan Akhgari ", + "bug_id": 463256, + "desc": "Backed out changeset 113bda3be8df (bug 463256) due to test failures on Mac", + "pushdate": "2009-03-12 10:10:39", + "backsout": [ + "113bda3be8df" + ], + "backedoutby": "", + "author_email": "ehsan.akhgari@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 21044305.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/components/privatebrowsing/src/nsPrivateBrowsingService.js", + "browser/components/privatebrowsing/test/browser/Makefile.in", + "browser/components/privatebrowsing/test/browser/browser_privatebrowsing_sslsite_transition.js", + "toolkit/components/downloads/test/unit/test_privatebrowsing.js" + ], + "components": [], + "directories": [ + "toolkit/components", + "browser/components", + "toolkit", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "73379b9ca6ce67e1c061de3b7f450f3f613f2915", + "author": "Ehsan Akhgari ", + "bug_id": 464800, + "desc": "Backed out changeset 69322c1764ff (bug 464800) due to test failures on Mac", + "pushdate": "2009-03-12 10:10:39", + "backsout": [ + "69322c1764ff" + ], + "backedoutby": "", + "author_email": "ehsan.akhgari@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 21044305.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/mozapps/downloads/content/downloads.js", + "toolkit/mozapps/downloads/tests/chrome/Makefile.in", + "toolkit/mozapps/downloads/tests/chrome/test_privatebrowsing_title.xul" + ], + "components": [], + "directories": [ + "toolkit/mozapps", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "fbd0299ee9becb64574199c7c2ba727bf1a0055f", + "author": "Graydon Hoare ", + "bug_id": 482800, + "desc": "Backout changeset 5e0cc374593c for bug 482800.", + "pushdate": "2009-03-13 01:56:58", + "backsout": [ + "5e0cc374593c" + ], + "backedoutby": "", + "author_email": "graydon@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 21285817.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jstracer.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "6ed065a2a0d82c1ecf4d7e15b8fbbca18075bb0d", + "author": "Igor Bukanov ", + "bug_id": 437325, + "desc": "Backed out changeset 57de81309176 - bug 437325 - due to mochitest leaks on tinderbox", + "pushdate": "2009-03-13 20:34:49", + "backsout": [ + "57de81309176" + ], + "backedoutby": "", + "author_email": "igor@mir2.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 23151590.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsapi.cpp", + "js/src/jscntxt.cpp", + "js/src/jscntxt.h", + "js/src/jsdbgapi.cpp", + "js/src/jsfun.cpp", + "js/src/jsgc.cpp", + "js/src/jsgc.h", + "js/src/jsinterp.cpp", + "js/src/jsinterp.h", + "js/src/jsprvtd.h", + "js/src/jsscript.cpp", + "js/src/jstracer.cpp", + "js/src/jstracer.h", + "js/src/xpconnect/src/xpcjsruntime.cpp" + ], + "components": [ + "Core::JavaScript Engine" + ], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "96fb69f98cc2c3ad734d89428918adfcf945a885", + "author": "Andreas Gal ", + "bug_id": 457065, + "desc": "Backed out changeset 10b781704400 (bug 457065).", + "pushdate": "2009-03-16 22:50:44", + "backsout": [ + "10b781704400" + ], + "backedoutby": "", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 22244366.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jstracer.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "33c68c49af9dc25355f3855452fc043c2c84b4d2", + "author": "Dave Townsend ", + "bug_id": 482659, + "desc": "Backed out changeset 55d159b75f41 from bug 482659.", + "pushdate": "2009-03-17 11:09:29", + "backsout": [ + "55d159b75f41" + ], + "backedoutby": "", + "author_email": "dtownsend@oxymoronical.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 24798327.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/base/src/nsFrameLoader.cpp", + "content/html/document/test/Makefile.in", + "content/html/document/test/test_bug482659.html", + "layout/reftests/bugs/482659-1-ref.html", + "layout/reftests/bugs/482659-1a.html", + "layout/reftests/bugs/482659-1b.html", + "layout/reftests/bugs/482659-1c.html", + "layout/reftests/bugs/482659-1d.html", + "layout/reftests/bugs/reftest.list", + "netwerk/build/nsNetCID.h", + "netwerk/build/nsNetModule.cpp", + "netwerk/protocol/about/src/nsAboutProtocolHandler.cpp", + "netwerk/protocol/about/src/nsAboutProtocolHandler.h", + "netwerk/test/unit/test_aboutblank.js" + ], + "components": [ + "Core::Layout", + "Core::Networking" + ], + "directories": [ + "netwerk/protocol", + "netwerk", + "netwerk/test", + "netwerk/build", + "content/base", + "content", + "content/html", + "layout", + "layout/reftests" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "830772ae7bf41b96b9ad77c2ce55215d2f1d93cf", + "author": "Andreas Gal ", + "bug_id": 479110, + "desc": "Backed out changeset e71cb3993380 (bug 479110).", + "pushdate": "2009-03-18 06:58:56", + "backsout": [ + "e71cb3993380" + ], + "backedoutby": "", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 22360058.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jstracer.cpp", + "js/src/jstracer.h", + "js/src/math-trace-tests.js" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "0424abce8965b1c95c1a6ff6a893bf21b43d6253", + "author": "Gavin Sharp ", + "bug_id": 483634, + "desc": "Back out changeset 699fc684188c from bug 483634 due to unit test failures", + "pushdate": "2009-03-19 04:56:56", + "backsout": [ + "699fc684188c" + ], + "backedoutby": "", + "author_email": "gavin@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 23859563.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "dom/base/nsDOMWindowUtils.cpp", + "dom/interfaces/base/nsIDOMWindowUtils.idl", + "dom/tests/mochitest/general/Makefile.in", + "dom/tests/mochitest/general/test_domWindowUtils_scrollXY.html" + ], + "components": [ + "Core::DOM: Core & HTML" + ], + "directories": [ + "dom", + "dom/interfaces", + "dom/tests", + "dom/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "100e73c6c9e8b3315fb8b9eaec85dbb9b8b3040a", + "author": "Peter Van der Beken ", + "bug_id": 484764, + "desc": "Backed out changeset 83944488fbe6 (Preparation for fix for bug 484764 (Set up DOM prototype chains from PostCreateProto instead of PostCreate)).", + "pushdate": "2009-03-24 13:47:26", + "backsout": [ + "83944488fbe6" + ], + "backedoutby": "", + "author_email": "peterv@propagandism.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 23838273.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "dom/base/nsDOMClassInfo.cpp", + "dom/base/nsDOMClassInfo.h" + ], + "components": [], + "directories": [ + "dom", + "dom/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "124a3d626d1e059fc0c13ff7549df8e2a69e6b34", + "author": "Igor Bukanov ", + "bug_id": 437325, + "desc": "Backed out changeset e117c22cc1d1 - the landed patch for bug 437325 has a shutdown leak.", + "pushdate": "2009-03-24 17:50:03", + "backsout": [ + "e117c22cc1d1" + ], + "backedoutby": "", + "author_email": "igor@mir2.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 24092104.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsapi.cpp", + "js/src/jscntxt.cpp", + "js/src/jscntxt.h", + "js/src/jsdbgapi.cpp", + "js/src/jsfun.cpp", + "js/src/jsgc.cpp", + "js/src/jsgc.h", + "js/src/jsinterp.cpp", + "js/src/jsinterp.h", + "js/src/jsprvtd.h", + "js/src/jsscript.cpp", + "js/src/jstracer.cpp", + "js/src/jstracer.h", + "js/src/xpconnect/src/xpcjsruntime.cpp" + ], + "components": [ + "Core::JavaScript Engine" + ], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "a43288e59420590e1df46280dace88f4db30dbbe", + "author": "Dave Townsend ", + "bug_id": 484764, + "desc": "Backed out changeset 94673272aeab from bug 484764: Set up DOM prototype chain\nfrom nsDOMClassInfo::PostCreateProto.", + "pushdate": "2009-03-26 14:54:57", + "backsout": [ + "94673272aeab" + ], + "backedoutby": "", + "author_email": "dtownsend@oxymoronical.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 25589455.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "dom/base/nsDOMClassInfo.cpp", + "dom/base/nsDOMClassInfo.h" + ], + "components": [], + "directories": [ + "dom", + "dom/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "cc7213e51266945396c0f03f6bdff7e804e087b6", + "author": "Shawn Wilsher ", + "bug_id": 483980, + "desc": "Backed out changeset 2d1f7c7c7a2b (bug 483980)", + "pushdate": "2009-03-27 22:34:53", + "backsout": [ + "2d1f7c7c7a2b" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 25598862.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/components/places/src/nsNavBookmarks.cpp", + "toolkit/components/places/src/nsNavBookmarks.h", + "toolkit/components/places/src/nsNavHistory.cpp", + "toolkit/components/places/src/nsNavHistory.h", + "toolkit/components/places/src/nsNavHistoryExpire.cpp", + "toolkit/components/places/src/nsPlacesDBFlush.js", + "toolkit/components/places/src/nsPlacesMacros.h", + "toolkit/components/places/tests/unit/nsDummyObserver.js", + "toolkit/components/places/tests/unit/test_bookmark_catobs.js", + "toolkit/components/places/tests/unit/test_history_catobs.js" + ], + "components": [], + "directories": [ + "toolkit/components", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "711c24ec63bd94e0c7d1c7993cc341ab60ec5b7e", + "author": "Igor Bukanov ", + "bug_id": 485178, + "desc": "Backed out changeset 0b36bddcefe4 for bug 485178 to fix compiletaion errors on some platforms.", + "pushdate": "2009-03-29 20:42:33", + "backsout": [ + "0b36bddcefe4" + ], + "backedoutby": "", + "author_email": "igor@mir2.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 24534454.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/shell/js.cpp" + ], + "components": [ + "Core::JavaScript Engine" + ], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "b39c0c0674fb5f8f3cab177d0f25dae8096fcde3", + "author": "Marco Bonardo ", + "bug_id": 427633, + "desc": "backout changeset 459c8e138144 \u2013 test for Bug 427633, due to failures on OS X", + "pushdate": "2009-03-30 22:59:52", + "backsout": [ + "459c8e138144" + ], + "backedoutby": "", + "author_email": "mbonardo@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 4702237.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/components/places/tests/chrome/Makefile.in", + "browser/components/places/tests/chrome/test_editBookmarkOverlay.xul" + ], + "components": [], + "directories": [ + "browser/components", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "70cd538fd48aa091def4ad7c5df003283988b487", + "author": "Benjamin Smedberg ", + "bug_id": 485390, + "desc": "Backed out changeset f66fabdbc090 (bug 485390) - the problem is not in utils.lockFile, and you shouldn't really need to hold the file descriptor", + "pushdate": "2009-03-31 14:39:36", + "backsout": [ + "f66fabdbc090" + ], + "backedoutby": "", + "author_email": "benjamin@smedbergs.us", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 32478612.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "config/utils.py" + ], + "components": [], + "directories": [ + "config" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "54dda9955a7fdc7f5dd468ce8ea06c3fa004f617", + "author": "L. David Baron ", + "bug_id": 395668, + "desc": "Backed out changeset 5263468b1d60 (bug 395668) due to unit test timeouts in test_tooltip.xul and test_tooltip_noautohide.xul", + "pushdate": "2009-04-02 18:06:14", + "backsout": [ + "5263468b1d60" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 27904095.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/xul/base/src/nsXULTooltipListener.cpp", + "layout/xul/base/src/nsXULTooltipListener.h" + ], + "components": [], + "directories": [ + "layout/xul", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "b025b0c6e3806754edac056176b8132b80b37c08", + "author": "Joe Drew ", + "bug_id": 481926, + "desc": "Backed out changeset 6f3c2171bbb2:\nBug 481926 - Rewrite color management component. r=joe,ted sr=vlad", + "pushdate": "2009-04-03 20:29:59", + "backsout": [ + "6f3c2171bbb2" + ], + "backedoutby": "", + "author_email": "joe@drew.ca", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 19656727.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "config/autoconf.mk.in", + "config/static-config.mk", + "configure.in", + "content/canvas/src/Makefile.in", + "gfx/Makefile.in", + "gfx/qcms/Makefile.in", + "gfx/qcms/iccread.c", + "gfx/qcms/qcms.h", + "gfx/qcms/qcmsint.h", + "gfx/qcms/qcmstypes.h", + "gfx/qcms/transform.c", + "gfx/src/thebes/Makefile.in", + "gfx/thebes/public/gfxPlatform.h", + "gfx/thebes/public/gfxPlatformGtk.h", + "gfx/thebes/public/gfxPlatformMac.h", + "gfx/thebes/public/gfxQtPlatform.h", + "gfx/thebes/public/gfxWindowsPlatform.h", + "gfx/thebes/src/Makefile.in", + "gfx/thebes/src/gfxContext.cpp", + "gfx/thebes/src/gfxPattern.cpp", + "gfx/thebes/src/gfxPlatform.cpp", + "gfx/thebes/src/gfxPlatformGtk.cpp", + "gfx/thebes/src/gfxPlatformMac.cpp", + "gfx/thebes/src/gfxQtPlatform.cpp", + "gfx/thebes/src/gfxWindowsPlatform.cpp", + "gfx/thebes/test/Makefile.in", + "layout/base/Makefile.in", + "layout/mathml/Makefile.in", + "layout/svg/base/src/Makefile.in", + "modules/libpr0n/build/Makefile.in", + "modules/libpr0n/decoders/gif/Makefile.in", + "modules/libpr0n/decoders/gif/nsGIFDecoder2.cpp", + "modules/libpr0n/decoders/jpeg/Makefile.in", + "modules/libpr0n/decoders/jpeg/nsJPEGDecoder.cpp", + "modules/libpr0n/decoders/jpeg/nsJPEGDecoder.h", + "modules/libpr0n/decoders/png/Makefile.in", + "modules/libpr0n/decoders/png/nsPNGDecoder.cpp", + "modules/libpr0n/decoders/png/nsPNGDecoder.h", + "modules/libpr0n/test/reftest/pngsuite-ancillary/ccwn2c08.html", + "modules/libpr0n/test/reftest/pngsuite-ancillary/ccwn3p08.html", + "toolkit/library/libxul-rules.mk", + "toolkit/toolkit-makefiles.sh", + "toolkit/toolkit-tiers.mk", + "widget/src/build/Makefile.in", + "widget/src/cocoa/Makefile.in", + "widget/src/cocoa/nsCocoaWindow.mm", + "widget/src/gtk2/Makefile.in", + "widget/src/os2/Makefile.in", + "widget/src/qt/Makefile.in", + "widget/src/windows/Makefile.in", + "widget/src/xpwidgets/Makefile.in", + "widget/src/xpwidgets/nsXPLookAndFeel.cpp" + ], + "components": [ + "Core::Graphics", + "Firefox Build System::General" + ], + "directories": [ + "content/canvas", + "widget", + "toolkit", + "modules/libpr0n", + "config", + "gfx/thebes", + "layout/mathml", + "layout/svg", + "gfx/qcms", + "content", + "widget/src", + "toolkit/library", + "gfx/src", + "gfx", + "layout", + "layout/base", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "a55a5e3c4276ff60142187e0e6c230032323337c", + "author": "Andreas Gal ", + "bug_id": 484693, + "desc": "Backed out changeset b512be855093 (bug 484693). See bug for details.", + "pushdate": "2009-04-06 01:25:14", + "backsout": [ + "b512be855093" + ], + "backedoutby": "", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 23981636.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jscntxt.h", + "js/src/jstracer.cpp", + "js/src/jstracer.h" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "6eca563de031cb584b8a86fdd74238c3357fd198", + "author": "Jason Orendorff ", + "bug_id": 484693, + "desc": "Backout changeset 143e997c858e (bug 484693) because it caused crashes on Mac tinderboxen.", + "pushdate": "2009-04-08 04:43:16", + "backsout": [ + "143e997c858e" + ], + "backedoutby": "", + "author_email": "jorendorff@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 27070325.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jscntxt.h", + "js/src/jstracer.cpp", + "js/src/jstracer.h", + "js/src/trace-test.js" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "3c7cd3a8f785ec9a09fb4b5244f1c095f26c6fc1", + "author": "Boris Zbarsky ", + "bug_id": 484448, + "desc": "Backed out changeset 0ea22856b5d9 (bug 484448).", + "pushdate": "2009-04-08 19:58:02", + "backsout": [ + "0ea22856b5d9" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 23665990.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/base/src/nsGenericDOMDataNode.cpp", + "content/base/src/nsGenericDOMDataNode.h", + "layout/base/nsCSSFrameConstructor.cpp", + "layout/base/nsCSSFrameConstructor.h", + "layout/generic/nsTextFrameThebes.cpp", + "layout/mathml/nsMathMLmtableFrame.h", + "layout/reftests/table-anonymous-boxes/3-blocks-ref.html", + "layout/reftests/table-anonymous-boxes/3-tables-ref.html", + "layout/reftests/table-anonymous-boxes/372641-1-ref.xhtml", + "layout/reftests/table-anonymous-boxes/372641-1a.xhtml", + "layout/reftests/table-anonymous-boxes/372641-1b.xhtml", + "layout/reftests/table-anonymous-boxes/372641-1c.xhtml", + "layout/reftests/table-anonymous-boxes/3x3-cols-ref.html", + "layout/reftests/table-anonymous-boxes/3x3-ref.html", + "layout/reftests/table-anonymous-boxes/dynamic-removal-14.html", + "layout/reftests/table-anonymous-boxes/infer-cells-1.html", + "layout/reftests/table-anonymous-boxes/reftest.list", + "layout/reftests/table-anonymous-boxes/white-space-1-ref.html", + "layout/reftests/table-anonymous-boxes/white-space-1.html", + "layout/reftests/table-anonymous-boxes/white-space-10.html", + "layout/reftests/table-anonymous-boxes/white-space-11.html", + "layout/reftests/table-anonymous-boxes/white-space-12.html", + "layout/reftests/table-anonymous-boxes/white-space-13.html", + "layout/reftests/table-anonymous-boxes/white-space-14.html", + "layout/reftests/table-anonymous-boxes/white-space-15.html", + "layout/reftests/table-anonymous-boxes/white-space-16.html", + "layout/reftests/table-anonymous-boxes/white-space-17.html", + "layout/reftests/table-anonymous-boxes/white-space-18.html", + "layout/reftests/table-anonymous-boxes/white-space-19.html", + "layout/reftests/table-anonymous-boxes/white-space-2.html", + "layout/reftests/table-anonymous-boxes/white-space-20.html", + "layout/reftests/table-anonymous-boxes/white-space-21.html", + "layout/reftests/table-anonymous-boxes/white-space-22.html", + "layout/reftests/table-anonymous-boxes/white-space-23.html", + "layout/reftests/table-anonymous-boxes/white-space-24.html", + "layout/reftests/table-anonymous-boxes/white-space-25.html", + "layout/reftests/table-anonymous-boxes/white-space-26.html", + "layout/reftests/table-anonymous-boxes/white-space-3.html", + "layout/reftests/table-anonymous-boxes/white-space-4.html", + "layout/reftests/table-anonymous-boxes/white-space-5.html", + "layout/reftests/table-anonymous-boxes/white-space-6.html", + "layout/reftests/table-anonymous-boxes/white-space-7.html", + "layout/reftests/table-anonymous-boxes/white-space-8.html", + "layout/reftests/table-anonymous-boxes/white-space-9.html", + "layout/reftests/table-anonymous-boxes/white-space-pre-1.html", + "layout/reftests/table-anonymous-boxes/white-space-pre-ref.html", + "layout/reftests/table-anonymous-boxes/white-space-ref.html", + "layout/tables/nsTableColFrame.h", + "layout/tables/nsTableColGroupFrame.h", + "layout/tables/nsTableFrame.h", + "layout/tables/nsTableOuterFrame.h", + "layout/tables/nsTableRowFrame.h", + "layout/tables/nsTableRowGroupFrame.h" + ], + "components": [ + "Core::Layout", + "Core::Layout: Tables", + "Core::MathML" + ], + "directories": [ + "layout/generic", + "layout/tables", + "layout/mathml", + "content/base", + "content", + "layout/reftests", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "f12b13dbd0530765cb71c97e5c80a1da2af14038", + "author": "Boris Zbarsky ", + "bug_id": 483552, + "desc": "Backed out changeset 510bd328a29d (bug 483552) due to landing on orange tree.", + "pushdate": "2009-04-09 16:04:18", + "backsout": [ + "510bd328a29d" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 23738366.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/content/widgets/scrollbox.xml" + ], + "components": [], + "directories": [ + "toolkit/content", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "781e16e5112d9d75ea5c5045c35d27ed20c462ba", + "author": "Boris Zbarsky ", + "bug_id": 486933, + "desc": "Backed out changeset 86c8e18f20eb (bug 486933) due to landing on orange tree.", + "pushdate": "2009-04-09 16:04:18", + "backsout": [ + "86c8e18f20eb" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 23738366.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/base/nsCSSRendering.cpp", + "layout/base/nsCSSRendering.h", + "layout/base/nsLayoutUtils.cpp", + "layout/reftests/image/reftest.list" + ], + "components": [ + "Core::Layout", + "Core::Layout: Images, Video, and HTML Frames" + ], + "directories": [ + "layout/reftests", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "a3185147886829944da575f05300b2f5599db234", + "author": "Boris Zbarsky ", + "bug_id": 485563, + "desc": "Backed out changeset 0233d2bb8a07 (bug 485563) on suspicion of causing intermittent leak orange.", + "pushdate": "2009-04-09 16:04:18", + "backsout": [ + "0233d2bb8a07" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 23738366.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/components/sessionstore/src/nsSessionStore.js", + "browser/components/sessionstore/test/browser/Makefile.in", + "browser/components/sessionstore/test/browser/browser_485563.js" + ], + "components": [], + "directories": [ + "browser/components", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "2d6fa1ee649a41e608968c51ff46c2a002ef1d23", + "author": "Boris Zbarsky ", + "bug_id": 419612, + "desc": "Backed out changeset 17abd3beeabf (bug 419612) on suspicion of causing intermittent leak orange.", + "pushdate": "2009-04-09 16:04:18", + "backsout": [ + "17abd3beeabf" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 23738366.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/base/content/test/Makefile.in", + "browser/base/content/test/browser_bug419612.js" + ], + "components": [], + "directories": [ + "browser/base", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "1a29fad0c1bbab453c89bf79dec70018e96eff0a", + "author": "Boris Zbarsky ", + "bug_id": 481598, + "desc": "Backed out changeset b1237eca3670 (bug 481598) on suspicion of causing intermittent leak orange.", + "pushdate": "2009-04-09 16:04:18", + "backsout": [ + "b1237eca3670" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 23738366.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/components/privatebrowsing/src/nsPrivateBrowsingService.js" + ], + "components": [], + "directories": [ + "browser/components", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "fca91e13946daba978e4a7f5d394abbfac8aeec3", + "author": "Boris Zbarsky ", + "bug_id": 486821, + "desc": "Backed out changeset 716fc2e4f7d3 (bug 486821) on suspicion of causing intermittent leak orange.", + "pushdate": "2009-04-09 16:04:18", + "backsout": [ + "716fc2e4f7d3" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 23738366.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/content/widgets/autocomplete.xml", + "toolkit/content/widgets/richlistbox.xml" + ], + "components": [], + "directories": [ + "toolkit/content", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "686e89bbc76494c130f48b5fb11cbabd9b6c3ae4", + "author": "Boris Zbarsky ", + "bug_id": 473732, + "desc": "Backed out changeset 50940a1eb1e9 (bug 473732) because it causes Linux unit\ntest orange.", + "pushdate": "2009-04-09 18:48:24", + "backsout": [ + "50940a1eb1e9" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 23748212.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "accessible/src/base/nsARIAMap.cpp", + "accessible/src/base/nsARIAMap.h", + "accessible/src/base/nsAccUtils.cpp", + "accessible/src/base/nsAccessible.cpp", + "accessible/tests/mochitest/Makefile.in", + "accessible/tests/mochitest/test_actions_aria.html", + "accessible/tests/mochitest/test_actions_doc.html", + "accessible/tests/mochitest/test_nsIAccessibleDocument.html" + ], + "components": [ + "Core::Disability Access APIs" + ], + "directories": [ + "accessible/src", + "accessible", + "accessible/tests" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "c0542ed38b98aebddcfdc1ee39bbd6774cfeb04e", + "author": "Justin Dolske ", + "bug_id": 487719, + "desc": "Backed out changeset dde29bfff639 (bug 487719)", + "pushdate": "2009-04-13 08:30:54", + "backsout": [ + "dde29bfff639" + ], + "backedoutby": "", + "author_email": "dolske@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 25967098.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/content/widgets/videocontrols.xml" + ], + "components": [], + "directories": [ + "toolkit/content", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "86fdfc20dccb81d978f338c850e5a028aad4e850", + "author": "Justin Dolske ", + "bug_id": 475317, + "desc": "Backed out changeset dddef115ddd2 (bug 475317)", + "pushdate": "2009-04-13 08:30:54", + "backsout": [ + "dddef115ddd2" + ], + "backedoutby": "", + "author_email": "dolske@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 25967098.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/content/widgets/videocontrols.css", + "toolkit/content/widgets/videocontrols.xml", + "toolkit/themes/pinstripe/global/jar.mn", + "toolkit/themes/pinstripe/global/media/videocontrols.css", + "toolkit/themes/pinstripe/global/media/volumeThumb.png", + "toolkit/themes/winstripe/global/jar.mn", + "toolkit/themes/winstripe/global/media/videocontrols.css", + "toolkit/themes/winstripe/global/media/volumeThumb.png" + ], + "components": [], + "directories": [ + "toolkit/content", + "toolkit", + "toolkit/themes" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "f82e3ab11e63ed737b47fcdc7ec9369931e4cb10", + "author": "Justin Dolske ", + "bug_id": 475318, + "desc": "Backed out changeset 1e38c7369a3d (bug 475318)", + "pushdate": "2009-04-13 08:30:54", + "backsout": [ + "1e38c7369a3d" + ], + "backedoutby": "", + "author_email": "dolske@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 25967098.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/content/tests/widgets/test_videocontrols.html", + "toolkit/content/widgets/videocontrols.css", + "toolkit/content/widgets/videocontrols.xml", + "toolkit/themes/pinstripe/global/jar.mn", + "toolkit/themes/pinstripe/global/media/scrubberThumb.png", + "toolkit/themes/pinstripe/global/media/scrubberThumbWide.png", + "toolkit/themes/pinstripe/global/media/videocontrols.css", + "toolkit/themes/winstripe/global/jar.mn", + "toolkit/themes/winstripe/global/media/scrubberThumb.png", + "toolkit/themes/winstripe/global/media/scrubberThumbWide.png", + "toolkit/themes/winstripe/global/media/videocontrols.css" + ], + "components": [ + "Toolkit::Video/Audio Controls" + ], + "directories": [ + "toolkit/content", + "toolkit", + "toolkit/themes" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "e9a0a746f0fa37a354e71dc69d4810d49e736b1f", + "author": "Boris Zbarsky ", + "bug_id": 477014, + "desc": "Backed out changeset 524ab31ef073 (bug 477014) in an attempt to fix the unit test orange on Mac.", + "pushdate": "2009-04-13 19:35:35", + "backsout": [ + "524ab31ef073" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 24096643.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/base/content/tabbrowser.xml", + "browser/base/content/test/Makefile.in", + "browser/base/content/test/browser_bug477014.js", + "toolkit/content/widgets/browser.xml" + ], + "components": [], + "directories": [ + "browser/base", + "toolkit", + "browser", + "toolkit/content" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "d7567548bc8f4af71f62079afafb1e00f20c5405", + "author": "Boris Zbarsky ", + "bug_id": 487631, + "desc": "Backed out changeset 05fd6a9c8ff7 (bug 487631) on suspicion of causing Windows unit test orange in CLOSED TREE.", + "pushdate": "2009-04-13 21:50:07", + "backsout": [ + "05fd6a9c8ff7" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 24104715.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/content/tests/chrome/Makefile.in", + "toolkit/content/tests/chrome/window_largemenu.xul", + "toolkit/content/tests/widgets/Makefile.in", + "toolkit/content/tests/widgets/test_contextmenu_list.xul", + "toolkit/content/tests/widgets/test_popupincontent.xul" + ], + "components": [], + "directories": [ + "toolkit/content", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "1e9079e22c18aadb40ebe1eba26c2cbf531bcfc2", + "author": "Andreas Gal ", + "bug_id": 487845, + "desc": "Backed out changeset 4c157cfe2289 (bug 487845).", + "pushdate": "2009-04-15 21:40:40", + "backsout": [ + "4c157cfe2289" + ], + "backedoutby": "", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 24832162.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jscntxt.h", + "js/src/jstracer.cpp", + "js/src/jstracer.h", + "js/src/trace-test.js" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "c221393049dcc32dfa4a15f763372da262a6f888", + "author": "Igor Bukanov ", + "bug_id": 480301, + "desc": "Backed out changeset f97f196dcb58 - bug 480301 needs more work", + "pushdate": "2009-04-16 00:13:30", + "backsout": [ + "f97f196dcb58" + ], + "backedoutby": "", + "author_email": "igor@mir2.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 26015911.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsapi.cpp", + "js/src/jsgc.cpp", + "js/src/jslock.cpp" + ], + "components": [ + "Core::JavaScript Engine" + ], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "64d7df1fe160a1e8f595e1d936c179699eba21ce", + "author": "Andreas Gal ", + "bug_id": 488203, + "desc": "Backed out changeset e8c23c42db7f (bug 488203) to see whether it causes the leak.", + "pushdate": "2009-04-18 15:37:12", + "backsout": [ + "e8c23c42db7f" + ], + "backedoutby": "062ea62f9bda22be55d94c71dc98e780d91342e6", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 25069554.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsinterp.cpp", + "js/src/jsinterp.h", + "js/src/jstracer.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "062ea62f9bda22be55d94c71dc98e780d91342e6", + "author": "Andreas Gal ", + "bug_id": 488203, + "desc": "Backed out changeset 64d7df1fe160 (re-landing 488203).", + "pushdate": "2009-04-18 15:37:12", + "backsout": [ + "64d7df1fe160" + ], + "backedoutby": "4273c0708552544e8a0317e84c02e515b0a02476", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 25069554.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsinterp.cpp", + "js/src/jsinterp.h", + "js/src/jstracer.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "4273c0708552544e8a0317e84c02e515b0a02476", + "author": "Andreas Gal ", + "bug_id": 488203, + "desc": "Backed out changeset 062ea62f9bda (backed out bug 488203 again).", + "pushdate": "2009-04-18 15:37:12", + "backsout": [ + "062ea62f9bda" + ], + "backedoutby": "", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 25069554.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsinterp.cpp", + "js/src/jsinterp.h", + "js/src/jstracer.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "5bd1161481752fa00ec6154dddf36fa239dd0dcc", + "author": "Andreas Gal ", + "bug_id": 487204, + "desc": "Backed out changeset d1a4ee3d0c59 (bug 487204, due to possible leak).", + "pushdate": "2009-04-18 15:37:12", + "backsout": [ + "d1a4ee3d0c59" + ], + "backedoutby": "324bb9dc8372bc9353711fffa97ecaa9c61eef31", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 25069554.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsarray.cpp", + "js/src/jsbuiltins.cpp", + "js/src/jsinterp.cpp", + "js/src/jsinterp.h", + "js/src/jsobj.cpp", + "js/src/jsobj.h", + "js/src/jsscope.cpp", + "js/src/jsscope.h", + "js/src/jstracer.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "324bb9dc8372bc9353711fffa97ecaa9c61eef31", + "author": "Andreas Gal ", + "bug_id": 487204, + "desc": "Backed out changeset 5bd116148175 (attempting to re-land bug 487204).", + "pushdate": "2009-04-18 15:37:12", + "backsout": [ + "5bd116148175" + ], + "backedoutby": "9c63c15b92b5b606f14fc7b07f51d9edf91cd6bd", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 25069554.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsarray.cpp", + "js/src/jsbuiltins.cpp", + "js/src/jsinterp.cpp", + "js/src/jsinterp.h", + "js/src/jsobj.cpp", + "js/src/jsobj.h", + "js/src/jsscope.cpp", + "js/src/jsscope.h", + "js/src/jstracer.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "9c63c15b92b5b606f14fc7b07f51d9edf91cd6bd", + "author": "Andreas Gal ", + "bug_id": 487204, + "desc": "Backed out changeset 324bb9dc8372 (bug 487204 is implicated in top site failures).", + "pushdate": "2009-04-18 15:37:12", + "backsout": [ + "324bb9dc8372" + ], + "backedoutby": "", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 25069554.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsarray.cpp", + "js/src/jsbuiltins.cpp", + "js/src/jsinterp.cpp", + "js/src/jsinterp.h", + "js/src/jsobj.cpp", + "js/src/jsobj.h", + "js/src/jsscope.cpp", + "js/src/jsscope.h", + "js/src/jstracer.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "c0a409243f7b5262a069d05a91a70f160c4e55c8", + "author": "Igor Bukanov ", + "bug_id": 488414, + "desc": "Backed out changeset f4662701526b (bug 488414) to fix !JS_THREADSAFE compilation errors", + "pushdate": "2009-04-20 18:44:02", + "backsout": [ + "f4662701526b" + ], + "backedoutby": "", + "author_email": "igor@mir2.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 26428143.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsapi.cpp", + "js/src/jsbuiltins.cpp", + "js/src/jscntxt.cpp", + "js/src/jscntxt.h", + "js/src/jsgc.cpp", + "js/src/jsgc.h", + "js/src/jsinterp.cpp", + "js/src/jsinterp.h", + "js/src/jsobj.cpp", + "js/src/jsscope.cpp", + "js/src/jsscope.h" + ], + "components": [ + "Core::JavaScript Engine" + ], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "f58de2414f51ac92548b9b52e2ee85abc9b35456", + "author": "Joe Drew ", + "bug_id": 67752, + "desc": "Backed out changeset 6a452e522e07 - Boris Zbarsky \u2013 Bug 67752. Implement interruptible reflow. r=roc,dbaron - because of apparent Tp hangs.", + "pushdate": "2009-04-22 03:13:36", + "backsout": [ + "6a452e522e07" + ], + "backedoutby": "", + "author_email": "joe@drew.ca", + "reviewers": [ + "dbaron", + "roc" + ], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 21236144.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/base/public/mozFlushType.h", + "content/base/src/nsDocument.cpp", + "content/events/src/nsEventStateManager.cpp", + "content/html/content/src/nsGenericHTMLElement.cpp", + "content/html/document/src/nsHTMLContentSink.cpp", + "content/xml/document/src/nsXMLContentSink.cpp", + "layout/base/nsIPresShell.h", + "layout/base/nsPresContext.cpp", + "layout/base/nsPresContext.h", + "layout/base/nsPresShell.cpp", + "layout/generic/nsAbsoluteContainingBlock.cpp", + "layout/generic/nsAbsoluteContainingBlock.h", + "layout/generic/nsBlockFrame.cpp", + "layout/generic/nsBlockFrame.h", + "layout/generic/nsColumnSetFrame.cpp", + "layout/generic/nsGfxScrollFrame.cpp", + "layout/generic/nsLineLayout.cpp", + "layout/reftests/bugs/67752-1-ref.html", + "layout/reftests/bugs/67752-1.html", + "layout/reftests/bugs/67752-2-ref.html", + "layout/reftests/bugs/67752-2.html", + "layout/reftests/bugs/reftest.list", + "layout/svg/base/src/nsSVGForeignObjectFrame.cpp", + "widget/public/nsIWidget.h", + "widget/src/cocoa/nsAppShell.mm", + "widget/src/cocoa/nsChildView.h", + "widget/src/cocoa/nsChildView.mm", + "widget/src/cocoa/nsCocoaWindow.h", + "widget/src/cocoa/nsCocoaWindow.mm", + "widget/src/gtk2/nsWindow.cpp", + "widget/src/gtk2/nsWindow.h", + "widget/src/os2/nsWindow.cpp", + "widget/src/os2/nsWindow.h", + "widget/src/windows/nsWindow.cpp", + "widget/src/windows/nsWindow.h", + "widget/src/xpwidgets/nsBaseWidget.cpp", + "widget/src/xpwidgets/nsBaseWidget.h" + ], + "components": [ + "Core::Layout: Columns", + "Core::Layout: Block and Inline", + "Core::Layout", + "Core::Layout: Scrolling and Overflow", + "Core::Layout: Positioned" + ], + "directories": [ + "widget", + "layout/generic", + "layout/svg", + "content/base", + "content", + "widget/public", + "widget/src", + "content/html", + "content/xml", + "layout", + "layout/base", + "content/events", + "layout/reftests" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "1a1611bb10630cda771042ef8089b7b6060c3f55", + "author": "Ehsan Akhgari ", + "bug_id": 489585, + "desc": "Backed out changeset 88f76db49467 (bug 489585) due to test failures on OS X", + "pushdate": "2009-04-23 07:16:09", + "backsout": [ + "88f76db49467" + ], + "backedoutby": "", + "author_email": "ehsan.akhgari@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 24662635.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "netwerk/test/unit/test_bug248970_cache.js" + ], + "components": [ + "Core::Networking" + ], + "directories": [ + "netwerk/test", + "netwerk" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "a0e5385d86c43e251b192f74e88de4b35753172f", + "author": "D\u00e3o Gottwald ", + "bug_id": 487250, + "desc": "Backed out changeset 69f84bd26700 (bug 487250) to fix browser_privatebrowsing_searchbar.js failure", + "pushdate": "2009-04-23 09:48:27", + "backsout": [ + "69f84bd26700" + ], + "backedoutby": "", + "author_email": "dao@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 27286570.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/base/content/browser.css", + "browser/themes/pinstripe/browser/browser.css", + "browser/themes/pinstripe/browser/searchbar.css", + "toolkit/content/tests/widgets/test_textbox_emptytext.xul", + "toolkit/content/textbox.css", + "toolkit/content/widgets/textbox.xml", + "toolkit/themes/gnomestripe/global/textbox.css", + "toolkit/themes/pinstripe/global/textbox.css", + "toolkit/themes/winstripe/global/textbox-aero.css", + "toolkit/themes/winstripe/global/textbox.css" + ], + "components": [ + "Firefox::General" + ], + "directories": [ + "browser/base", + "toolkit/content", + "toolkit", + "browser/themes", + "browser", + "toolkit/themes" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "0cb354f894d1ca1c72edf04893250e2d2513021c", + "author": "Ehsan Akhgari ", + "bug_id": 490879, + "desc": "Backout revision 12536e9936b2 (bug 490879) because of unknown potential problems for Thunderbird 3.next", + "pushdate": "2009-05-03 18:02:56", + "backsout": [ + "12536e9936b2" + ], + "backedoutby": "", + "author_email": "ehsan.akhgari@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 25565442.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "editor/libeditor/html/nsHTMLDataTransfer.cpp", + "editor/libeditor/html/tests/Makefile.in", + "editor/libeditor/html/tests/green.png", + "editor/libeditor/html/tests/test_bug490879.xul" + ], + "components": [], + "directories": [ + "editor/libeditor", + "editor" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "38512deaca7e5ca4fcd39ca9c60f2640fa3ad773", + "author": "Andreas Gal ", + "bug_id": 491013, + "desc": "Backed out changeset 6534f8b9aa74 (bug 491013, assert on startup).", + "pushdate": "2009-05-05 18:41:02", + "backsout": [ + "6534f8b9aa74" + ], + "backedoutby": "", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 26549384.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsapi.cpp", + "js/src/jsfun.cpp", + "js/src/jsfun.h", + "js/src/jsinterp.cpp", + "js/src/jsobj.cpp", + "js/src/jsobj.h", + "js/src/jsproto.tbl", + "js/src/jsregexp.cpp", + "js/src/jsregexp.h", + "js/src/jsscope.cpp", + "js/src/jsscript.cpp", + "js/src/jsxdrapi.h", + "js/src/jsxml.cpp", + "js/src/jsxml.h" + ], + "components": [ + "Core::JavaScript Engine" + ], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "f2151b06463e21d8546b27ffaf382a68c6314251", + "author": "Josh Aas ", + "bug_id": 491834, + "desc": "Backed out changeset 7df4317278f5, bug 491834.", + "pushdate": "2009-05-07 13:25:33", + "backsout": [ + "7df4317278f5" + ], + "backedoutby": "", + "author_email": "joshmoz@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 27162294.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "modules/plugin/base/src/nsPluginDirServiceProvider.cpp", + "modules/plugin/base/src/nsPluginHostImpl.cpp", + "modules/plugin/base/src/nsPluginHostImpl.h" + ], + "components": [], + "directories": [ + "modules/plugin", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "d525ab89ac0229543a0c14d0cfe1bd1ead465090", + "author": "Josh Aas ", + "bug_id": 480080, + "desc": "Backed out changeset 9f9b05760fff, bug 480080, to see if it fixes orange", + "pushdate": "2009-05-08 17:43:16", + "backsout": [ + "9f9b05760fff" + ], + "backedoutby": "", + "author_email": "joshmoz@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 27264157.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/components/viewsource/content/viewSource.js" + ], + "components": [], + "directories": [ + "toolkit/components", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "c60c37d487cae83cbcbb7db59b1b867d6eba27e2", + "author": "Shawn Wilsher ", + "bug_id": 490833, + "desc": "Backed out changeset b6f09258a505 (bug 490833).", + "pushdate": "2009-05-09 02:58:20", + "backsout": [ + "b6f09258a505" + ], + "backedoutby": "", + "author_email": "me@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 14017201.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "storage/public/mozIStorageStatement.idl", + "storage/src/mozStorageStatement.cpp", + "storage/src/mozStorageStatementParams.cpp", + "storage/test/unit/test_storage_statement.js" + ], + "components": [ + "Toolkit::Storage" + ], + "directories": [ + "storage/src", + "storage", + "storage/test", + "storage/public" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "88df6943633f8f75d3df5460ae720d860f4307a1", + "author": "Steven Michaud ", + "bug_id": 489864, + "desc": "Backed out changeset add33a95e3ef to fix talos crashes. b=489864", + "pushdate": "2009-05-11 20:41:08", + "backsout": [ + "add33a95e3ef" + ], + "backedoutby": "", + "author_email": "smichaud@pobox.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 27487690.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "docshell/build/nsDocShellModule.cpp", + "modules/libpr0n/decoders/icon/mac/nsIconChannelCocoa.mm", + "netwerk/mime/public/nsIMIMEInfo.idl", + "uriloader/exthandler/Makefile.in", + "uriloader/exthandler/mac/nsInternetConfig.h", + "uriloader/exthandler/mac/nsInternetConfig.mm", + "uriloader/exthandler/mac/nsInternetConfigService.h", + "uriloader/exthandler/mac/nsInternetConfigService.mm", + "uriloader/exthandler/mac/nsMIMEInfoMac.mm", + "uriloader/exthandler/mac/nsOSHelperAppService.h", + "uriloader/exthandler/mac/nsOSHelperAppService.mm", + "uriloader/exthandler/nsExternalHelperAppService.cpp", + "uriloader/exthandler/nsIInternetConfigService.idl", + "uriloader/exthandler/nsMIMEInfoImpl.cpp", + "uriloader/exthandler/nsMIMEInfoImpl.h", + "widget/src/cocoa/nsLookAndFeel.mm" + ], + "components": [ + "Firefox::File Handling", + "Core::DOM: Navigation" + ], + "directories": [ + "widget", + "netwerk", + "modules/libpr0n", + "docshell", + "netwerk/mime", + "widget/src", + "uriloader", + "uriloader/exthandler", + "docshell/build", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "29692abf4c295b6018f546a3a68e6309bf57cafd", + "author": "Jonas Sicking ", + "bug_id": 492037, + "desc": "Backed out changeset 888aff8f57d2. Bug 492037", + "pushdate": "2009-05-13 00:05:00", + "backsout": [ + "888aff8f57d2" + ], + "backedoutby": "", + "author_email": "jonas@sicking.cc", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 24283315.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/xul/templates/src/crashtests/441785-1.xul", + "content/xul/templates/src/nsXULTreeBuilder.cpp" + ], + "components": [], + "directories": [ + "content/xul", + "content" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "9a308a1a5a9436005c74d7209fbe1e84dc836283", + "author": "Andreas Gal ", + "bug_id": 492664, + "desc": "Backed out changeset c8a74fe0f9af (bug 492664).", + "pushdate": "2009-05-13 03:21:33", + "backsout": [ + "c8a74fe0f9af" + ], + "backedoutby": "", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 27185415.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jstracer.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "3415a6e08696e5c501a8dc98e69cae825c33247d", + "author": "Peter Van der Beken ", + "bug_id": 492483, + "desc": "Backed out changeset 3e3d2d8cc70f (bug 492483 - fixing !JS_THREADSAFE build failure.) to try to fix Tshutdown regression.", + "pushdate": "2009-05-15 14:40:55", + "backsout": [ + "3e3d2d8cc70f" + ], + "backedoutby": "", + "author_email": "peterv@propagandism.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 28334282.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jscntxt.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "0f55d91d7724eccced6bc37570f08ec59c6c7ec0", + "author": "Peter Van der Beken ", + "bug_id": 490592, + "desc": "Backed out changeset 5e867032abe5 (Fix for bug 490592 (Possible to GC way too much during shutdown due to XUL and XBL prototypes).) to try to fix Tshutdown regression.", + "pushdate": "2009-05-15 14:40:55", + "backsout": [ + "5e867032abe5" + ], + "backedoutby": "", + "author_email": "peterv@propagandism.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 28334282.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/xbl/src/nsXBLDocumentInfo.cpp", + "content/xul/document/src/nsXULPrototypeDocument.cpp", + "dom/base/nsDOMScriptObjectFactory.cpp", + "js/src/xpconnect/loader/mozJSComponentLoader.cpp" + ], + "components": [], + "directories": [ + "js/src", + "dom/base", + "dom", + "content/xul", + "content", + "content/xbl", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "e720085bf9ba7617e54c9e64888e6fa91830268d", + "author": "Josh Aas ", + "bug_id": 488042, + "desc": "Backed out changeset 7ff6eeaad3d1, bug 488042", + "pushdate": "2009-05-16 06:06:11", + "backsout": [ + "7ff6eeaad3d1" + ], + "backedoutby": "", + "author_email": "joshmoz@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 27913532.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "modules/plugin/base/src/nsPluginDirServiceProvider.cpp", + "modules/plugin/base/src/nsPluginHostImpl.cpp", + "modules/plugin/base/src/nsPluginHostImpl.h", + "modules/plugin/base/src/nsPluginsDirWin.cpp" + ], + "components": [], + "directories": [ + "modules/plugin", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "fb7f8956aff514c965cbe93b858369fe02d48cc9", + "author": "Peter Van der Beken ", + "bug_id": 475737, + "desc": "Backed out changeset 0c8d4f846be8 (Fix for bug 475737 (Windows stay alive too long because nsJSContext doesn't unlink correctly).) to try to fix Tshutdown regression.", + "pushdate": "2009-05-16 14:18:37", + "backsout": [ + "0c8d4f846be8" + ], + "backedoutby": "", + "author_email": "peterv@propagandism.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 28419344.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "dom/base/nsJSEnvironment.cpp", + "dom/base/nsJSEnvironment.h", + "js/src/jscntxt.cpp", + "js/src/xpconnect/src/xpcjsruntime.cpp", + "xpcom/base/nsAgg.h", + "xpcom/glue/nsCycleCollectionParticipant.h" + ], + "components": [ + "Core::DOM: Core & HTML" + ], + "directories": [ + "xpcom/glue", + "js/src", + "xpcom/base", + "dom/base", + "dom", + "xpcom", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "6e86393b03ad1e2e801dfc1b26d81f39a3087f4e", + "author": "Josh Aas ", + "bug_id": 488181, + "desc": "Backed out changeset accd95d7ba9d. [OS/2] fix build break following bug 488181", + "pushdate": "2009-05-17 01:11:47", + "backsout": [ + "accd95d7ba9d" + ], + "backedoutby": "", + "author_email": "joshmoz@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 27982268.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "modules/plugin/base/src/nsPluginsDirOS2.cpp" + ], + "components": [], + "directories": [ + "modules/plugin", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "687daa472dd409cc7a175a7cf8fbe5b056296734", + "author": "Josh Aas ", + "bug_id": 488181, + "desc": "Backed out changeset 7cd22106e8d9. Simplify code for exposing plugin file names vs. full path. b=488181", + "pushdate": "2009-05-17 01:11:47", + "backsout": [ + "7cd22106e8d9" + ], + "backedoutby": "", + "author_email": "joshmoz@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 27982268.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "dom/locales/en-US/chrome/plugins.properties", + "modules/plugin/base/src/nsPluginHostImpl.cpp", + "modules/plugin/base/src/nsPluginsDirBeOS.cpp", + "modules/plugin/base/src/nsPluginsDirOS2.cpp", + "modules/plugin/base/src/nsPluginsDirUnix.cpp", + "modules/plugin/base/src/nsPluginsDirWin.cpp", + "toolkit/content/plugins.html" + ], + "components": [], + "directories": [ + "toolkit/content", + "toolkit", + "modules/plugin", + "dom/locales", + "dom", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "e3b0b664e5ddfc425fd84409b6dc8678508a4487", + "author": "Shawn Wilsher ", + "bug_id": 486974, + "desc": "Backed out changeset d88e6b8fab83 (bug 486974) due to reftest parsing issues.", + "pushdate": "2009-05-18 16:32:46", + "backsout": [ + "d88e6b8fab83" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 30069935.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "gfx/thebes/crashtests/486974-1.html", + "gfx/thebes/crashtests/crashtests.list" + ], + "components": [], + "directories": [ + "gfx/thebes", + "gfx" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "6fecf8267e038e5e6709c46c8c37035539e1c220", + "author": "Shawn Wilsher ", + "bug_id": 493560, + "desc": "Backed out changeset 4480c18255f2 (bug 493560)", + "pushdate": "2009-05-19 20:47:31", + "backsout": [ + "4480c18255f2" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 30171620.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "db/sqlite3/src/sqlite3.c", + "db/sqlite3/src/sqlite3.h" + ], + "components": [], + "directories": [ + "db/sqlite3", + "db" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "e54a1c608d8cb0e3a801b9928c6b8bb7b7080cca", + "author": "Shawn Wilsher ", + "bug_id": 493560, + "desc": "Backed out changeset dd3d70e5849e (bug 493560)", + "pushdate": "2009-05-19 20:47:31", + "backsout": [ + "dd3d70e5849e" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 30171620.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "configure.in", + "db/sqlite3/README.MOZILLA" + ], + "components": [], + "directories": [ + "db/sqlite3", + "db" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "c4cea7365f4e9199f0da846b74fee206d42b4c91", + "author": "Andreas Gal ", + "bug_id": 493657, + "desc": "Backed out changeset cec8ee353407 (bug 493657).", + "pushdate": "2009-05-20 16:22:49", + "backsout": [ + "cec8ee353407" + ], + "backedoutby": "8f6c242a75ffee31f467c7d81fea114d226a4fd8", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 27837091.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jstracer.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "8f6c242a75ffee31f467c7d81fea114d226a4fd8", + "author": "Andreas Gal ", + "bug_id": 493657, + "desc": "Backed out changeset c4cea7365f4e (re-landing 493657).", + "pushdate": "2009-05-20 16:22:49", + "backsout": [ + "c4cea7365f4e" + ], + "backedoutby": "a18035c7c3d2016c4b347d5a6e4109f402125b80", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 27837091.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jstracer.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "a18035c7c3d2016c4b347d5a6e4109f402125b80", + "author": "Andreas Gal ", + "bug_id": 493657, + "desc": "Backed out changeset 8f6c242a75ff (backing out bug 493657 again).", + "pushdate": "2009-05-20 16:22:49", + "backsout": [ + "8f6c242a75ff" + ], + "backedoutby": "", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 27837091.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jstracer.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "288e71bdc98a83a5b891129aa9ef4bf329f53866", + "author": "L. David Baron ", + "bug_id": 480205, + "desc": "Backed out changeset 1abeb6c87131 (Bug 480205 - Implement a wrapper for exposing chrome objects to content (aka COWs)) due to mochitest failures and leaks.", + "pushdate": "2009-05-21 10:58:20", + "backsout": [ + "1abeb6c87131" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 32112021.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/components/feeds/src/FeedWriter.js", + "dom/base/nsDOMClassInfo.cpp", + "dom/base/nsDOMClassInfo.h", + "js/src/xpconnect/idl/nsIXPConnect.idl", + "js/src/xpconnect/src/Makefile.in", + "js/src/xpconnect/src/XPCChromeObjectWrapper.cpp", + "js/src/xpconnect/src/XPCWrapper.h", + "js/src/xpconnect/src/nsXPConnect.cpp", + "js/src/xpconnect/src/xpcconvert.cpp", + "js/src/xpconnect/src/xpcjsruntime.cpp", + "js/src/xpconnect/src/xpcprivate.h", + "js/src/xpconnect/src/xpcwrappednative.cpp" + ], + "components": [], + "directories": [ + "js/src", + "dom/base", + "browser/components", + "dom", + "browser", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "10908cb7ea5b38e13b19eb0f1d71cdc713054d4d", + "author": "Benjamin Smedberg ", + "bug_id": 326628, + "desc": "Backed out changeset eea9639048b8, bug 326628 main patch, due to regression bug 494899", + "pushdate": "2009-05-27 13:28:12", + "backsout": [ + "eea9639048b8" + ], + "backedoutby": "", + "author_email": "benjamin@smedbergs.us", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 37399128.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "dom/base/nsDOMClassInfo.cpp", + "dom/base/nsDOMClassInfoID.h", + "dom/base/nsGlobalWindow.cpp", + "dom/base/nsGlobalWindow.h", + "dom/interfaces/base/Makefile.in", + "dom/interfaces/base/nsIDOMPkcs11.idl", + "security/manager/ssl/public/Makefile.in", + "security/manager/ssl/public/nsIPKCS11.idl", + "security/manager/ssl/src/nsCrypto.cpp", + "security/manager/ssl/src/nsCrypto.h" + ], + "components": [], + "directories": [ + "dom/interfaces", + "security", + "dom/base", + "dom", + "security/manager" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "4156a420a7325be68b97f67bf1d7b3fdb07bdc07", + "author": "Benjamin Smedberg ", + "bug_id": 326628, + "desc": "Backed out changeset 1aaacee9b2d0, bug 326628 string removal due to regression bug 494899", + "pushdate": "2009-05-27 13:28:12", + "backsout": [ + "1aaacee9b2d0" + ], + "backedoutby": "", + "author_email": "benjamin@smedbergs.us", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 37399128.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "security/manager/locales/en-US/chrome/pipnss/pipnss.properties" + ], + "components": [ + "Core::Security: PSM" + ], + "directories": [ + "security/manager", + "security" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "a0154ac712c96a49c13a43bae52c8fa00dc75aa4", + "author": "Benjamin Smedberg ", + "bug_id": 487980, + "desc": "Backed out changeset c41b9f3a9d83 - bug 487980 due to backing out 326628, due to regression bug 494899", + "pushdate": "2009-05-27 13:28:12", + "backsout": [ + "c41b9f3a9d83" + ], + "backedoutby": "", + "author_email": "benjamin@smedbergs.us", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 37399128.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "dom/base/nsGlobalWindow.cpp", + "dom/interfaces/base/domstubs.idl", + "dom/interfaces/base/nsIDOMWindowInternal.idl" + ], + "components": [ + "Core::DOM: Core & HTML" + ], + "directories": [ + "dom", + "dom/interfaces", + "dom/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "30aa3539cedca522384c7a574ecfab59902cb40b", + "author": "Dave Townsend ", + "bug_id": 481406, + "desc": "Backed out changeset ddd616e58309 from bug 481406 due to tinderbox shortlog\nspam", + "pushdate": "2009-05-28 11:20:17", + "backsout": [ + "ddd616e58309" + ], + "backedoutby": "", + "author_email": "dtownsend@oxymoronical.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 31019775.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "testing/mochitest/browser-harness.xul", + "testing/mochitest/browser-test.js", + "testing/mochitest/tests/browser/browser_pass.js" + ], + "components": [ + "Testing::Mochitest" + ], + "directories": [ + "testing/mochitest", + "testing" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "f5e133f0c13282882e632df0129993dbeb36b51b", + "author": "Andreas Gal ", + "bug_id": 496482, + "desc": "Backed out changeset 17664f5cab40 (bug 496482, also backing out the bug that introduced this bug).", + "pushdate": "2009-06-05 08:41:32", + "backsout": [ + "17664f5cab40" + ], + "backedoutby": "", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 29191814.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jstracer.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "47ae3c6dcf9ee2b9783fa4e2f9642965b035294a", + "author": "Andreas Gal ", + "bug_id": 495958, + "desc": "Backed out changeset 2ad658e9f42a (bug 495958, re-opened).", + "pushdate": "2009-06-05 08:41:32", + "backsout": [ + "2ad658e9f42a" + ], + "backedoutby": "", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 29191814.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jstracer.cpp", + "js/src/jstracer.h" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "6bced1a34c8f04226e23cc7021fe4fe6ebf68c92", + "author": "Markus Stange ", + "bug_id": 482681, + "desc": "Backed out changeset 04f5a3303ebf, bug 482681 due to test failures", + "pushdate": "2009-06-11 11:15:19", + "backsout": [ + "04f5a3303ebf" + ], + "backedoutby": "", + "author_email": "mstange@themasta.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 29929415.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/themes/pinstripe/global/button.css", + "toolkit/themes/pinstripe/global/global.css" + ], + "components": [], + "directories": [ + "toolkit/themes", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "97e7f0da28d6c7c4e311a49eefd8c218ca563b7d", + "author": "Shawn Wilsher ", + "bug_id": 483980, + "desc": "Backed out changeset d891a7418d95 (bug 483980)", + "pushdate": "2009-06-11 23:08:59", + "backsout": [ + "d891a7418d95" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 32167308.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/components/places/tests/unit/head_bookmarks.js", + "browser/components/places/tests/unit/tail_bookmarks.js", + "toolkit/components/places/src/nsNavBookmarks.cpp", + "toolkit/components/places/src/nsNavBookmarks.h", + "toolkit/components/places/src/nsNavHistory.cpp", + "toolkit/components/places/src/nsNavHistory.h", + "toolkit/components/places/src/nsNavHistoryExpire.cpp", + "toolkit/components/places/src/nsPlacesDBFlush.js", + "toolkit/components/places/src/nsPlacesMacros.h", + "toolkit/components/places/tests/autocomplete/head_000.js", + "toolkit/components/places/tests/autocomplete/tail_autocomplete.js", + "toolkit/components/places/tests/bookmarks/head_bookmarks.js", + "toolkit/components/places/tests/bookmarks/tail_bookmarks.js", + "toolkit/components/places/tests/bookmarks/test_384228.js", + "toolkit/components/places/tests/bookmarks/test_448584.js", + "toolkit/components/places/tests/queries/head_queries.js", + "toolkit/components/places/tests/queries/tail_queries.js", + "toolkit/components/places/tests/sync/head_sync.js", + "toolkit/components/places/tests/sync/tail_sync.js", + "toolkit/components/places/tests/unit/head_bookmarks.js", + "toolkit/components/places/tests/unit/nsDummyObserver.js", + "toolkit/components/places/tests/unit/tail_bookmarks.js", + "toolkit/components/places/tests/unit/test_000_frecency.js", + "toolkit/components/places/tests/unit/test_421180.js", + "toolkit/components/places/tests/unit/test_454977.js", + "toolkit/components/places/tests/unit/test_bookmark_catobs.js", + "toolkit/components/places/tests/unit/test_history.js", + "toolkit/components/places/tests/unit/test_history_catobs.js", + "toolkit/components/places/tests/unit/test_migrateFrecency.js" + ], + "components": [ + "Firefox::Bookmarks & History", + "Toolkit::Places" + ], + "directories": [ + "toolkit/components", + "browser/components", + "toolkit", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "06027b3d50d99bb1d03ed761fb8c6e99597b718f", + "author": "Shawn Wilsher ", + "bug_id": 119061, + "desc": "Backed out changeset f3fcd36fcbd1 (bug 119061) for linux orange.", + "pushdate": "2009-06-11 23:58:06", + "backsout": [ + "f3fcd36fcbd1" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 32170255.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/svg/content/test/Makefile.in", + "content/svg/content/test/test_moveUnderMouse.xhtml", + "layout/reftests/svg/dynamic-move-under-mouse.svg", + "layout/reftests/svg/reftest.list", + "layout/svg/base/src/nsSVGOuterSVGFrame.cpp" + ], + "components": [ + "Core::SVG" + ], + "directories": [ + "layout/svg", + "content", + "content/svg", + "layout/reftests", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "f0b1b5b7ae6269b70c953d939a9231beb7c53472", + "author": "Marco Zehe ", + "bug_id": 493723, + "desc": "Backed out changeset 2928cc356e14 of bug 493723 to fix screen reader bustage", + "pushdate": "2009-06-12 14:32:48", + "backsout": [ + "2928cc356e14" + ], + "backedoutby": "", + "author_email": "marco.zehe@googlemail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 32146482.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "accessible/src/atk/Makefile.in", + "accessible/src/atk/nsARIAGridAccessibleWrap.h", + "accessible/src/base/nsAccessibilityService.cpp", + "accessible/src/mac/Makefile.in", + "accessible/src/mac/nsARIAGridAccessibleWrap.h", + "accessible/src/msaa/Makefile.in", + "accessible/src/msaa/nsARIAGridAccessibleWrap.cpp", + "accessible/src/msaa/nsARIAGridAccessibleWrap.h", + "accessible/src/other/Makefile.in", + "accessible/src/other/nsARIAGridAccessibleWrap.h" + ], + "components": [], + "directories": [ + "accessible/src", + "accessible" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "be99fcdb6addb56c5bd73d9b18fda04490ac7eda", + "author": "Karl Tomlinson ", + "bug_id": 450930, + "desc": "backout 06a7d2def034 and 58c89ce9719d as possible cause of failure in test_bug450930.xhtml", + "pushdate": "2009-06-15 06:41:26", + "backsout": [ + "06a7d2def034" + ], + "backedoutby": "", + "author_email": "karlt+@karlt.net", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 29647662.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "gfx/thebes/public/gfxAtsuiFonts.h", + "gfx/thebes/public/gfxCoreTextFonts.h", + "gfx/thebes/src/gfxAtsuiFonts.cpp", + "gfx/thebes/src/gfxCoreTextFonts.cpp", + "gfx/thebes/src/gfxWindowsFonts.cpp", + "layout/reftests/bugs/308406-1-ref.html", + "layout/reftests/bugs/308406-1.html", + "layout/reftests/bugs/308406-2-ref.html", + "layout/reftests/bugs/308406-2.html", + "layout/reftests/bugs/363858-5-ref.html", + "layout/reftests/bugs/363858-5a.html", + "layout/reftests/bugs/363858-5b.html", + "layout/reftests/bugs/363858-6-ref.html", + "layout/reftests/bugs/363858-6a.html", + "layout/reftests/bugs/363858-6b.html", + "layout/reftests/bugs/387876-1-ref.html", + "layout/reftests/bugs/387876-1.html", + "layout/reftests/bugs/reftest.list" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "layout/reftests", + "gfx/thebes", + "gfx", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "72f6372d784a147d2335c0371aca0602ae0678d7", + "author": "Arpad Borsos ", + "bug_id": 493701, + "desc": "Back out 7d502207183d (Bug 493701), it really did cause the windows dhtml regression", + "pushdate": "2009-06-16 12:44:37", + "backsout": [ + "7d502207183d" + ], + "backedoutby": "", + "author_email": "arpad.borsos@googlemail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 31847699.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "uriloader/base/nsDocLoader.cpp", + "xpcom/tests/TestObserverArray.cpp" + ], + "components": [ + "Core::DOM: Navigation" + ], + "directories": [ + "uriloader/base", + "xpcom/tests", + "xpcom", + "uriloader" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "f9c14b122aa2ead4b62b6c3329c28d014cf711a3", + "author": "Arpad Borsos ", + "bug_id": 474369, + "desc": "Back out b8e531a6c961 (Bug 474369), it really did cause the windows dhtml regression", + "pushdate": "2009-06-16 12:44:37", + "backsout": [ + "b8e531a6c961" + ], + "backedoutby": "", + "author_email": "arpad.borsos@googlemail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 31847699.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "caps/include/nsPrincipal.h", + "caps/src/nsPrincipal.cpp", + "chrome/src/nsChromeRegistry.cpp", + "chrome/src/nsChromeRegistry.h", + "db/morkreader/nsMorkReader.cpp", + "docshell/base/nsDocShell.cpp", + "dom/base/nsIDOMClassInfo.h", + "dom/src/storage/nsDOMStorage.h", + "editor/libeditor/base/nsSelectionState.cpp", + "editor/txmgr/src/nsTransactionManager.cpp", + "embedding/components/commandhandler/src/nsCommandGroup.h", + "extensions/java/xpcom/src/nsJavaXPTCStub.cpp", + "extensions/java/xpcom/src/nsJavaXPTCStub.h", + "extensions/layout-debug/src/nsRegressionTester.cpp", + "extensions/pref/system-pref/src/gconf/nsSystemPrefService.cpp", + "extensions/pref/system-pref/src/gconf/nsSystemPrefService.h", + "extensions/spellcheck/src/mozPersonalDictionary.h", + "extensions/spellcheck/src/mozSpellChecker.h", + "intl/locale/src/nsLocale.cpp", + "layout/inspector/src/inCSSValueSearch.cpp", + "layout/style/nsCSSRuleProcessor.cpp", + "modules/libpref/src/nsPrefBranch.cpp", + "modules/libpref/src/nsPrefBranch.h", + "netwerk/cache/src/nsCacheService.cpp", + "security/manager/ssl/src/nsKeygenHandler.cpp", + "security/manager/ssl/src/nsKeygenHandler.h", + "tools/trace-malloc/leaksoup.cpp", + "uriloader/base/nsDocLoader.cpp", + "uriloader/base/nsDocLoader.h", + "view/src/nsViewManager.cpp", + "view/src/nsViewManager.h", + "xpcom/glue/nsTObserverArray.h", + "xpinstall/src/nsXPITriggerInfo.h" + ], + "components": [ + "Core::Spelling checker", + "Core::DOM: Navigation" + ], + "directories": [ + "xpcom/glue", + "modules/libpref", + "docshell/base", + "extensions/java", + "extensions/layout-debug", + "dom/base", + "editor", + "view", + "uriloader", + "caps/include", + "db", + "modules", + "embedding/components", + "netwerk", + "uriloader/base", + "caps/src", + "dom", + "extensions", + "layout/inspector", + "chrome/src", + "layout/style", + "layout", + "xpinstall", + "tools/trace-malloc", + "dom/src", + "extensions/spellcheck", + "netwerk/cache", + "docshell", + "caps", + "view/src", + "editor/txmgr", + "security/manager", + "xpcom", + "db/morkreader", + "intl/locale", + "xpinstall/src", + "editor/libeditor", + "embedding", + "extensions/pref", + "security", + "intl", + "tools", + "chrome" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "83ba7296195e738749ce695f89d242ea98d4bcc6", + "author": "Shawn Wilsher ", + "bug_id": 490085, + "desc": "Backed out changeset d546bd2c46a4 (bug 490085) because it's broken (and thunderbird's test caught it)", + "pushdate": "2009-06-17 20:45:30", + "backsout": [ + "d546bd2c46a4" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 32677099.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "storage/public/Makefile.in", + "storage/public/mozIStorageBindingParams.idl", + "storage/public/mozIStorageBindingParamsArray.idl", + "storage/public/mozIStorageStatement.idl", + "storage/src/Makefile.in", + "storage/src/mozStorageAsyncStatementExecution.cpp", + "storage/src/mozStorageAsyncStatementExecution.h", + "storage/src/mozStorageBindingParams.cpp", + "storage/src/mozStorageBindingParams.h", + "storage/src/mozStorageBindingParamsArray.cpp", + "storage/src/mozStorageBindingParamsArray.h", + "storage/src/mozStorageConnection.cpp", + "storage/src/mozStorageStatement.cpp", + "storage/src/mozStorageStatement.h", + "storage/src/mozStorageStatementData.h", + "storage/test/unit/test_connection_executeAsync.js", + "storage/test/unit/test_statement_executeAsync.js", + "storage/test/unit/test_storage_statement_executeAsync.js" + ], + "components": [ + "Toolkit::Storage" + ], + "directories": [ + "storage/src", + "storage", + "storage/test", + "storage/public" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "78f649cdd7f81ab9a45d60a6daecb16f44aa4d26", + "author": "Igor Bukanov ", + "bug_id": 498899, + "desc": "Backed out changeset 7ab1be136cfa - that patch for bug 498899 has a bug.", + "pushdate": "2009-06-19 13:23:15", + "backsout": [ + "7ab1be136cfa" + ], + "backedoutby": "", + "author_email": "igor@mir2.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 31592896.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsinterp.cpp", + "js/src/jsinterp.h", + "js/src/jslock.cpp", + "js/src/jslock.h" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "1e873ec2be87523bc8b5a77e581859eef40a6151", + "author": "Shawn Wilsher ", + "bug_id": 488148, + "desc": "Backed out changeset 0997bcc75daf (bug 488148). Silly me - this patch is wrong!", + "pushdate": "2009-06-19 19:22:34", + "backsout": [ + "0997bcc75daf" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 32844923.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "storage/src/mozStorageAsyncStatementExecution.cpp", + "storage/src/mozStorageAsyncStatementExecution.h", + "storage/src/mozStorageConnection.cpp", + "storage/src/mozStorageConnection.h" + ], + "components": [], + "directories": [ + "storage/src", + "storage" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "3ffbe0634669f82d3b3b6a3f81b3080058575301", + "author": "Peter Van der Beken ", + "bug_id": 499777, + "desc": "Backed out c8297c309ab3 (Fix for bug 499777 (Cannot convert WrappedNative to function (NS_ERROR_XPC_CANT_CONVERT_WN_TO_FUN)). r/sr=mrbkap.) to fix orange.", + "pushdate": "2009-06-23 14:47:03", + "backsout": [ + "c8297c309ab3" + ], + "backedoutby": "", + "author_email": "peterv@propagandism.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 31704250.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "dom/base/nsDOMClassInfo.cpp" + ], + "components": [], + "directories": [ + "dom", + "dom/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "a8fafd6b563eefb05f2c5bbef81312a075343ccb", + "author": "Andreas Gal ", + "bug_id": 499664, + "desc": "Backed out changeset 55a8910d8436 (no consensus whether patch should be applied, bug 499664).", + "pushdate": "2009-06-30 19:21:13", + "backsout": [ + "55a8910d8436" + ], + "backedoutby": "", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 31390195.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/nanojit/Assembler.cpp", + "js/src/nanojit/LIR.cpp", + "js/src/nanojit/LIRopcode.tbl" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "dd5b7ac3f7d3e1ed9ae4410dcf0ece1ec6b4ca85", + "author": "Karl Tomlinson ", + "bug_id": 498143, + "desc": "backout a2d8f3384b3c due to mochitest failures b=498143", + "pushdate": "2009-07-09 03:36:29", + "backsout": [ + "a2d8f3384b3c" + ], + "backedoutby": "", + "author_email": "karlt+@karlt.net", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 31710165.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "widget/src/gtk2/nsWindow.cpp" + ], + "components": [], + "directories": [ + "widget", + "widget/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "9d7f4b459a18e821fa66f17d8d61f94a69ab748e", + "author": "Peter Van der Beken ", + "bug_id": 503990, + "desc": "Backed out changeset c5433450795f (Bug 503990: make isStmt() table-driven).", + "pushdate": "2009-07-14 09:23:52", + "backsout": [ + "c5433450795f" + ], + "backedoutby": "", + "author_email": "peterv@propagandism.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 33499259.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/lirasm/lirasm.cpp", + "js/src/nanojit/Fragmento.cpp", + "js/src/nanojit/LIR.cpp", + "js/src/nanojit/LIR.h", + "js/src/nanojit/LIRopcode.tbl" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "6b7b67ed41b913e9871c41dd956ad81e97783155", + "author": "Peter Van der Beken ", + "bug_id": 503463, + "desc": "Backed out changeset 2073d5aae8b6 (Avoid integer math for GC trigger factor calculation in allocation path (bug 503463)).", + "pushdate": "2009-07-14 09:50:08", + "backsout": [ + "2073d5aae8b6" + ], + "backedoutby": "", + "author_email": "peterv@propagandism.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 33500835.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsapi.cpp", + "js/src/jscntxt.h", + "js/src/jsgc.cpp" + ], + "components": [ + "Core::JavaScript Engine" + ], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "17a10b614f99d9486cc5e3f14585a49216ef1f45", + "author": "Jonathan Kew ", + "bug_id": 503718, + "desc": "Backed out changeset 705ef05105e8 for causing bug 503718 on OS X", + "pushdate": "2009-07-15 11:14:22", + "backsout": [ + "705ef05105e8" + ], + "backedoutby": "", + "author_email": "jfkthame@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 19932958.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "gfx/thebes/public/gfxAtsuiFonts.h", + "gfx/thebes/public/gfxCoreTextFonts.h", + "gfx/thebes/src/gfxAtsuiFonts.cpp", + "gfx/thebes/src/gfxCoreTextFonts.cpp", + "layout/reftests/bugs/363858-5-ref.html", + "layout/reftests/bugs/363858-5a.html", + "layout/reftests/bugs/363858-5b.html", + "layout/reftests/bugs/363858-6-ref.html", + "layout/reftests/bugs/363858-6a.html", + "layout/reftests/bugs/363858-6b.html", + "layout/reftests/bugs/387876-1-ref.html", + "layout/reftests/bugs/387876-1.html", + "layout/reftests/bugs/reftest.list" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "layout/reftests", + "gfx/thebes", + "gfx", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "980e61b2e20b207ff3d0e2c63b1c6953d5be9a84", + "author": "Jonathan Kew ", + "bug_id": 503718, + "desc": "Backed out changeset b6d407af386f for causing bug 503718 on Windows", + "pushdate": "2009-07-15 11:14:22", + "backsout": [ + "b6d407af386f" + ], + "backedoutby": "", + "author_email": "jfkthame@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 19932958.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "gfx/thebes/src/gfxWindowsFonts.cpp", + "layout/reftests/bugs/308406-1-ref.html", + "layout/reftests/bugs/308406-1.html", + "layout/reftests/bugs/308406-2-ref.html", + "layout/reftests/bugs/308406-2.html" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "layout/reftests", + "gfx/thebes", + "gfx", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "191ef763e892a81b56685717adad3788fad266fd", + "author": "L. David Baron ", + "bug_id": 503942, + "desc": "Backed out changeset ebea850caba8 (Bug 503942) for causing timeouts of dom/tests/mochitest/geolocation/test_allowCurrent.html and test_allowWatch.html", + "pushdate": "2009-07-15 23:52:59", + "backsout": [ + "ebea850caba8" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 36910500.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "dom/interfaces/geolocation/Makefile.in", + "dom/interfaces/geolocation/nsIDOMGeoPosition.idl", + "dom/interfaces/geolocation/nsIDOMGeoPositionAddress.idl", + "dom/src/geolocation/NetworkGeolocationProvider.js" + ], + "components": [ + "Core::DOM: Geolocation" + ], + "directories": [ + "dom", + "dom/interfaces", + "dom/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "c0d86da168885b0cd20af7eefacb33c5e330e128", + "author": "L. David Baron ", + "bug_id": 503597, + "desc": "Backed out changeset 6e11834d07c9 (Bug 503597) until x86_64 Linux tinderboxes (bug 505215) and maybe other tinderboxes (bug 505203, bug 505204) are updated.", + "pushdate": "2009-07-20 12:58:59", + "backsout": [ + "6e11834d07c9" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 37303260.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "configure.in" + ], + "components": [], + "directories": [], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "080ff82bff5ed421cc1e4f2c65bda3aab190fcca", + "author": "Andreas Gal ", + "bug_id": 504705, + "desc": "Backed out changeset 692e8a1325f8 (bug 504705). Crashes with TMFLAGS=full on browser startup.", + "pushdate": "2009-07-21 04:58:00", + "backsout": [ + "692e8a1325f8" + ], + "backedoutby": "", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 33152802.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsregexp.cpp", + "js/src/jstracer.cpp", + "js/src/lirasm/lirasm.cpp", + "js/src/nanojit/LIR.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "d75d6cd530413239b644ed14ef8ec76d010ecd56", + "author": "Andreas Gal ", + "bug_id": 501232, + "desc": "Backed out changeset 8877e1f8645b (bug 501232).", + "pushdate": "2009-07-21 04:58:00", + "backsout": [ + "8877e1f8645b" + ], + "backedoutby": "", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 33152802.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/nanojit/LIR.cpp", + "js/src/nanojit/LIR.h", + "js/src/nanojit/LIRopcode.tbl", + "js/src/nanojit/NativeARM.cpp", + "js/src/nanojit/NativeSparc.cpp", + "js/src/nanojit/Nativei386.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "e81b6512fc4ae2668a847bcbd136b81145934aa6", + "author": "Benjamin Smedberg ", + "bug_id": 448375, + "desc": "Backed out changeset 6722800f261e - bug 448375 because it broke at least x86-64... turns out we do actually use DBUS bits from within libxul.so, and the fix for that bug may be quite a bit more complicated.", + "pushdate": "2009-07-23 17:45:58", + "backsout": [ + "6722800f261e" + ], + "backedoutby": "", + "author_email": "benjamin@smedbergs.us", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 42339394.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/library/Makefile.in" + ], + "components": [], + "directories": [ + "toolkit/library", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "2772a410e518ffa9ef8aba6cfcb235f75c92297a", + "author": "Gavin Sharp ", + "bug_id": 506116, + "desc": "Backed out changeset 870f451d8385 from bug 506116", + "pushdate": "2009-07-28 07:41:27", + "backsout": [ + "870f451d8385" + ], + "backedoutby": "", + "author_email": "gavin@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 35187834.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/base/content/browser.js", + "toolkit/content/contentAreaUtils.js" + ], + "components": [ + "Toolkit::General", + "Firefox::General" + ], + "directories": [ + "browser/base", + "toolkit", + "browser", + "toolkit/content" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "069d94d0d7ef237e07669cc9399444bf08a5a5a5", + "author": "Boris Zbarsky ", + "bug_id": 495176, + "desc": "Backed out changeset 9d5e247b5052 to see whether bug 495176 might be causing\nthe WinXP Txul regression.", + "pushdate": "2009-07-28 18:39:06", + "backsout": [ + "9d5e247b5052" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 33251654.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "caps/src/nsScriptSecurityManager.cpp" + ], + "components": [], + "directories": [ + "caps", + "caps/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "78b2c479870c73c5da37cdcf1b012061c60be326", + "author": "Boris Zbarsky ", + "bug_id": 495176, + "desc": "Backed out changeset b55e7e3c0bfb to see whether bug 495176 might be causing the WinXP Txul regression", + "pushdate": "2009-07-28 18:39:06", + "backsout": [ + "b55e7e3c0bfb" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 33251654.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "caps/src/nsScriptSecurityManager.cpp", + "dom/locales/en-US/chrome/security/caps.properties" + ], + "components": [ + "Core::Security" + ], + "directories": [ + "caps", + "dom", + "dom/locales", + "caps/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "0468583f64f4ba451040840369df0dd03ce35e75", + "author": "Boris Zbarsky ", + "bug_id": 496823, + "desc": "Backed out changeset 622a29736f33 to see whether bug 496823 causes the WinXP Txul regression.", + "pushdate": "2009-07-28 18:39:06", + "backsout": [ + "622a29736f33" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 33251654.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/base/nsCSSFrameConstructor.cpp", + "layout/generic/nsBlockFrame.cpp", + "layout/generic/nsBlockFrame.h", + "layout/generic/nsFrame.cpp", + "layout/generic/nsIFrame.h" + ], + "components": [ + "Core::Layout", + "Core::Layout: Block and Inline" + ], + "directories": [ + "layout/generic", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "c1ab8650e0cee5e6e3592bdce8d8103fd16bea1a", + "author": "Boris Zbarsky ", + "bug_id": 505988, + "desc": "Backed out changeset 03c40c5a2d4b (bug 505988) to fix password manager test orange.", + "pushdate": "2009-07-30 15:03:51", + "backsout": [ + "03c40c5a2d4b" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 33411539.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/xpconnect/src/xpcprivate.h", + "js/src/xpconnect/src/xpcvariant.cpp", + "js/src/xpconnect/tests/mochitest/Makefile.in", + "js/src/xpconnect/tests/mochitest/test_bug384632.html" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "60b97c3496c4517e74445b2e741629f9d5373e95", + "author": "Shawn Wilsher ", + "bug_id": 504422, + "desc": "Backed out changeset 06433d3dafd9 (bug 504422) because the patch is wrong.", + "pushdate": "2009-07-30 17:34:32", + "backsout": [ + "06433d3dafd9" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 36380841.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "build/automationutils.py", + "toolkit/components/places/src/SQLFunctions.cpp", + "toolkit/components/places/src/SQLFunctions.h" + ], + "components": [], + "directories": [ + "toolkit/components", + "toolkit", + "build" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "236a7507a0f1e0127782daff0d5cb2d2683e5f69", + "author": "Shawn Wilsher ", + "bug_id": 504384, + "desc": "Backed out changeset 246b44df7dd3 (bug 504384).\nThis fix was wrong.", + "pushdate": "2009-07-30 17:34:32", + "backsout": [ + "246b44df7dd3" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 36380841.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/content/widgets/autocomplete.xml" + ], + "components": [], + "directories": [ + "toolkit/content", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "6fa97a14dde15f0c89160cc15a4e7ba928ea55f2", + "author": "Shawn Wilsher ", + "bug_id": 504311, + "desc": "Backed out changeset 8506b25206cf (bug 504311) because the test added uses enablePrivilege which hangs tinderbox asking for privileges.", + "pushdate": "2009-07-30 20:17:53", + "backsout": [ + "8506b25206cf" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 36390642.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/style/crashtests/504311-1.xul", + "layout/style/crashtests/crashtests.list", + "layout/style/nsStyleStruct.cpp" + ], + "components": [ + "Core::CSS Parsing and Computation" + ], + "directories": [ + "layout/style", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "c6cab4ce7379c19306d34d7e923a59ea538cd62a", + "author": "L. David Baron ", + "bug_id": 499655, + "desc": "Backed out changeset 358af1196dc2 (bug 499655) until we get bug 507487 sorted out.", + "pushdate": "2009-07-31 16:41:01", + "backsout": [ + "358af1196dc2" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 38266982.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/style/nsCSSParser.cpp", + "layout/style/nsCSSRuleProcessor.cpp", + "layout/style/nsCSSStyleRule.cpp", + "layout/style/nsICSSStyleRule.h", + "layout/style/test/Makefile.in", + "layout/style/test/test_bug499655.html", + "layout/style/test/test_bug499655.xhtml", + "layout/xul/base/src/tree/src/nsTreeBodyFrame.cpp" + ], + "components": [ + "Core::CSS Parsing and Computation" + ], + "directories": [ + "layout/xul", + "layout/style", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "d556710b95a87c8f2d69e085c1d399d36886d25c", + "author": "Josh Aas ", + "bug_id": 506812, + "desc": "Backed out changeset ad9a4a3a5409, bug 506812. CLOSED TREE", + "pushdate": "2009-07-31 20:50:50", + "backsout": [ + "ad9a4a3a5409" + ], + "backedoutby": "", + "author_email": "joshmoz@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 34533011.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "xpcom/io/nsLocalFileOSX.h", + "xpcom/io/nsLocalFileOSX.mm" + ], + "components": [], + "directories": [ + "xpcom/io", + "xpcom" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "8e2681f2fcba3a5d56f421d28e6ee0a9a5f4658f", + "author": "Josh Aas ", + "bug_id": 506812, + "desc": "Backed out changeset 4318f781ab87 to investigate Ts changes, b=506812 CLOSED TREE", + "pushdate": "2009-07-31 20:54:50", + "backsout": [ + "4318f781ab87" + ], + "backedoutby": "", + "author_email": "joshmoz@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 34533251.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/xre/nsAppRunner.cpp" + ], + "components": [ + "Toolkit::Startup and Profile System" + ], + "directories": [ + "toolkit", + "toolkit/xre" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "1708ccd0ffe4a65523cadc76d5e94c1f83cbd5ba", + "author": "L. David Baron ", + "bug_id": 501608, + "desc": "Backed out changeset 8cd49a8cbb88 (bug 501608) on suspicion of causing lots of mochitest-browser-chrome timeouts and leaks (bug 507698).", + "pushdate": "2009-07-31 21:54:27", + "backsout": [ + "8cd49a8cbb88" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 38285788.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/content/tests/browser/Makefile.in", + "toolkit/content/tests/browser/browser_keyevents_during_autoscrolling.js", + "toolkit/content/widgets/browser.xml" + ], + "components": [ + "Toolkit::UI Widgets" + ], + "directories": [ + "toolkit/content", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "850b96d836c46b5c3aa67c7b9207e22ffc1f0822", + "author": "L. David Baron ", + "bug_id": 507605, + "desc": "Backed out changeset 6a5f22ccbe0e (no bug) to see if it is the cause of the mozilla-browser-chrome orange (bug 507605 and bug 507698)", + "pushdate": "2009-08-01 02:38:15", + "backsout": [ + "6a5f22ccbe0e" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 38302816.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/components/sessionstore/test/browser/browser_483330.js", + "browser/components/sessionstore/test/browser/browser_491168.js" + ], + "components": [], + "directories": [ + "browser/components", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "94e882183752b48c85bf046e13908bfe26a72ffe", + "author": "Ehsan Akhgari ", + "bug_id": 125282, + "desc": "Backed out changeset 8366e5cc9f57 (bug 125282) because of four windows unit test oranges in a row (all timed out when running mochitest-plain)", + "pushdate": "2009-08-02 10:41:59", + "backsout": [ + "8366e5cc9f57" + ], + "backedoutby": "", + "author_email": "ehsan.akhgari@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 33401385.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/base/content/test/Makefile.in", + "browser/base/content/test/browser_bug125282.js", + "dom/base/nsFocusManager.cpp" + ], + "components": [ + "Core::DOM: Core & HTML" + ], + "directories": [ + "browser/base", + "dom/base", + "dom", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "7fb86c108ae7981111030e5520593c10859d3562", + "author": "Boris Zbarsky ", + "bug_id": 502288, + "desc": "Backed out changeset 25462849adcc (bug 502288) to get some talos cycles for the tracemonkey merge without this patch in.", + "pushdate": "2009-08-03 19:12:58", + "backsout": [ + "25462849adcc" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 33772086.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/base/nsCSSFrameConstructor.cpp", + "layout/base/nsCSSFrameConstructor.h", + "layout/base/nsChangeHint.h", + "layout/base/nsFrameManager.cpp", + "layout/style/nsStyleStruct.cpp" + ], + "components": [ + "Core::Layout", + "Core::CSS Parsing and Computation" + ], + "directories": [ + "layout/style", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "c29765db7521970a25767c46a0876f12ef39e1ee", + "author": "Ted Mielczarek ", + "bug_id": 459114, + "desc": "Backed out changeset 9ddc25fb2246 - bug 459114 - helper function to provide a clean profile directory for xpcshell tests. r=sdwilsh - for test failures", + "pushdate": "2009-08-05 19:36:30", + "backsout": [ + "9ddc25fb2246" + ], + "backedoutby": "", + "author_email": "ted.mielczarek@gmail.com", + "reviewers": [ + "sdwilsh" + ], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 43469226.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/components/places/tests/unit/head_bookmarks.js", + "extensions/cookie/test/unit/test_permmanager_removeall.js", + "modules/plugin/test/unit/head_plugins.js", + "modules/plugin/test/unit/test_bug455213.js", + "netwerk/test/unit/test_bug248970_cache.js", + "testing/xpcshell/example/unit/test_get_file.js", + "testing/xpcshell/example/unit/test_profile.js", + "testing/xpcshell/head.js", + "testing/xpcshell/runxpcshelltests.py", + "toolkit/components/downloads/test/schema_migration/head_migration.js", + "toolkit/components/downloads/test/unit/head_download_manager.js", + "toolkit/components/downloads/test/unit/test_bug_382825.js", + "toolkit/components/downloads/test/unit/test_bug_395092.js", + "toolkit/components/downloads/test/unit/test_bug_401430.js", + "toolkit/components/downloads/test/unit/test_bug_401582.js", + "toolkit/components/downloads/test/unit/test_bug_409179.js", + "toolkit/components/downloads/test/unit/test_bug_420230.js", + "toolkit/components/downloads/test/unit/test_download_manager.js", + "toolkit/components/downloads/test/unit/test_privatebrowsing.js", + "toolkit/components/passwordmgr/test/unit/head_storage_legacy_1.js", + "toolkit/components/places/tests/autocomplete/head_000.js", + "toolkit/components/places/tests/bookmarks/head_bookmarks.js", + "toolkit/components/places/tests/queries/head_queries.js", + "toolkit/components/places/tests/unit/head_bookmarks.js", + "toolkit/components/satchel/test/unit/head_satchel.js", + "toolkit/components/url-classifier/tests/unit/head_urlclassifier.js", + "toolkit/mozapps/extensions/test/unit/head_extensionmanager.js", + "toolkit/mozapps/extensions/test/unit/tail_extensionmanager.js" + ], + "components": [ + "Core::Networking", + "Toolkit::Form Manager", + "Testing::XPCShell Harness", + "Toolkit::Safe Browsing", + "Firefox::Bookmarks & History", + "Toolkit::Places" + ], + "directories": [ + "testing/xpcshell", + "toolkit", + "netwerk", + "toolkit/components", + "modules/plugin", + "netwerk/test", + "extensions/cookie", + "browser/components", + "toolkit/mozapps", + "extensions", + "browser", + "testing", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "227c1358d161e4ec2745b8cb9f777d6ad9695d92", + "author": "L. David Baron ", + "bug_id": 505718, + "desc": "Backed out changeset bae405b94b96 (testing to see if it affected bug 505718, bug 508767) to re-enable leaked url dump for unit test boxes.", + "pushdate": "2009-08-07 15:23:53", + "backsout": [ + "bae405b94b96" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 38867154.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "netwerk/base/src/nsStandardURL.h" + ], + "components": [], + "directories": [ + "netwerk/base", + "netwerk" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "b3631e1453f29a5020a393b960b1eb851a770279", + "author": "Markus Stange ", + "bug_id": 429954, + "desc": "Backed out changeset b52fa2372a3a, bug 429954 because of test_popup_preventdefault_chrome.xul orange.", + "pushdate": "2009-08-12 23:44:06", + "backsout": [ + "b52fa2372a3a" + ], + "backedoutby": "", + "author_email": "mstange@themasta.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 35331142.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "widget/src/cocoa/nsCocoaWindow.h", + "widget/src/cocoa/nsCocoaWindow.mm" + ], + "components": [], + "directories": [ + "widget", + "widget/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "157b3aa1100f993e37b419c048e30c9d2b61b26f", + "author": "Jason Orendorff ", + "bug_id": 510193, + "desc": "Backed out changeset a17cbb14793f (bug 510193) which caused trace-test.js to fail (spuriously) on x86.", + "pushdate": "2009-08-13 21:38:45", + "backsout": [ + "a17cbb14793f" + ], + "backedoutby": "", + "author_email": "jorendorff@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 38104054.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jitstats.tbl", + "js/src/jstracer.cpp", + "js/src/trace-test.js" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "6c04c1cdedcb5489ee4e2ea3871e574efbfefb65", + "author": "Markus Stange ", + "bug_id": 494927, + "desc": "Backed out changeset 43fdf17e10a3, bug 494927, because of a 2.5% Mac Txul regression", + "pushdate": "2009-08-14 04:53:30", + "backsout": [ + "43fdf17e10a3" + ], + "backedoutby": "", + "author_email": "mstange@themasta.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 35436106.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/themes/pinstripe/browser/Toolbar.png", + "browser/themes/pinstripe/browser/browser.css" + ], + "components": [], + "directories": [ + "browser/themes", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "a6fa91f76877b834d4e7db0d5b847a9353156e3e", + "author": "Ted Mielczarek ", + "bug_id": 378528, + "desc": "Backed out changeset 21ad4f1ce214 - Ted Mielczarek \u2013 bug 378528 - crash reporter should allow resubmission of pending reports, due to leaks", + "pushdate": "2009-08-17 18:45:00", + "backsout": [ + "21ad4f1ce214" + ], + "backedoutby": "", + "author_email": "ted.mielczarek@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 44502936.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/crashreporter/content/crash-submit-form.xhtml", + "toolkit/crashreporter/content/crashes.js", + "toolkit/crashreporter/content/crashes.xhtml", + "toolkit/crashreporter/jar.mn", + "toolkit/crashreporter/test/Makefile.in", + "toolkit/crashreporter/test/browser/aboutcrashes_utils.js", + "toolkit/crashreporter/test/browser/browser_aboutCrashes.js", + "toolkit/crashreporter/test/browser/browser_aboutCrashesResubmit.js", + "toolkit/crashreporter/test/browser/crashreport.sjs" + ], + "components": [ + "Toolkit::Crash Reporting" + ], + "directories": [ + "toolkit", + "toolkit/crashreporter" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "ae162a38f56ed5090f6b3b3ebf92d0ff13cff9b1", + "author": "Dave Townsend ", + "bug_id": 502307, + "desc": "Backed out changeset 405a715a4d81 from bug 502307 due to test failures", + "pushdate": "2009-08-19 09:38:41", + "backsout": [ + "405a715a4d81" + ], + "backedoutby": "", + "author_email": "dtownsend@oxymoronical.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 38184879.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/base/content/browser.js", + "toolkit/content/globalOverlay.js" + ], + "components": [ + "Toolkit::General", + "Firefox::General" + ], + "directories": [ + "browser/base", + "toolkit", + "browser", + "toolkit/content" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "36d3597620c7b8392cfb99cc056dcbd2caea2de4", + "author": "L. David Baron ", + "bug_id": 482935, + "desc": "Backed out changeset 3a829715fd39 (Bug 482935) on suspicion of causing mochitest-plain leaks.", + "pushdate": "2009-08-20 19:23:10", + "backsout": [ + "3a829715fd39" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 40004711.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/base/test/Makefile.in", + "content/base/test/bug482935.sjs", + "content/base/test/test_bug482935.html", + "netwerk/protocol/http/src/nsHttpChannel.cpp" + ], + "components": [], + "directories": [ + "content/base", + "content", + "netwerk/protocol", + "netwerk" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "85899e12310f9eb9be0db8ec7fd421c238c40a26", + "author": "L. David Baron ", + "bug_id": 445765, + "desc": "Backed out changeset 6b686281f9ac (Bug 445765) for causing a 3% Txul (Twinopen) regression on Linux.", + "pushdate": "2009-08-23 15:07:40", + "backsout": [ + "6b686281f9ac" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 40248581.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/base/nsLayoutUtils.cpp" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "201784b33fc94a3a55139cc7dc8684e66aee803c", + "author": "Boris Zbarsky ", + "bug_id": 488249, + "desc": "Backed out changeset eb32cbfba7f5 (bug 488249 followup) to fix test orange.", + "pushdate": "2009-08-25 00:52:50", + "backsout": [ + "eb32cbfba7f5" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 35606878.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "accessible/src/base/nsAccessible.cpp" + ], + "components": [], + "directories": [ + "accessible/src", + "accessible" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "7687616b2a35d841691da03b55eb482965eb1548", + "author": "Boris Zbarsky ", + "bug_id": 488249, + "desc": "Backed out changeset 59ae87416f96 (bug 488249 followup) to fix test orange.", + "pushdate": "2009-08-25 00:52:50", + "backsout": [ + "59ae87416f96" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 35606878.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/base/nsCSSFrameConstructor.cpp", + "widget/src/cocoa/nsMenuBarX.mm", + "widget/src/cocoa/nsNativeThemeCocoa.mm" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "widget", + "layout", + "layout/base", + "widget/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "2e8b6f1bf670fc64652d0f82cd140fc339b96daf", + "author": "Boris Zbarsky ", + "bug_id": 488249, + "desc": "Backed out changeset 4aa19414e651 (bug 488249) to fix test orange.", + "pushdate": "2009-08-25 00:52:50", + "backsout": [ + "4aa19414e651" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 35606878.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "accessible/src/base/nsAccessibilityService.cpp", + "accessible/src/base/nsAccessible.cpp", + "accessible/src/base/nsAccessibleTreeWalker.cpp", + "accessible/src/base/nsCoreUtils.cpp", + "accessible/src/base/nsTextEquivUtils.cpp", + "accessible/src/html/nsHTMLSelectAccessible.cpp", + "accessible/src/html/nsHyperTextAccessible.cpp", + "content/base/public/nsIContent.h", + "content/base/public/nsINode.h", + "content/base/src/mozSanitizingSerializer.cpp", + "content/base/src/nsContentUtils.cpp", + "content/base/src/nsCopySupport.cpp", + "content/base/src/nsDOMAttributeMap.cpp", + "content/base/src/nsDocument.cpp", + "content/base/src/nsFrameLoader.cpp", + "content/base/src/nsGenericElement.cpp", + "content/base/src/nsNodeUtils.cpp", + "content/base/src/nsObjectLoadingContent.cpp", + "content/base/src/nsPlainTextSerializer.cpp", + "content/base/src/nsScriptElement.cpp", + "content/base/src/nsXHTMLContentSerializer.cpp", + "content/base/src/nsXMLContentSerializer.cpp", + "content/events/src/nsContentEventHandler.cpp", + "content/events/src/nsEventStateManager.cpp", + "content/html/content/src/nsGenericHTMLElement.cpp", + "content/html/content/src/nsGenericHTMLElement.h", + "content/html/content/src/nsHTMLMediaElement.cpp", + "content/html/content/src/nsHTMLOptGroupElement.cpp", + "content/html/content/src/nsHTMLOptionElement.cpp", + "content/html/content/src/nsHTMLSelectElement.cpp", + "content/html/content/src/nsHTMLTableCellElement.cpp", + "content/html/content/src/nsHTMLTableRowElement.cpp", + "content/html/document/src/nsHTMLDocument.cpp", + "content/mathml/content/src/nsMathMLElement.cpp", + "content/svg/content/src/nsSVGElement.cpp", + "content/svg/content/src/nsSVGLength2.cpp", + "content/xbl/src/nsXBLContentSink.cpp", + "content/xbl/src/nsXBLPrototypeHandler.cpp", + "content/xbl/src/nsXBLService.cpp", + "content/xslt/src/xpath/txMozillaXPathTreeWalker.cpp", + "content/xslt/src/xpath/txXPathTreeWalker.h", + "content/xslt/src/xslt/txMozillaXMLOutput.cpp", + "content/xul/content/src/nsXULElement.cpp", + "content/xul/content/src/nsXULElement.h", + "content/xul/templates/src/nsXULContentBuilder.cpp", + "content/xul/templates/src/nsXULSortService.cpp", + "content/xul/templates/src/nsXULTemplateBuilder.cpp", + "docshell/base/nsDocShell.cpp", + "dom/base/nsDOMClassInfo.cpp", + "dom/base/nsFocusManager.cpp", + "embedding/components/find/src/nsFind.cpp", + "layout/base/nsCSSFrameConstructor.cpp", + "layout/base/nsPresShell.cpp", + "layout/forms/nsListControlFrame.cpp", + "layout/forms/nsTextControlFrame.cpp", + "layout/generic/nsBlockFrame.cpp", + "layout/generic/nsContainerFrame.cpp", + "layout/generic/nsFrame.cpp", + "layout/generic/nsFrameFrame.cpp", + "layout/generic/nsFrameSetFrame.cpp", + "layout/generic/nsImageMap.cpp", + "layout/generic/nsInlineFrame.cpp", + "layout/generic/nsObjectFrame.cpp", + "layout/generic/nsSelection.cpp", + "layout/mathml/nsMathMLContainerFrame.cpp", + "layout/printing/nsPrintEngine.cpp", + "layout/printing/nsPrintPreviewListener.cpp", + "layout/style/nsCSSRuleProcessor.cpp", + "layout/style/nsHTMLStyleSheet.cpp", + "layout/style/nsStyleUtil.cpp", + "layout/svg/base/src/nsSVGContainerFrame.cpp", + "layout/svg/base/src/nsSVGSwitchFrame.cpp", + "layout/xul/base/src/nsBox.cpp", + "layout/xul/base/src/nsListBoxBodyFrame.cpp", + "layout/xul/base/src/tree/src/nsTreeBodyFrame.cpp", + "layout/xul/base/src/tree/src/nsTreeContentView.cpp", + "toolkit/components/typeaheadfind/src/nsTypeAheadFind.cpp", + "widget/src/gtk2/nsNativeThemeGTK.cpp", + "widget/src/windows/nsNativeThemeWin.cpp", + "widget/src/xpwidgets/nsNativeTheme.cpp" + ], + "components": [ + "Core::DOM: Core & HTML", + "Core::CSS Parsing and Computation", + "Core::DOM: Navigation", + "Core::Layout: Block and Inline", + "Core::Layout: Form Controls", + "Core::Layout: Images, Video, and HTML Frames", + "Core::MathML", + "Core::Layout" + ], + "directories": [ + "accessible/src", + "accessible", + "docshell/base", + "layout/mathml", + "dom/base", + "content/xul", + "content/base", + "content", + "content/html", + "embedding/components", + "layout/generic", + "toolkit", + "dom", + "content/xslt", + "layout/style", + "layout", + "toolkit/components", + "layout/xul", + "docshell", + "layout/forms", + "layout/base", + "widget", + "embedding", + "content/mathml", + "layout/printing", + "layout/svg", + "content/svg", + "content/xbl", + "widget/src", + "content/events" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "b5c5bf855c53870a43f0681f68012ce2bf362366", + "author": "Boris Zbarsky ", + "bug_id": 474536, + "desc": "Backed out changeset 6ee269c6c118 (test for bug 474536) because it hangs on Tinderbox", + "pushdate": "2009-09-02 17:35:49", + "backsout": [ + "6ee269c6c118" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 36358257.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "netwerk/test/unit/data/bug474536/foo.jar", + "netwerk/test/unit/data/bug474536/foo.jar^headers^", + "netwerk/test/unit/test_bug474536.js" + ], + "components": [], + "directories": [ + "netwerk/test", + "netwerk" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "941346617e4fa0946dea86a611917d7362765d10", + "author": "Josh Aas ", + "bug_id": 510920, + "desc": "Backed out changeset e8c01867056a, breakpad update b=510920", + "pushdate": "2009-09-04 04:02:57", + "backsout": [ + "e8c01867056a" + ], + "backedoutby": "", + "author_email": "joshmoz@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 37496538.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/crashreporter/google-breakpad/Makefile.am", + "toolkit/crashreporter/google-breakpad/Makefile.in", + "toolkit/crashreporter/google-breakpad/aclocal.m4", + "toolkit/crashreporter/google-breakpad/src/breakpad_googletest_includes.h", + "toolkit/crashreporter/google-breakpad/src/client/linux/handler/exception_handler.cc", + "toolkit/crashreporter/google-breakpad/src/client/linux/handler/exception_handler.h", + "toolkit/crashreporter/google-breakpad/src/client/linux/handler/minidump_generator.cc", + "toolkit/crashreporter/google-breakpad/src/client/mac/Breakpad.xcodeproj/project.pbxproj", + "toolkit/crashreporter/google-breakpad/src/client/mac/Framework/Breakpad.h", + "toolkit/crashreporter/google-breakpad/src/client/mac/Framework/Breakpad.mm", + "toolkit/crashreporter/google-breakpad/src/client/mac/Framework/Breakpad_Prefix.pch", + "toolkit/crashreporter/google-breakpad/src/client/mac/Framework/Info.plist", + "toolkit/crashreporter/google-breakpad/src/client/mac/Framework/OnDemandServer.h", + "toolkit/crashreporter/google-breakpad/src/client/mac/Framework/OnDemandServer.mm", + "toolkit/crashreporter/google-breakpad/src/client/mac/UnitTests-Info.plist", + "toolkit/crashreporter/google-breakpad/src/client/mac/crash_generation/Inspector.h", + "toolkit/crashreporter/google-breakpad/src/client/mac/crash_generation/Inspector.mm", + "toolkit/crashreporter/google-breakpad/src/client/mac/crash_generation/InspectorMain.mm", + "toolkit/crashreporter/google-breakpad/src/client/mac/gcov/libgcov.a", + "toolkit/crashreporter/google-breakpad/src/client/mac/handler/exception_handler.cc", + "toolkit/crashreporter/google-breakpad/src/client/mac/handler/exception_handler.h", + "toolkit/crashreporter/google-breakpad/src/client/mac/handler/exception_handler_test.cc", + "toolkit/crashreporter/google-breakpad/src/client/mac/handler/minidump_generator.cc", + "toolkit/crashreporter/google-breakpad/src/client/mac/handler/minidump_generator.h", + "toolkit/crashreporter/google-breakpad/src/client/mac/handler/minidump_generator_test.cc", + "toolkit/crashreporter/google-breakpad/src/client/mac/handler/testcases/testdata/dump_syms_i386_breakpad.sym", + "toolkit/crashreporter/google-breakpad/src/client/mac/sender/Breakpad.nib/classes.nib", + "toolkit/crashreporter/google-breakpad/src/client/mac/sender/Breakpad.nib/info.nib", + "toolkit/crashreporter/google-breakpad/src/client/mac/sender/Breakpad.nib/keyedobjects.nib", + "toolkit/crashreporter/google-breakpad/src/client/mac/sender/English.lproj/InfoPlist.strings", + "toolkit/crashreporter/google-breakpad/src/client/mac/sender/English.lproj/Localizable.strings", + "toolkit/crashreporter/google-breakpad/src/client/mac/sender/ReporterIcon.graffle", + "toolkit/crashreporter/google-breakpad/src/client/mac/sender/crash_report_sender-Info.plist", + "toolkit/crashreporter/google-breakpad/src/client/mac/sender/crash_report_sender.h", + "toolkit/crashreporter/google-breakpad/src/client/mac/sender/crash_report_sender.icns", + "toolkit/crashreporter/google-breakpad/src/client/mac/sender/crash_report_sender.m", + "toolkit/crashreporter/google-breakpad/src/client/mac/testapp/Controller.h", + "toolkit/crashreporter/google-breakpad/src/client/mac/testapp/Controller.m", + "toolkit/crashreporter/google-breakpad/src/client/mac/testapp/English.lproj/InfoPlist.strings", + "toolkit/crashreporter/google-breakpad/src/client/mac/testapp/English.lproj/MainMenu.nib/classes.nib", + "toolkit/crashreporter/google-breakpad/src/client/mac/testapp/English.lproj/MainMenu.nib/info.nib", + "toolkit/crashreporter/google-breakpad/src/client/mac/testapp/English.lproj/MainMenu.nib/keyedobjects.nib", + "toolkit/crashreporter/google-breakpad/src/client/mac/testapp/Info.plist", + "toolkit/crashreporter/google-breakpad/src/client/mac/testapp/TestClass.h", + "toolkit/crashreporter/google-breakpad/src/client/mac/testapp/TestClass.mm", + "toolkit/crashreporter/google-breakpad/src/client/mac/testapp/bomb.icns", + "toolkit/crashreporter/google-breakpad/src/client/mac/testapp/crashInMain", + "toolkit/crashreporter/google-breakpad/src/client/mac/testapp/crashduringload", + "toolkit/crashreporter/google-breakpad/src/client/mac/testapp/main.m", + "toolkit/crashreporter/google-breakpad/src/client/mac/tests/BreakpadFramework_Test.mm", + "toolkit/crashreporter/google-breakpad/src/client/mac/tests/SimpleStringDictionaryTest.h", + "toolkit/crashreporter/google-breakpad/src/client/mac/tests/SimpleStringDictionaryTest.mm", + "toolkit/crashreporter/google-breakpad/src/client/minidump_file_writer_unittest.cc", + "toolkit/crashreporter/google-breakpad/src/client/windows/crash_generation/crash_generation_server.cc", + "toolkit/crashreporter/google-breakpad/src/client/windows/crash_generation/crash_generation_server.h", + "toolkit/crashreporter/google-breakpad/src/client/windows/handler/exception_handler.cc", + "toolkit/crashreporter/google-breakpad/src/client/windows/handler/exception_handler.h", + "toolkit/crashreporter/google-breakpad/src/client/windows/sender/crash_report_sender.cc", + "toolkit/crashreporter/google-breakpad/src/client/windows/sender/crash_report_sender.vcproj", + "toolkit/crashreporter/google-breakpad/src/common/linux/dump_symbols.cc", + "toolkit/crashreporter/google-breakpad/src/common/linux/dump_symbols.h", + "toolkit/crashreporter/google-breakpad/src/common/linux/file_id.cc", + "toolkit/crashreporter/google-breakpad/src/common/mac/GTMDefines.h", + "toolkit/crashreporter/google-breakpad/src/common/mac/GTMGarbageCollection.h", + "toolkit/crashreporter/google-breakpad/src/common/mac/GTMLogger.h", + "toolkit/crashreporter/google-breakpad/src/common/mac/GTMLogger.m", + "toolkit/crashreporter/google-breakpad/src/common/mac/MachIPC.h", + "toolkit/crashreporter/google-breakpad/src/common/mac/MachIPC.mm", + "toolkit/crashreporter/google-breakpad/src/common/mac/SimpleStringDictionary.h", + "toolkit/crashreporter/google-breakpad/src/common/mac/SimpleStringDictionary.mm", + "toolkit/crashreporter/google-breakpad/src/common/mac/testing/GTMSenTestCase.h", + "toolkit/crashreporter/google-breakpad/src/common/mac/testing/GTMSenTestCase.m", + "toolkit/crashreporter/google-breakpad/src/common/solaris/dump_symbols.cc", + "toolkit/crashreporter/google-breakpad/src/common/solaris/file_id.cc", + "toolkit/crashreporter/google-breakpad/src/common/windows/http_upload.cc", + "toolkit/crashreporter/google-breakpad/src/common/windows/http_upload.h", + "toolkit/crashreporter/google-breakpad/src/google_breakpad/common/minidump_cpu_ppc.h", + "toolkit/crashreporter/google-breakpad/src/google_breakpad/processor/basic_source_line_resolver.h", + "toolkit/crashreporter/google-breakpad/src/google_breakpad/processor/minidump.h", + "toolkit/crashreporter/google-breakpad/src/google_breakpad/processor/minidump_processor.h", + "toolkit/crashreporter/google-breakpad/src/google_breakpad/processor/source_line_resolver_interface.h", + "toolkit/crashreporter/google-breakpad/src/google_breakpad/processor/symbol_supplier.h", + "toolkit/crashreporter/google-breakpad/src/processor/basic_source_line_resolver.cc", + "toolkit/crashreporter/google-breakpad/src/processor/basic_source_line_resolver_unittest.cc", + "toolkit/crashreporter/google-breakpad/src/processor/contained_range_map-inl.h", + "toolkit/crashreporter/google-breakpad/src/processor/minidump_processor.cc", + "toolkit/crashreporter/google-breakpad/src/processor/minidump_processor_unittest.cc", + "toolkit/crashreporter/google-breakpad/src/processor/minidump_stackwalk.cc", + "toolkit/crashreporter/google-breakpad/src/processor/simple_symbol_supplier.cc", + "toolkit/crashreporter/google-breakpad/src/processor/simple_symbol_supplier.h", + "toolkit/crashreporter/google-breakpad/src/processor/stackwalker.cc", + "toolkit/crashreporter/google-breakpad/src/tools/linux/dump_syms/dump_syms.cc", + "toolkit/crashreporter/google-breakpad/src/tools/mac/crash_report/crash_report.mm", + "toolkit/crashreporter/google-breakpad/src/tools/mac/crash_report/on_demand_symbol_supplier.h", + "toolkit/crashreporter/google-breakpad/src/tools/mac/crash_report/on_demand_symbol_supplier.mm", + "toolkit/crashreporter/google-breakpad/src/tools/windows/symupload/symupload.cc" + ], + "components": [ + "Toolkit::Crash Reporting", + "Firefox Build System::General" + ], + "directories": [ + "toolkit", + "toolkit/crashreporter" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "845b66a2eb91290ec6ef4a5cf2c2ec587b5c8ca3", + "author": "D\u00e3o Gottwald ", + "bug_id": 514891, + "desc": "Backed out changeset b652e12fc7e3 because of bug 514891", + "pushdate": "2009-09-07 12:18:27", + "backsout": [ + "b652e12fc7e3" + ], + "backedoutby": "", + "author_email": "dao@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 39132370.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/base/content/browser-tabPreviews.js" + ], + "components": [], + "directories": [ + "browser/base", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "ce62745a7c9c72cd51034b9f9710af3d2e45d038", + "author": "D\u00e3o Gottwald ", + "bug_id": 514891, + "desc": "Backed out changeset 83ba2c6e25eb because of bug 514891", + "pushdate": "2009-09-07 12:18:27", + "backsout": [ + "83ba2c6e25eb" + ], + "backedoutby": "", + "author_email": "dao@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 39132370.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/xul/base/src/nsMenuPopupFrame.cpp" + ], + "components": [], + "directories": [ + "layout/xul", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "c1e5dcec20dd02e3de3d6f785408840aaa91b48d", + "author": "Josh Aas ", + "bug_id": 506812, + "desc": "Back out changeset 845b625b5eb5. b=506812", + "pushdate": "2009-09-09 13:59:18", + "backsout": [ + "845b625b5eb5" + ], + "backedoutby": "", + "author_email": "joshmoz@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 37964319.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/xre/nsAppRunner.cpp" + ], + "components": [ + "Toolkit::Startup and Profile System" + ], + "directories": [ + "toolkit", + "toolkit/xre" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "6119349e864e7d27faf80076cb7ceb790a846fc5", + "author": "Jeff Muizelaar ", + "bug_id": 514803, + "desc": "Backout ffcfaed61bed: Taras Glek \u2013 Bug 514803 - Fix for new Date().toLocaleString() triggers \"An error occured throwing an exception\". Moved more charset files to jar r=bsmedberg\n\nThis caused an unexplained Ts improvement and obj-c exceptions during Ts.", + "pushdate": "2009-09-14 20:55:06", + "backsout": [ + "ffcfaed61bed" + ], + "backedoutby": "", + "author_email": "jmuizelaar@mozilla.com", + "reviewers": [ + "bsmedberg" + ], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 30589658.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/installer/package-manifest.in", + "browser/installer/removed-files.in", + "intl/uconv/src/Makefile.in", + "intl/uconv/src/jar.mn" + ], + "components": [ + "Firefox::Installer" + ], + "directories": [ + "browser/installer", + "intl", + "browser", + "intl/uconv" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "71e1c4bdc3c8c9be8e849c871e294dc8a11c8be7", + "author": "Justin Dolske ", + "bug_id": 497495, + "desc": "Backed out changeset a3f33def2dca (bug 497495 part 4)", + "pushdate": "2009-09-15 00:27:03", + "backsout": [ + "a3f33def2dca" + ], + "backedoutby": "", + "author_email": "dolske@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 39330067.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/base/nsIPresShell.h", + "layout/base/nsPresArena.cpp", + "layout/base/nsPresArena.h", + "layout/base/nsPresShell.cpp", + "layout/generic/nsFrame.cpp", + "layout/generic/nsFrame.h", + "layout/generic/nsQueryFrame.h" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "layout/generic", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "dc2598d08078bade237e66b83bf0b29ebc6b7db7", + "author": "Andreas Gal ", + "bug_id": 504516, + "desc": "Backed out changeset 48c039f7ac4f (bug 504516).", + "pushdate": "2009-09-16 23:16:27", + "backsout": [ + "48c039f7ac4f" + ], + "backedoutby": "3a8acec844913490ca457c9daa16663cbaf5a411", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 38143509.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jstracer.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "0ae65841fcf88595e023f93b86451f5fd341824e", + "author": "Brendan Eich ", + "bug_id": 471214, + "desc": "Back out changeset aff171a8c4f0 (bug 471214).", + "pushdate": "2009-09-16 23:16:27", + "backsout": [ + "aff171a8c4f0" + ], + "backedoutby": "", + "author_email": "brendan@mozilla.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 40358494.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/imacros.c.out", + "js/src/jsapi.cpp", + "js/src/jsarray.cpp", + "js/src/jsemit.cpp", + "js/src/jsinterp.cpp", + "js/src/jsiter.cpp", + "js/src/jsobj.cpp", + "js/src/jsobj.h", + "js/src/jsopcode.cpp", + "js/src/jsopcode.tbl", + "js/src/jsops.cpp", + "js/src/jsparse.cpp", + "js/src/jsscope.cpp", + "js/src/jsscope.h", + "js/src/jstracer.cpp", + "js/src/jstypes.h", + "js/src/jsxdrapi.h" + ], + "components": [ + "Core::JavaScript Engine" + ], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "3a8acec844913490ca457c9daa16663cbaf5a411", + "author": "Andreas Gal ", + "bug_id": 504516, + "desc": "Backed out changeset dc2598d08078 (re-landing bug 504516).", + "pushdate": "2009-09-16 23:16:27", + "backsout": [ + "dc2598d08078" + ], + "backedoutby": "", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 38143509.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jstracer.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "cda3d0eefedd79d3741d474678ab396d56c56ba1", + "author": "Andreas Gal ", + "bug_id": 515290, + "desc": "Backed out changeset 5c7fbeed8f96 (bug 515290, accidentally committed unrelated changes with the bug).", + "pushdate": "2009-09-16 23:16:27", + "backsout": [ + "5c7fbeed8f96" + ], + "backedoutby": "", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 38143509.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/nanojit/NativeARM.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "68b5e9772b4cd613caad675815d949a7528526a8", + "author": "Ted Mielczarek ", + "bug_id": 494165, + "desc": "Backed out changeset e5f6affc4c88 for breaking Mochitest\nBug 494165 - Support --total-chunks, --this-chunk, --chunk-by-dir, and --shuffle arguments to runtests.py. r=ted", + "pushdate": "2009-09-21 13:10:14", + "backsout": [ + "e5f6affc4c88" + ], + "backedoutby": "", + "author_email": "ted.mielczarek@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 47506850.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "testing/mochitest/runtests.py.in", + "testing/mochitest/tests/SimpleTest/setup.js" + ], + "components": [ + "Testing::Mochitest" + ], + "directories": [ + "testing/mochitest", + "testing" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "80f8fb6eb86e72f39cd3f6ff0f6af48329e8b380", + "author": "Markus Stange ", + "bug_id": 517804, + "desc": "Backed out changeset 7799cfb99362 (Bug 517804 - Flush reflows and invalidations during viewWillDraw) because it caused a ts_shutdown regression.", + "pushdate": "2009-09-22 20:54:29", + "backsout": [ + "7799cfb99362" + ], + "backedoutby": "", + "author_email": "mstange@themasta.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 38863365.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "view/src/nsViewManager.cpp", + "widget/public/nsGUIEvent.h", + "widget/src/cocoa/nsChildView.mm" + ], + "components": [], + "directories": [ + "widget", + "widget/public", + "view/src", + "view", + "widget/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "75a5fcf1a393cfccab3141f4774307d4b05c31fd", + "author": "Jeff Muizelaar ", + "bug_id": 512865, + "desc": "Backed out changeset cb4f078cc8cb (bug 512865)\n\nWas causing crashes on the leak test box.", + "pushdate": "2009-09-25 03:36:19", + "backsout": [ + "cb4f078cc8cb" + ], + "backedoutby": "", + "author_email": "jmuizelaar@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 31477731.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "gfx/qcms/Makefile.in", + "gfx/qcms/qcmsint.h", + "gfx/qcms/transform-sse1.c", + "gfx/qcms/transform-sse2.c", + "gfx/qcms/transform.c" + ], + "components": [ + "Core::Graphics" + ], + "directories": [ + "gfx/qcms", + "gfx" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "687f2a1f5ad278bbc52e6e4ff3ef829d18339ef0", + "author": "Jason Orendorff ", + "bug_id": 500431, + "desc": "Backed out changeset eafee0100926 (bug 500431) due to Tinderbox orangeness", + "pushdate": "2009-09-26 03:38:06", + "backsout": [ + "eafee0100926" + ], + "backedoutby": "", + "author_email": "jorendorff@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 41840815.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jspropcache.h" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "873dd3e379db6061c9f0cb4c0c401fb0bc656421", + "author": "Jason Orendorff ", + "bug_id": 500431, + "desc": "Backed out changeset 8abad92fd850 (bug 500431) due to Tinderbox orangeness", + "pushdate": "2009-09-26 03:38:06", + "backsout": [ + "8abad92fd850" + ], + "backedoutby": "", + "author_email": "jorendorff@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 41840815.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsops.cpp", + "js/src/jspropcache.h", + "js/src/jspropcacheinlines.h" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "31b6f6e8a56d0074eb82807a47162054b6fd522d", + "author": "Jason Orendorff ", + "bug_id": 500431, + "desc": "Backed out changeset 3f508cfdfa36 (bug 500431) due to tinderbox orangeness", + "pushdate": "2009-09-26 03:38:06", + "backsout": [ + "3f508cfdfa36" + ], + "backedoutby": "", + "author_email": "jorendorff@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 41840815.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/Makefile.in", + "js/src/jsbuiltins.cpp", + "js/src/jscntxt.cpp", + "js/src/jscntxt.h", + "js/src/jsinterp.cpp", + "js/src/jsobj.cpp", + "js/src/jsops.cpp", + "js/src/jspropcache.cpp", + "js/src/jspropcache.h", + "js/src/jspropcacheinlines.h", + "js/src/jsscript.cpp", + "js/src/jstracer.cpp" + ], + "components": [ + "Firefox Build System::General" + ], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "0f39d12ba50518f25c340f088103ba6f1c607b26", + "author": "Jason Orendorff ", + "bug_id": 500431, + "desc": "Backed out changeset 2fbd2420ef8b (bug 500431) due to Tinderbox orangeness.", + "pushdate": "2009-09-26 03:38:06", + "backsout": [ + "2fbd2420ef8b" + ], + "backedoutby": "", + "author_email": "jorendorff@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 41840815.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/Makefile.in", + "js/src/jsinterp.cpp", + "js/src/jsinterp.h", + "js/src/jspropcache.cpp", + "js/src/jspropcache.h" + ], + "components": [ + "Firefox Build System::General" + ], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "2c67a109e6265c64b3126c111de59482018242f0", + "author": "Robert Sayre ", + "bug_id": 518448, + "desc": "Backed out changeset f5ea964eb493. (Brendan Eich \u2014 High-level CSE for shape guards (518448, r=jorendorff).", + "pushdate": "2009-09-26 15:23:09", + "backsout": [ + "f5ea964eb493" + ], + "backedoutby": "", + "author_email": "sayrer@gmail.com", + "reviewers": [ + "jorendorff" + ], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 40766756.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsscope.cpp", + "js/src/jstracer.cpp", + "js/src/jstracer.h", + "js/src/nanojit/LIR.h", + "js/src/nanojit/LIRopcode.tbl" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "744a11942d04650232e02df7954db4dc5452ef79", + "author": "Josh Aas ", + "bug_id": 506812, + "desc": "Backed out changeset 65aff8912e7c. b=506812", + "pushdate": "2009-09-27 07:10:24", + "backsout": [ + "65aff8912e7c" + ], + "backedoutby": "", + "author_email": "joshmoz@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 39494985.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/xre/nsAppRunner.cpp", + "xpcom/io/nsLocalFileOSX.mm" + ], + "components": [ + "Toolkit::Startup and Profile System" + ], + "directories": [ + "xpcom", + "xpcom/io", + "toolkit", + "toolkit/xre" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "08c4c88536854e24ec9cc9bc14f5d148e39bc661", + "author": "Josh Aas ", + "bug_id": 506812, + "desc": "Backed out changeset 76c570389975. b=506812", + "pushdate": "2009-09-27 09:55:57", + "backsout": [ + "76c570389975" + ], + "backedoutby": "", + "author_email": "joshmoz@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 39504918.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "xpcom/io/nsLocalFileOSX.h", + "xpcom/io/nsLocalFileOSX.mm" + ], + "components": [], + "directories": [ + "xpcom/io", + "xpcom" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "7eab054403ff5dc04f3ce061125a32049476041a", + "author": "Shawn Wilsher ", + "bug_id": 517604, + "desc": "Backed out changeset 467f14a11325 (bug 517604)", + "pushdate": "2009-10-01 00:04:41", + "backsout": [ + "467f14a11325" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 41761050.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "xpcom/tests/TestHarness.h" + ], + "components": [ + "Core::XPCOM" + ], + "directories": [ + "xpcom", + "xpcom/tests" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "2144fdf97e50c3a09502d25f593785a66b237102", + "author": "Boris Zbarsky ", + "bug_id": 518940, + "desc": "Backed out changeset e22b5d4e8ce9 (bug 518940) on suspicion of causing Linux orange.", + "pushdate": "2009-10-01 03:19:04", + "backsout": [ + "e22b5d4e8ce9" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 38812452.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "modules/plugin/test/mochitest/Makefile.in", + "modules/plugin/test/mochitest/test_npruntime_npninvoke.html", + "modules/plugin/test/testplugin/README", + "modules/plugin/test/testplugin/nptest.cpp" + ], + "components": [], + "directories": [ + "modules/plugin", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "fb9d4a6b8330adff5022ccdaeb52285f3d95a693", + "author": "Daniel Holbert ", + "bug_id": 518991, + "desc": "Backed out changeset 58c5864cb9c6 (Bug 518991) due to linux orange (test failure in test_bug408328.html & 9240-byte leak)", + "pushdate": "2009-10-01 06:43:45", + "backsout": [ + "58c5864cb9c6" + ], + "backedoutby": "", + "author_email": "dholbert@cs.stanford.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 43548352.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/xpconnect/src/XPCChromeObjectWrapper.cpp", + "js/src/xpconnect/src/xpcinlines.h", + "js/src/xpconnect/src/xpcjsruntime.cpp", + "js/src/xpconnect/src/xpcprivate.h" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "f0bf246917580c878b38181ad1ed519b2a181934", + "author": "Igor Bukanov ", + "bug_id": 517199, + "desc": "Backed out changeset 31682547b6f1 - bug 517199 has shown persistent failure on Windows tinderboxes.", + "pushdate": "2009-10-07 06:47:58", + "backsout": [ + "31682547b6f1" + ], + "backedoutby": "", + "author_email": "igor@mir2.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 41073179.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsatom.cpp", + "js/src/jscntxt.h", + "js/src/jsgc.cpp", + "js/src/jsgc.h", + "js/src/jsxml.h" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "0416997adea8dea5e38e9ff5ed802fd1d29857b3", + "author": "Igor Bukanov ", + "bug_id": 517199, + "desc": "Backed out changeset 19b4c1cacdb8 - everything related to bug 517199.", + "pushdate": "2009-10-07 06:47:58", + "backsout": [ + "19b4c1cacdb8" + ], + "backedoutby": "", + "author_email": "igor@mir2.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 41073179.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsapi.cpp", + "js/src/jsarray.cpp", + "js/src/jsbuiltins.cpp", + "js/src/jsfun.h", + "js/src/jsgc.cpp", + "js/src/jsgc.h", + "js/src/jsobj.cpp", + "js/src/jsops.cpp", + "js/src/jsstr.cpp", + "js/src/jsxml.cpp" + ], + "components": [ + "Core::JavaScript Engine" + ], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "5f550d67ae78e4db972d23f5132d3d304996cdc3", + "author": "Peter Van der Beken ", + "bug_id": 517196, + "desc": "Backed out changeset 542fa9413bd0, fix for bug 517196 (The JSClass of wrappers shouldn't change when morphing from slim to XPCWrappedNative), to try to fix orange.", + "pushdate": "2009-10-08 20:42:17", + "backsout": [ + "542fa9413bd0" + ], + "backedoutby": "", + "author_email": "peterv@propagandism.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 40970364.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "caps/src/nsScriptSecurityManager.cpp", + "js/src/xpconnect/idl/nsIXPConnect.idl", + "js/src/xpconnect/src/XPCChromeObjectWrapper.cpp", + "js/src/xpconnect/src/nsXPConnect.cpp", + "js/src/xpconnect/src/xpcconvert.cpp", + "js/src/xpconnect/src/xpcjsid.cpp", + "js/src/xpconnect/src/xpcprivate.h", + "js/src/xpconnect/src/xpcquickstubs.cpp", + "js/src/xpconnect/src/xpcwrappednative.cpp", + "js/src/xpconnect/src/xpcwrappednativejsops.cpp", + "js/src/xpconnect/src/xpcwrappednativescope.cpp" + ], + "components": [], + "directories": [ + "caps", + "js/src", + "js", + "caps/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "8d2de8ddfa3b79064d583a93d239153849decef6", + "author": "Markus Stange ", + "bug_id": 456646, + "desc": "Backed out changeset 8c4658f8f0dc, bug 456646 (Cocoa print dialog) - we can do better.", + "pushdate": "2009-10-09 07:14:00", + "backsout": [ + "8c4658f8f0dc" + ], + "backedoutby": "", + "author_email": "mstange@themasta.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 40282936.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/app/Makefile.in", + "config/autoconf.mk.in", + "configure.in", + "dom/locales/en-US/chrome/printdialog.properties", + "dom/locales/jar.mn", + "embedding/components/printingui/src/mac/Makefile.in", + "embedding/components/printingui/src/mac/nsPrintingPromptService.h", + "embedding/components/printingui/src/mac/nsPrintingPromptServiceX.mm", + "embedding/components/printingui/src/win/nsPrintDialogUtil.cpp", + "toolkit/locales/en-US/chrome/global/gnomeprintdialog.properties", + "toolkit/locales/en-US/chrome/global/printdialog.properties", + "toolkit/locales/jar.mn", + "widget/public/Makefile.in", + "widget/src/cocoa/Makefile.in", + "widget/src/cocoa/nsDeviceContextSpecX.h", + "widget/src/cocoa/nsDeviceContextSpecX.mm", + "widget/src/cocoa/nsPrintDialogX.h", + "widget/src/cocoa/nsPrintDialogX.mm", + "widget/src/cocoa/nsPrintOptionsX.h", + "widget/src/cocoa/nsPrintOptionsX.mm", + "widget/src/cocoa/nsPrintSettingsX.h", + "widget/src/cocoa/nsPrintSettingsX.mm", + "widget/src/cocoa/nsWidgetFactory.mm", + "widget/src/gtk2/nsPrintDialogGTK.cpp" + ], + "components": [ + "Core::DOM: Core & HTML", + "Firefox Build System::General" + ], + "directories": [ + "embedding/components", + "widget", + "embedding", + "toolkit", + "browser/app", + "toolkit/locales", + "config", + "dom/locales", + "dom", + "widget/public", + "browser", + "widget/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "505a2a075e1125d4e22bd39de319aba6b75fd275", + "author": "L. David Baron ", + "bug_id": 516013, + "desc": "Backed out changeset 5f03363ae12d (Bug 516013) due to xpcshell test failure (test_LightweightThemeManager) caused by exception thrown from the code added in that changeset.", + "pushdate": "2009-10-09 20:32:36", + "backsout": [ + "5f03363ae12d" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 44328877.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/mozapps/extensions/src/LightweightThemeManager.jsm" + ], + "components": [], + "directories": [ + "toolkit/mozapps", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "b40bf2ef14a7abd4780f5e27b3f1b6a6eeaf2040", + "author": "Boris Zbarsky ", + "bug_id": 489925, + "desc": "Backed out changeset c5fe17b1caa9 (bug 489925)", + "pushdate": "2009-10-13 20:51:31", + "backsout": [ + "c5fe17b1caa9" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 39912399.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/base/src/nsDocument.cpp", + "content/base/test/Makefile.in", + "content/base/test/test_bug489925.xhtml" + ], + "components": [], + "directories": [ + "content/base", + "content" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "86a6cd7011186bb5f48d02df639989627ce159bc", + "author": "Paul O\u2019Shannessy ", + "bug_id": 511761, + "desc": "Backed out changeset 89f53914ecd9 (bug 511761)", + "pushdate": "2009-10-14 19:44:25", + "backsout": [ + "89f53914ecd9" + ], + "backedoutby": "", + "author_email": "paul@oshannessy.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 17373629.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/app/Makefile.in", + "toolkit/mozapps/extensions/src/nsExtensionManager.js.in", + "toolkit/xre/nsAppRunner.cpp", + "xpcom/build/nsXPComInit.cpp", + "xpcom/components/nsComponentManager.cpp", + "xpcom/io/nsFastLoadFile.cpp", + "xpcom/system/nsIXULRuntime.idl", + "xulrunner/app/Makefile.in" + ], + "components": [ + "Core::XPCOM", + "Firefox Build System::General", + "Toolkit::Startup and Profile System" + ], + "directories": [ + "toolkit", + "browser/app", + "xulrunner/app", + "xpcom/io", + "toolkit/xre", + "toolkit/mozapps", + "xpcom/build", + "xpcom/system", + "browser", + "xpcom", + "xpcom/components", + "xulrunner" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "c0af5f72e7a8c6ad41dfa35b404487eb98bde2a8", + "author": "Andreas Gal ", + "bug_id": 521880, + "desc": "Backed out changeset 1a747dd43904 (bug 521880).", + "pushdate": "2009-10-16 17:35:08", + "backsout": [ + "1a747dd43904" + ], + "backedoutby": "", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 40715030.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jstl.h", + "js/src/jstracer.cpp", + "js/src/jstracer.h", + "js/src/jsvector.h" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "39b3dbc393bf8996d58e6b2289d6d15622c5175c", + "author": "Igor Bukanov ", + "bug_id": 505315, + "desc": "Backed out changeset 487b81c753c0 - landing of bug 505315 caused talos crashes across platforms.", + "pushdate": "2009-10-16 17:35:08", + "backsout": [ + "487b81c753c0" + ], + "backedoutby": "", + "author_email": "igor@mir2.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 41889609.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsapi.cpp", + "js/src/jsarray.cpp", + "js/src/jscntxt.cpp", + "js/src/jscntxt.h", + "js/src/jsgc.cpp", + "js/src/jsgc.h", + "js/src/jsobj.cpp", + "js/src/jsops.cpp", + "js/src/jstracer.cpp" + ], + "components": [ + "Core::JavaScript Engine" + ], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "ef149d6975fba3847d8fa31a0913b8669e39bfd7", + "author": "Brian Crowder ", + "bug_id": 519843, + "desc": "Backed out changeset 9992a4a638e2 due to Tp regression (was bug 519843)", + "pushdate": "2009-10-21 14:58:16", + "backsout": [ + "9992a4a638e2" + ], + "backedoutby": "", + "author_email": "crowder@fiverocks.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 41181104.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/shell/js.cpp" + ], + "components": [ + "Core::JavaScript Engine" + ], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "f702deeb07be290c488489585cb969ee202ff537", + "author": "Brian Crowder ", + "bug_id": 517109, + "desc": "Backed out changeset 899023a9fbb0 due to Ts regression (was bug 517109)", + "pushdate": "2009-10-21 14:59:50", + "backsout": [ + "899023a9fbb0" + ], + "backedoutby": "", + "author_email": "crowder@fiverocks.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 41181198.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/components/faststart/FastStartup.js" + ], + "components": [], + "directories": [ + "toolkit/components", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "e3f00dd9617b2918b6ee116026914972eef95a61", + "author": "Markus Stange ", + "bug_id": 300904, + "desc": "Backed out changeset 3ee95c194798, bug 300904 (tracking rects) in order to investigate the Mac DHTML performance regression.", + "pushdate": "2009-10-21 15:10:31", + "backsout": [ + "3ee95c194798" + ], + "backedoutby": "", + "author_email": "mstange@themasta.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 41348327.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "widget/src/cocoa/nsChildView.h", + "widget/src/cocoa/nsChildView.mm", + "widget/src/cocoa/nsCocoaWindow.mm", + "widget/tests/native_mouse_mac_window.xul" + ], + "components": [], + "directories": [ + "widget/tests", + "widget", + "widget/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "9e086fa7728869c161e37deefacb75ddcda34f65", + "author": "L. David Baron ", + "bug_id": 523934, + "desc": "Backed out changeset 1aea70ef6f63 (temporary debugging code for bug 523934).", + "pushdate": "2009-10-23 14:47:50", + "backsout": [ + "1aea70ef6f63" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 45517791.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/base/crashtests/500467-1.html", + "layout/forms/crashtests/366537-1.xhtml", + "layout/tools/reftest/reftest.js" + ], + "components": [ + "Core::Layout", + "Core::Layout: Form Controls" + ], + "directories": [ + "layout/tools", + "layout/forms", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "2909091fb254aa31b11cdfb4f4e9a25ab4253d85", + "author": "Igor Bukanov ", + "bug_id": 524346, + "desc": "Backed out changeset 14c76164f4c2 - patch for bug 524346 caused test fails", + "pushdate": "2009-10-29 21:11:42", + "backsout": [ + "14c76164f4c2" + ], + "backedoutby": "", + "author_email": "igor@mir2.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 43025803.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsapi.cpp", + "js/src/jsarray.cpp", + "js/src/jsbuiltins.cpp", + "js/src/jscntxt.h", + "js/src/jsdate.cpp", + "js/src/jsmath.cpp", + "js/src/jsnum.cpp", + "js/src/jsnum.h", + "js/src/jsops.cpp", + "js/src/jsparse.cpp", + "js/src/jsstr.cpp", + "js/src/jstracer.cpp", + "js/src/jsxml.cpp" + ], + "components": [ + "Core::JavaScript: Standard Library", + "Core::JavaScript Engine" + ], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "fdc781e5774d92e5cd542b878ef2d33eceb00f4f", + "author": "David Mandelin ", + "bug_id": 515211, + "desc": "Backed out changeset 109b74e8e902 due to tinderbox bustage (was bug 515211)", + "pushdate": "2009-10-30 18:15:48", + "backsout": [ + "109b74e8e902" + ], + "backedoutby": "", + "author_email": "dmandelin@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 47851757.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "build/wince/shunt/mozce_shunt.def.in", + "memory/jemalloc/Makefile.in", + "memory/jemalloc/jemalloc.c", + "memory/jemalloc/jemalloc.h" + ], + "components": [], + "directories": [ + "build/wince", + "memory", + "memory/jemalloc", + "build" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "6258b513a554c5098972f89716461dd5460f09c2", + "author": "Boris Zbarsky ", + "bug_id": 526178, + "desc": "Backed out changeset 2fa27d8cd3d2 (bug 526178) to fix browser-chrome orange.", + "pushdate": "2009-11-05 01:42:46", + "backsout": [ + "2fa27d8cd3d2" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 41830674.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/xbl/test/Makefile.in", + "content/xbl/test/test_bug526178.xhtml", + "layout/base/nsCSSFrameConstructor.cpp", + "layout/base/nsCSSFrameConstructor.h" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "content", + "layout", + "layout/base", + "content/xbl" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "811e1602f0ab7f1c533ad8e1e54f756b9b8eab08", + "author": "Phil Ringnalda ", + "bug_id": 526789, + "desc": "Backed out changeset a696d331ebf7 (bug 526789) for test failures", + "pushdate": "2009-11-10 03:48:53", + "backsout": [ + "a696d331ebf7" + ], + "backedoutby": "", + "author_email": "philringnalda@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 44332543.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "extensions/cookie/test/unit/test_bug481775.js", + "extensions/cookie/test/unit/test_bug526789.js", + "netwerk/cookie/public/nsICookieManager.idl", + "netwerk/cookie/src/nsCookieService.cpp" + ], + "components": [], + "directories": [ + "netwerk/cookie", + "extensions", + "netwerk", + "extensions/cookie" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "e8f791a62494b867be1757d44fe4e045afd406d6", + "author": "Benjamin Smedberg ", + "bug_id": 525221, + "desc": "Backed out changeset 3e1290bba902 - Bug 525221 which was committed accidentally.", + "pushdate": "2009-11-10 14:54:29", + "backsout": [ + "3e1290bba902" + ], + "backedoutby": "", + "author_email": "benjamin@smedbergs.us", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 51833105.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "nsprpub/config/rules.mk" + ], + "components": [ + "NSPR::NSPR" + ], + "directories": [ + "nsprpub/config", + "nsprpub" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "eb6ad91709a7d298f32e70dbee18e9babc4a420a", + "author": "D\u00e3o Gottwald ", + "bug_id": 528776, + "desc": "Backed out changeset fa212b6a9d72 to see if it caused bug 528776", + "pushdate": "2009-11-18 08:23:36", + "backsout": [ + "fa212b6a9d72" + ], + "backedoutby": "", + "author_email": "dao@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 45339079.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/components/sessionstore/test/browser/browser_394759.js" + ], + "components": [], + "directories": [ + "browser/components", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "ac278013c79942a704e998304c58067803d41e2d", + "author": "Jeff Walden ", + "bug_id": 478047, + "desc": "Backed out changeset 975b36c50d33; bug 478047's fix was misguided and contra ES5, and moving to ES5 semantics at this late date in the release cycle seems unwise. We'll move from old and busted directly to ES5 shortly after 3.6 so as to provide maximum time for ironing out incompatibilities in the wild. r=gal", + "pushdate": "2009-11-19 10:58:47", + "backsout": [ + "975b36c50d33" + ], + "backedoutby": "", + "author_email": "jwalden@mit.edu", + "reviewers": [ + "gal" + ], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 47729464.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsobj.cpp", + "js/src/tests/ecma_3_1/extensions/jstests.list", + "js/src/tests/ecma_3_1/extensions/regress-478047.js", + "js/src/tests/js1_5/extensions/regress-452178.js", + "js/src/tests/js1_6/extensions/regress-414098.js" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "6432560e430e1db22fe038e4450a4912221837f4", + "author": "Mark Banner ", + "bug_id": 495392, + "desc": "Back out changeset c9c35333436b / Bug 495392 due to build bustage", + "pushdate": "2009-11-24 22:31:04", + "backsout": [ + "c9c35333436b" + ], + "backedoutby": "", + "author_email": "bugzilla@standard8.plus.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 46617168.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "widget/src/gtk2/nsClipboard.cpp", + "widget/src/gtk2/nsDragService.cpp" + ], + "components": [], + "directories": [ + "widget", + "widget/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "e101dddbc4324f9ef356207c1bcf8a65b184f5ff", + "author": "Igor Bukanov ", + "bug_id": 424558, + "desc": "Backed out changeset b774250f04d3 - the landed patch for bug 424558 has regressed.", + "pushdate": "2009-12-01 18:15:12", + "backsout": [ + "b774250f04d3" + ], + "backedoutby": "", + "author_email": "igor@mir2.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 45866413.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsopcode.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "fb34a7163a43fbf79f8d1a460804452df4cf86c7", + "author": "Robert Sayre ", + "bug_id": 530507, + "desc": "Backed out changeset c696751593d6. Tolerate race condition or broken resolve hook (530507, r=jorendorff).", + "pushdate": "2009-12-01 18:15:12", + "backsout": [ + "c696751593d6" + ], + "backedoutby": "", + "author_email": "sayrer@gmail.com", + "reviewers": [ + "jorendorff" + ], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 46479479.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsobj.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "ee7bfc1923adbc60e9223103e88b3d14286137d7", + "author": "Robert Sayre ", + "bug_id": 473228, + "desc": "Backed out changeset c03ebf340688. Bye-bye middle-deletes and their O(n^2) worst case complexity; hello dictionary-mode scopes (473228, r=jorendorff).", + "pushdate": "2009-12-01 18:15:12", + "backsout": [ + "c03ebf340688" + ], + "backedoutby": "", + "author_email": "sayrer@gmail.com", + "reviewers": [ + "jorendorff" + ], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 46479479.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsapi.cpp", + "js/src/jsarray.cpp", + "js/src/jsbuiltins.cpp", + "js/src/jscntxt.h", + "js/src/jsdbgapi.cpp", + "js/src/jsinterp.cpp", + "js/src/jsobj.cpp", + "js/src/jsopcode.cpp", + "js/src/jsops.cpp", + "js/src/jsparse.cpp", + "js/src/jsscope.cpp", + "js/src/jsscope.h", + "js/src/jsscopeinlines.h", + "js/src/jsstr.cpp", + "js/src/jstracer.cpp" + ], + "components": [ + "Core::JavaScript Engine" + ], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "1da324b951822655298a68e7ed122531ce36d59d", + "author": "Shawn Wilsher ", + "bug_id": 525356, + "desc": "Backed out changeset a93d705bb969 (bug 525356).", + "pushdate": "2009-12-01 23:07:52", + "backsout": [ + "a93d705bb969" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 47114441.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "storage/src/mozStorageConnection.cpp", + "storage/src/mozStorageConnection.h", + "storage/src/mozStorageStatement.cpp" + ], + "components": [], + "directories": [ + "storage/src", + "storage" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "8e986811ab388f741166aa7b34e2caa0f8088cd4", + "author": "Shawn Wilsher ", + "bug_id": 526601, + "desc": "Backed out changeset e9f64cd044f3 (bug 526601)", + "pushdate": "2009-12-01 23:07:52", + "backsout": [ + "e9f64cd044f3" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 47114441.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/components/places/src/nsPlacesDBFlush.js", + "toolkit/components/places/tests/sync/test_database_sync_after_shutdown_with_removeAllPages.js" + ], + "components": [], + "directories": [ + "toolkit/components", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "78faeda5e9702c28f7ac40bdd2ec5bc2cce13c85", + "author": "Shawn Wilsher ", + "bug_id": 496019, + "desc": "Backed out changeset f91a016416d1 (bug 496019)", + "pushdate": "2009-12-01 23:07:52", + "backsout": [ + "f91a016416d1" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 47114441.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "storage/public/Makefile.in", + "storage/public/mozIStorageConnection.idl", + "storage/src/mozStorageAsyncStatementExecution.cpp", + "storage/src/mozStorageConnection.cpp", + "storage/src/mozStorageConnection.h", + "storage/src/mozStoragePrivateHelpers.cpp", + "storage/src/mozStoragePrivateHelpers.h", + "storage/test/unit/test_connection_executeAsync.js", + "storage/test/unit/test_storage_connection.js" + ], + "components": [ + "Toolkit::Storage" + ], + "directories": [ + "storage/src", + "storage", + "storage/test", + "storage/public" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "0af1f99d2cb05b4412464758b7f3b16ca0586ceb", + "author": "Peter Van der Beken ", + "bug_id": 524745, + "desc": "Back out 7856366bcd76 (Bug 524745 - \"Session restore sets focus to minimized windows\") to fix orange, also doesn't have approval yet.", + "pushdate": "2009-12-03 11:27:44", + "backsout": [ + "7856366bcd76" + ], + "backedoutby": "", + "author_email": "peterv@propagandism.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 45775491.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/components/sessionstore/src/nsSessionStore.js", + "browser/components/sessionstore/test/browser/Makefile.in", + "browser/components/sessionstore/test/browser/browser_524745.js" + ], + "components": [], + "directories": [ + "browser/components", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "4bbe26190c7dc6dad0c1c3440a9064b92a2a8bd7", + "author": "Gavin Sharp ", + "bug_id": 525047, + "desc": "Back out revision dbdbe3ad0234 from bug 525047 - every leak test box that's clobbered since it landed has failed, not finding the first thing it tries to import from automationutils", + "pushdate": "2009-12-16 04:36:11", + "backsout": [ + "dbdbe3ad0234" + ], + "backedoutby": "", + "author_email": "gavin@gavinsharp.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 4575651.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "build/Makefile.in", + "build/automation-build.mk", + "build/pgo/Makefile.in", + "layout/tools/reftest/Makefile.in", + "testing/mochitest/Makefile.in" + ], + "components": [], + "directories": [ + "layout/tools", + "build", + "testing/mochitest", + "testing", + "build/pgo", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "31067e0bf8bf4d1f532db455e07e710b4a1ac657", + "author": "Dietrich Ayala ", + "bug_id": 532542, + "desc": "Backed out changeset a6d5fda15815 for bug 532542 due to a test failure.", + "pushdate": "2009-12-16 08:22:45", + "backsout": [ + "a6d5fda15815" + ], + "backedoutby": "", + "author_email": "dietrich@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 45915462.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/components/nsBrowserGlue.js" + ], + "components": [], + "directories": [ + "browser/components", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "ada564e50e86a6285a5a6773cadf7b2f5bc16885", + "author": "Benjamin Smedberg ", + "bug_id": 533688, + "desc": "Backed out changeset 08e208698ef0: Bug 533688 (Firefox 3.6 failed to start with AT-SPI2 0.1.3) because of consistent orange on Mac/Linux:\n\n1001 ERROR TEST-UNEXPECTED-FAIL | chrome://mochikit/content/a11y/accessible/test_events_doc.html | Test timed out.\n1011 ERROR TEST-UNEXPECTED-FAIL | chrome://mochikit/content/a11y/accessible/test_events_draganddrop.html | [SimpleTest/SimpleTest.js, window.onerror] An error occurred - nsIAccessibleEvent is not defined at chrome://mochikit/content/a11y/accessible/events.js:766\nand subsequent errors and leaks", + "pushdate": "2009-12-16 15:33:14", + "backsout": [ + "08e208698ef0" + ], + "backedoutby": "", + "author_email": "benjamin@smedbergs.us", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 54945830.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "accessible/src/atk/nsAccessibleWrap.cpp", + "accessible/src/base/nsRootAccessible.cpp" + ], + "components": [], + "directories": [ + "accessible/src", + "accessible" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "382b527f32a5a15af9d5387b5061a67e03b40145", + "author": "Benjamin Smedberg ", + "bug_id": 474500, + "desc": "Backed out changeset 94561cb0f0bd, bug 474500 because of static-analysis bustage.", + "pushdate": "2009-12-21 15:00:07", + "backsout": [ + "94561cb0f0bd" + ], + "backedoutby": "", + "author_email": "benjamin@smedbergs.us", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 55375843.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsapi.cpp", + "js/src/jsapi.h", + "js/src/jsregexp.cpp", + "js/src/jstracer.cpp", + "js/src/jstracer.h" + ], + "components": [ + "Core::JavaScript Engine" + ], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "f32e7f33b01530d2dba7594c3899a1922da92f3c", + "author": "L. David Baron ", + "bug_id": 531585, + "desc": "Backout revisions fa5326c011b8, 8b22441911b0, and cfa10b01b1f6 (bug 531585) on suspicion of causing random orange bug 536382.", + "pushdate": "2009-12-22 20:49:25", + "backsout": [ + "fa5326c011b8", + "cfa10b01b1f6", + "8b22441911b0" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 50723486.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/base/nsPresContext.cpp", + "layout/base/nsPresContext.h", + "layout/base/nsRefreshDriver.cpp", + "layout/base/nsRefreshDriver.h", + "layout/style/nsTransitionManager.cpp", + "layout/style/nsTransitionManager.h" + ], + "components": [ + "Core::Layout", + "Core::CSS Transitions and Animations" + ], + "directories": [ + "layout/style", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "03bec0d8715431e0ce811be9d7fe98e37c970978", + "author": "L. David Baron ", + "bug_id": 535004, + "desc": "Backed out changeset 2752efeb2fdd (Bug 535004: Check if we've fired an unload event before calling OnPageShow, in DocumentViewerImpl::LoadComplete) because the NS_ABORT_IF_FALSE that it added is firing in reftest and crashtest, at least on Linux.", + "pushdate": "2009-12-24 04:06:14", + "backsout": [ + "2752efeb2fdd" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 50836095.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/base/src/nsDocument.cpp", + "layout/base/nsDocumentViewer.cpp" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "content/base", + "content", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "a7e65c58693ee91a2756dcf0f5effd79237b5297", + "author": "D\u00e3o Gottwald ", + "bug_id": 529597, + "desc": "Backed out changeset 06e4ea15db72 (bug 529597) because of test_bug_405924.html failure", + "pushdate": "2009-12-29 12:35:10", + "backsout": [ + "06e4ea15db72" + ], + "backedoutby": "", + "author_email": "dao@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 48896573.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/components/places/src/Makefile.in", + "browser/components/places/src/PlacesProtocolHandler.js", + "browser/installer/package-manifest.in" + ], + "components": [ + "Firefox::Installer" + ], + "directories": [ + "browser/installer", + "browser/components", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "ba2968f7fe46a45b9805a3c133aa1a052d18c964", + "author": "Nochum Sossonko ", + "bug_id": 530374, + "desc": "backout changeset dfc79d02e945, bug 530374 due to build failure", + "pushdate": "2009-12-31 00:07:12", + "backsout": [ + "dfc79d02e945" + ], + "backedoutby": "", + "author_email": "highmind63@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 27112703.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/xslt/src/base/txDouble.cpp", + "content/xslt/src/base/txStringUtils.cpp", + "content/xslt/src/xpath/txMozillaXPathTreeWalker.cpp", + "content/xslt/src/xpath/txNodeSet.cpp", + "content/xslt/src/xslt/txMozillaXMLOutput.cpp", + "content/xul/content/src/nsXULElement.cpp" + ], + "components": [], + "directories": [ + "content/xul", + "content", + "content/xslt" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "387da540301942dae8f4385322ff1a611f4449e8", + "author": "Timothy Nikkel ", + "bug_id": 396367, + "desc": "Backed out changeset 640bf652618a (bug 396367)", + "pushdate": "2010-01-02 02:30:58", + "backsout": [ + "640bf652618a" + ], + "backedoutby": "", + "author_email": "tnikkel@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 20041892.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/base/tests/chrome/test_bug396367-1.html", + "layout/base/tests/chrome/test_bug396367-2.html" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "35fec83dd2c53414d021c2bbae436f5b4d30b7d7", + "author": "Timothy Nikkel ", + "bug_id": 396367, + "desc": "Backed out changeset 63d4a49fbec1 (bug 396367)", + "pushdate": "2010-01-02 02:30:58", + "backsout": [ + "63d4a49fbec1" + ], + "backedoutby": "", + "author_email": "tnikkel@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 20041892.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/base/nsCSSFrameConstructor.cpp", + "layout/base/nsPresShell.cpp", + "layout/base/tests/chrome/Makefile.in", + "layout/base/tests/chrome/test_bug396367-1.html", + "layout/base/tests/chrome/test_bug396367-2.html" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "ee9b5d13cbaf7f63bf6d757629d4f745f1e84350", + "author": "Jason Orendorff ", + "bug_id": 324278, + "desc": "Backed out changeset 3862a7e48e79 due to tinderbox failures on js1_5/GC/regress-324278.js.", + "pushdate": "2010-01-11 16:41:31", + "backsout": [ + "3862a7e48e79" + ], + "backedoutby": "", + "author_email": "jorendorff@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 51132620.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsemit.cpp", + "js/src/jsfun.cpp", + "js/src/jsinterp.h", + "js/src/jsobj.cpp", + "js/src/jsops.cpp", + "js/src/jsparse.cpp", + "js/src/jsscript.cpp", + "js/src/tests/ecma_5/RegExp/7.8.5-1.js", + "js/src/tests/ecma_5/RegExp/jstests.list" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "2332266baf4de6387cd6572e5de9ff391e9f19d8", + "author": "Dave Townsend ", + "bug_id": 539165, + "desc": "Backed out changeset 4b725bb53baa from bug 539165 due to reftest failure", + "pushdate": "2010-01-13 00:28:11", + "backsout": [ + "4b725bb53baa" + ], + "backedoutby": "", + "author_email": "dtownsend@oxymoronical.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 50852649.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "gfx/cairo/README", + "gfx/cairo/cairo/src/cairo-pattern.c", + "gfx/cairo/premultiply-alpha-solid-gradients.patch", + "layout/reftests/svg/opacity-and-gradient-02-ref.svg", + "layout/reftests/svg/opacity-and-gradient-02.svg", + "layout/reftests/svg/reftest.list" + ], + "components": [ + "Core::Graphics", + "Core::SVG" + ], + "directories": [ + "layout/reftests", + "gfx/cairo", + "gfx", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "974d9ffda7b6ae093fa49de036c60a7780af4e8e", + "author": "Markus Stange ", + "bug_id": 461291, + "desc": "Backed out changeset bde448aad47c, bug 461291, due to SunSpider and DHTML performance regression.", + "pushdate": "2010-01-13 19:56:38", + "backsout": [ + "bde448aad47c" + ], + "backedoutby": "", + "author_email": "mstange@themasta.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 48623094.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "widget/src/cocoa/nsChildView.mm", + "widget/src/cocoa/nsCocoaWindow.h", + "widget/src/cocoa/nsCocoaWindow.mm" + ], + "components": [], + "directories": [ + "widget", + "widget/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "1ef1d73eb050f79d35b528150c425022ee61f0ba", + "author": "Markus Stange ", + "bug_id": 461291, + "desc": "Backed out changeset bde448aad47c, bug 461291, due to SunSpider and DHTML performance regression.", + "pushdate": "2010-01-13 19:56:38", + "backsout": [ + "bde448aad47c" + ], + "backedoutby": "", + "author_email": "mstange@themasta.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 48623094.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [], + "components": [], + "directories": [], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "ffab97de1041b4ef62a31b104dd399033c7c773d", + "author": "Peter Van der Beken ", + "bug_id": 521377, + "desc": "Backout 76cdc8296409 and 9baa220b27c0 (Bug 521377 - 'NPRuntime: Segfault when NPP_GetValue_NPPVpluginScriptableNPObject returns a null actor') to try fo fix orange.", + "pushdate": "2010-01-19 12:01:49", + "backsout": [ + "76cdc8296409" + ], + "backedoutby": "", + "author_email": "peterv@propagandism.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 49838336.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "dom/plugins/Makefile.in", + "dom/plugins/PPluginInstance.ipdl", + "dom/plugins/PPluginScriptableObject.ipdl", + "dom/plugins/PluginInstanceChild.cpp", + "dom/plugins/PluginInstanceChild.h", + "dom/plugins/PluginInstanceParent.cpp", + "dom/plugins/PluginInstanceParent.h", + "dom/plugins/PluginMessageUtils.cpp", + "dom/plugins/PluginMessageUtils.h", + "dom/plugins/PluginModuleChild.cpp", + "dom/plugins/PluginModuleChild.h", + "dom/plugins/PluginModuleParent.cpp", + "dom/plugins/PluginScriptableObjectChild.cpp", + "dom/plugins/PluginScriptableObjectChild.h", + "dom/plugins/PluginScriptableObjectParent.cpp", + "dom/plugins/PluginScriptableObjectParent.h", + "dom/plugins/PluginScriptableObjectUtils-inl.h", + "dom/plugins/PluginScriptableObjectUtils.h", + "modules/plugin/base/src/nsNPAPIPlugin.cpp" + ], + "components": [], + "directories": [ + "dom", + "modules/plugin", + "dom/plugins", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "b7008e0642660abcb74fccec100c3cbd45edc6bb", + "author": "Dave Townsend ", + "bug_id": 541739, + "desc": "Backed out changeset 4d7bde383df5 from bug 541739 due to test failures", + "pushdate": "2010-01-27 03:05:52", + "backsout": [ + "4d7bde383df5" + ], + "backedoutby": "", + "author_email": "dtownsend@oxymoronical.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 52071710.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/components/downloads/src/nsDownloadManager.cpp", + "toolkit/components/downloads/test/unit/test_privatebrowsing_cancel.js" + ], + "components": [], + "directories": [ + "toolkit/components", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "6d50455cabaa3c695ad6e23200782d0790d6d59d", + "author": "Daniel Holbert ", + "bug_id": 543034, + "desc": "Backed out changeset dc7a04be6904 on suspicion of causing bug 543034.", + "pushdate": "2010-01-30 03:08:18", + "backsout": [ + "dc7a04be6904" + ], + "backedoutby": "", + "author_email": "dholbert@cs.stanford.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 53989825.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/components/sessionstore/src/nsSessionStore.js", + "browser/components/sessionstore/test/browser/Makefile.in", + "browser/components/sessionstore/test/browser/browser_500328.js", + "content/base/public/nsIDocument.h", + "content/base/src/nsContentUtils.cpp", + "content/base/src/nsGkAtomList.h", + "content/events/src/Makefile.in", + "content/events/src/nsDOMEvent.cpp", + "content/events/src/nsDOMEvent.h", + "content/events/src/nsDOMPopStateEvent.cpp", + "content/events/src/nsDOMPopStateEvent.h", + "content/events/src/nsEventDispatcher.cpp", + "docshell/base/crashtests/500328-1.html", + "docshell/base/crashtests/crashtests.list", + "docshell/base/nsDocShell.cpp", + "docshell/base/nsDocShell.h", + "docshell/base/nsDocShellLoadTypes.h", + "docshell/base/nsIDocShell.idl", + "docshell/base/nsIDocShellHistory.idl", + "docshell/shistory/public/nsISHEntry.idl", + "docshell/shistory/src/nsSHEntry.cpp", + "docshell/shistory/src/nsSHEntry.h", + "docshell/shistory/src/nsSHistory.cpp", + "docshell/shistory/src/nsSHistory.h", + "dom/base/nsDOMClassInfo.cpp", + "dom/base/nsDOMClassInfo.h", + "dom/base/nsDOMClassInfoID.h", + "dom/base/nsGlobalWindow.cpp", + "dom/base/nsGlobalWindow.h", + "dom/base/nsHistory.cpp", + "dom/base/nsLocation.cpp", + "dom/base/nsPIDOMWindow.h", + "dom/interfaces/base/nsIDOMHistory.idl", + "dom/interfaces/events/Makefile.in", + "dom/interfaces/events/nsIDOMPopStateEvent.idl", + "dom/interfaces/json/nsIJSON.idl", + "dom/src/json/Makefile.in", + "dom/src/json/nsJSON.cpp", + "dom/tests/mochitest/whatwg/Makefile.in", + "dom/tests/mochitest/whatwg/file_bug500328_1.html", + "dom/tests/mochitest/whatwg/file_bug500328_2.html", + "dom/tests/mochitest/whatwg/test_bug500328.html", + "js/src/xpconnect/idl/nsIDispatchSupport.idl", + "js/src/xpconnect/idl/nsIXPConnect.idl", + "js/src/xpconnect/src/nsXPConnect.cpp", + "js/src/xpconnect/src/xpcprivate.h", + "js/src/xpconnect/src/xpcvariant.cpp", + "layout/base/nsDocumentViewer.cpp", + "modules/libpref/src/init/all.js", + "storage/src/Variant_inl.h", + "widget/public/nsGUIEvent.h", + "widget/src/xpwidgets/nsBaseWidget.cpp", + "xpcom/ds/nsIVariant.idl", + "xpcom/ds/nsVariant.cpp" + ], + "components": [ + "Core::DOM: Core & HTML", + "Core::XPCOM", + "Core::DOM: Navigation", + "Firefox::Bookmarks & History", + "Core::Layout" + ], + "directories": [ + "modules/libpref", + "docshell/shistory", + "docshell/base", + "dom/interfaces", + "storage", + "dom/base", + "content/base", + "content", + "modules", + "js/src", + "dom", + "browser", + "js", + "layout", + "xpcom/ds", + "dom/src", + "docshell", + "storage/src", + "browser/components", + "xpcom", + "layout/base", + "widget", + "dom/tests", + "widget/public", + "widget/src", + "content/events" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "aefe5d2d14d87caa20f4ee572888fc01d46e0a2d", + "author": "Karl Tomlinson ", + "bug_id": 540910, + "desc": "backout ebca6061298f as an immediate flush should not be necessary b=540910", + "pushdate": "2010-02-02 06:01:17", + "backsout": [ + "ebca6061298f" + ], + "backedoutby": "", + "author_email": "karlt+@karlt.net", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 49690053.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/generic/test/plugin_clipping_helper2.xhtml" + ], + "components": [], + "directories": [ + "layout/generic", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "a8d05daa31921404c46e258857f0e9c4513382ae", + "author": "Karl Tomlinson ", + "bug_id": 355548, + "desc": "backout 4dc8bdb7af6d due to 355548-2 reftest failure", + "pushdate": "2010-02-02 07:30:20", + "backsout": [ + "4dc8bdb7af6d" + ], + "backedoutby": "", + "author_email": "karlt+@karlt.net", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 49695396.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/base/nsCSSFrameConstructor.cpp", + "layout/mathml/mathml.css", + "layout/reftests/mathml/math-height-1-ref.xhtml", + "layout/reftests/mathml/math-height-1.xhtml", + "layout/reftests/mathml/reftest.list" + ], + "components": [ + "Core::Layout", + "Core::MathML" + ], + "directories": [ + "layout/reftests", + "layout/mathml", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "e03e9d4315d8b99f9135ea3e971c74a6eda8ef30", + "author": "Daniel Holbert ", + "bug_id": 542263, + "desc": "Backed out changeset 8006ad2d0c06 (tests for bug 542263), since its test 'test_GCrace.html' failed on OSX in its first cycle.", + "pushdate": "2010-02-03 02:59:54", + "backsout": [ + "8006ad2d0c06" + ], + "backedoutby": "", + "author_email": "dholbert@cs.stanford.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 54334921.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "build/automation.py.in", + "modules/plugin/test/mochitest/Makefile.in", + "modules/plugin/test/mochitest/test_GCrace.html", + "modules/plugin/test/testplugin/README", + "modules/plugin/test/testplugin/nptest.cpp" + ], + "components": [], + "directories": [ + "modules", + "modules/plugin", + "build" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "29795c58dd72f74e5cde8365503544a8e851a8f8", + "author": "Daniel Holbert ", + "bug_id": 542263, + "desc": "Backed out changeset c502a1a0900a (patch for bug 542263), since its test 'test_GCrace.html' failed on OSX in its first cycle.", + "pushdate": "2010-02-03 02:59:54", + "backsout": [ + "c502a1a0900a" + ], + "backedoutby": "", + "author_email": "dholbert@cs.stanford.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 54334921.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "dom/plugins/PluginScriptableObjectChild.cpp", + "dom/plugins/PluginScriptableObjectParent.cpp" + ], + "components": [], + "directories": [ + "dom", + "dom/plugins" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "56a02566af5364f799d5fb319e26e43d9f2b318c", + "author": "Daniel Holbert ", + "bug_id": 543034, + "desc": "Backed out changeset 0949b169357b (possible workaround for Bug 543034), since it didn't help.", + "pushdate": "2010-02-03 03:33:23", + "backsout": [ + "0949b169357b" + ], + "backedoutby": "", + "author_email": "dholbert@cs.stanford.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 54336930.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/components/places/src/nsAnnotationService.cpp" + ], + "components": [], + "directories": [ + "toolkit/components", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "6b2bbb23d53a0767158a7ebebb8a179e8a612956", + "author": "D\u00e3o Gottwald ", + "bug_id": 398289, + "desc": "Backed out changeset 8c2e7ae5cceb because of test_bug398289.html failure", + "pushdate": "2010-02-04 16:18:05", + "backsout": [ + "8c2e7ae5cceb" + ], + "backedoutby": "", + "author_email": "dao@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 52106748.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/base/src/nsGkAtomList.h", + "content/canvas/src/nsCanvasRenderingContext2D.cpp", + "content/html/content/src/nsHTMLCanvasElement.cpp", + "layout/base/nsLayoutUtils.cpp", + "layout/base/nsLayoutUtils.h", + "layout/base/nsPresContext.cpp", + "layout/base/nsPresShell.cpp", + "layout/generic/nsFrame.cpp", + "layout/generic/nsHTMLReflowState.cpp", + "layout/generic/nsIFrame.h" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "content/canvas", + "layout/generic", + "content/base", + "content", + "content/html", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "609a51758b08110dd0fe738a88c95783d6fea658", + "author": "L. David Baron ", + "bug_id": 544505, + "desc": "Backed out changeset db1f6446efda (flip pref, bug 544505), which is intended only for 1.9.3a1 and not to stay on trunk.", + "pushdate": "2010-02-05 19:37:29", + "backsout": [ + "db1f6446efda" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 54607170.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/app/profile/firefox.js" + ], + "components": [ + "Firefox::General" + ], + "directories": [ + "browser", + "browser/app" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "edbd3823dceb5ddb8cb16722fb98f34d571787e5", + "author": "Boris Zbarsky ", + "bug_id": 543111, + "desc": "Backed out changeset df90f0171ba7 (bug 543111)", + "pushdate": "2010-02-09 19:35:07", + "backsout": [ + "df90f0171ba7" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 50189415.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/crashreporter/Makefile.in", + "toolkit/crashreporter/google-breakpad/src/common/dwarf/functioninfo.cc", + "toolkit/crashreporter/google-breakpad/src/common/mac/Makefile.in" + ], + "components": [ + "Toolkit::Crash Reporting" + ], + "directories": [ + "toolkit", + "toolkit/crashreporter" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "83adba23046790d0de32384c4c12cf5974cb839e", + "author": "L. David Baron ", + "bug_id": 540692, + "desc": "Backed out changeset 0ddf975663a0 (Bug 540692: Blocklist vksaver.dll) to test the theory that it is the cause of number 1 topcrash bug 545195.", + "pushdate": "2010-02-11 05:54:10", + "backsout": [ + "0ddf975663a0" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 55076171.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/xre/nsWindowsDllBlocklist.h" + ], + "components": [], + "directories": [ + "toolkit", + "toolkit/xre" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "9ce73c19f74a239c5deda19cdaed34ce7c627058", + "author": "Benjamin Smedberg ", + "bug_id": 517097, + "desc": "Backed out changeset fe08cc555248 - bug 517097 - make enabling debug symbols more sane because it added -fno-inline to opt builds and a 50% perf regression", + "pushdate": "2010-02-11 22:17:32", + "backsout": [ + "fe08cc555248" + ], + "backedoutby": "", + "author_email": "benjamin@smedbergs.us", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 59894888.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "config/autoconf.mk.in", + "config/config.mk", + "configure.in", + "js/src/config/autoconf.mk.in", + "js/src/config/config.mk", + "js/src/configure.in" + ], + "components": [ + "Firefox Build System::General" + ], + "directories": [ + "js/src", + "config", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "4e883e25a86ca9a2cf9d18294c04e25c2f1830e4", + "author": "Timothy Nikkel ", + "bug_id": 545593, + "desc": "Backed out changeset 93c7b23284b8 (Bug 545593) for causing Md oth failures on linux.", + "pushdate": "2010-02-12 22:36:40", + "backsout": [ + "93c7b23284b8" + ], + "backedoutby": "", + "author_email": "tnikkel@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 23656634.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/base/src/nsContentSink.cpp", + "content/base/src/nsContentSink.h", + "content/html/document/src/nsMediaDocument.cpp", + "content/xul/document/src/nsXULDocument.cpp", + "docshell/base/nsDocShell.cpp", + "docshell/base/nsIContentViewer.idl", + "intl/chardet/src/nsDetectionAdaptor.cpp", + "intl/chardet/src/nsObserverBase.cpp", + "layout/base/nsDocumentViewer.cpp", + "parser/html/nsHtml5TreeOpExecutor.cpp", + "view/public/nsIViewManager.h", + "view/src/nsViewManager.cpp", + "view/src/nsViewManager.h", + "webshell/public/nsIWebShellServices.h" + ], + "components": [ + "Core::Layout", + "Core::DOM: HTML Parser", + "Core::DOM: Navigation" + ], + "directories": [ + "parser/html", + "docshell/base", + "webshell", + "docshell", + "webshell/public", + "content/xul", + "content/base", + "content", + "intl", + "intl/chardet", + "parser", + "view", + "content/html", + "view/public", + "view/src", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "8098e1f09e779ef5234a73446b487a80705598b3", + "author": "Benjamin Smedberg ", + "bug_id": 543764, + "desc": "Backed out changeset 4d8d4fd97c4f - bug 543764, because of deadlocks.", + "pushdate": "2010-02-18 15:27:52", + "backsout": [ + "4d8d4fd97c4f" + ], + "backedoutby": "", + "author_email": "benjamin@smedbergs.us", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 60475108.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "ipc/glue/AsyncChannel.cpp" + ], + "components": [], + "directories": [ + "ipc/glue", + "ipc" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "f17dbc97dae0154c797e0b35e79ed887533efa34", + "author": "Paul O\u2019Shannessy ", + "bug_id": 520659, + "desc": "Backed out changeset 2c60006b6c1f (bug 520659) because of resulting orange.", + "pushdate": "2010-02-22 23:33:54", + "backsout": [ + "2c60006b6c1f" + ], + "backedoutby": "", + "author_email": "paul@oshannessy.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 28705798.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/components/places/content/menu.xml", + "browser/components/places/content/toolbar.xml", + "browser/components/places/content/tree.xml", + "browser/components/places/content/treeView.js", + "toolkit/components/places/public/nsINavHistoryService.idl", + "toolkit/components/places/src/nsNavHistoryResult.cpp", + "toolkit/components/places/src/nsNavHistoryResult.h", + "toolkit/components/places/src/utils.js" + ], + "components": [ + "Firefox::Bookmarks & History" + ], + "directories": [ + "toolkit/components", + "browser/components", + "toolkit", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "639c6e42ee38ee67252f2400fe15d900a936b256", + "author": "Shawn Wilsher ", + "bug_id": 193911, + "desc": "Backed out changeset bb9e847a02c8 (bug 193911) due to performance regressions.", + "pushdate": "2010-02-24 01:11:56", + "backsout": [ + "bb9e847a02c8" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 54379485.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "modules/libpref/src/init/all.js", + "netwerk/cache/src/nsCacheService.cpp" + ], + "components": [], + "directories": [ + "modules/libpref", + "netwerk/cache", + "netwerk", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "1fe0f3ad7b08a85ca25cec112e138b8ff6cf41b9", + "author": "Igor Bukanov ", + "bug_id": 538463, + "desc": "Backed out changeset b9700adc3951 - the landing for the bug 538463 had wrong changes", + "pushdate": "2010-02-24 20:41:25", + "backsout": [ + "b9700adc3951" + ], + "backedoutby": "", + "author_email": "igor@mir2.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 53219186.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsgc.cpp", + "js/src/jsgc.h", + "js/src/jsinterp.cpp", + "js/src/jsinterp.h", + "js/src/jslock.cpp", + "js/src/jslock.h", + "js/src/jsobj.cpp", + "js/src/jsobj.h", + "js/src/jsops.cpp", + "js/src/jsscope.cpp", + "js/src/jsscope.h", + "js/src/jstracer.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "636964f611b3e4f72815f9f9306f26303c816816", + "author": "Nicholas Nethercote ", + "bug_id": 507089, + "desc": "Backed out changeset 3c673457c90b for bug 507089 due to mysterious Windows bustage.", + "pushdate": "2010-02-24 20:41:25", + "backsout": [ + "3c673457c90b" + ], + "backedoutby": "", + "author_email": "nnethercote@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 31491347.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsbuiltins.h", + "js/src/jstracer.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "7594db5d213a7364f6bd375064eacbc3b80a53ad", + "author": "Benjamin Smedberg ", + "bug_id": 532208, + "desc": "Backed out changeset e4a7ea0bb90f bug 532208 - asynchronous stream delivery because write events were being dispatched in odd re-entrant states and NPP_DestroyStream was being delivered before all the stream data was delivered.", + "pushdate": "2010-02-25 11:05:10", + "backsout": [ + "e4a7ea0bb90f" + ], + "backedoutby": "", + "author_email": "benjamin@smedbergs.us", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 61064146.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "dom/plugins/BrowserStreamChild.cpp", + "dom/plugins/BrowserStreamChild.h", + "dom/plugins/BrowserStreamParent.cpp", + "dom/plugins/BrowserStreamParent.h", + "dom/plugins/PBrowserStream.ipdl", + "dom/plugins/PluginInstanceParent.cpp", + "dom/plugins/PluginModuleChild.cpp" + ], + "components": [], + "directories": [ + "dom", + "dom/plugins" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "3fa8aa3c951ce7b1c604cc764ff2f85536a88a6e", + "author": "Benjamin Smedberg ", + "bug_id": 548217, + "desc": "Backed out changeset 77dc38d8196e - bug 548217 because even though this patch is correct, it exposes a bug in the OOPP code which got backed out.", + "pushdate": "2010-02-25 11:59:26", + "backsout": [ + "77dc38d8196e" + ], + "backedoutby": "", + "author_email": "benjamin@smedbergs.us", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 61067402.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "modules/plugin/base/public/nsIPluginInstanceOwner.idl", + "modules/plugin/base/src/nsNPAPIPlugin.cpp", + "modules/plugin/base/src/nsNPAPIPluginInstance.cpp", + "modules/plugin/base/src/nsPluginHost.cpp", + "modules/plugin/test/testplugin/nptest.cpp" + ], + "components": [], + "directories": [ + "modules/plugin", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "840e6ea115dbc3f4fccc1c78101426bc45013a98", + "author": "Benjamin Smedberg ", + "bug_id": 548217, + "desc": "Backed out changeset f829f942873d - bug 548217 because of topcrash bug 549112", + "pushdate": "2010-02-27 22:44:12", + "backsout": [ + "f829f942873d" + ], + "backedoutby": "", + "author_email": "benjamin@smedbergs.us", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 61278888.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "modules/plugin/base/public/nsIPluginInstanceOwner.idl", + "modules/plugin/base/src/nsNPAPIPlugin.cpp", + "modules/plugin/base/src/nsNPAPIPluginInstance.cpp", + "modules/plugin/base/src/nsPluginHost.cpp", + "modules/plugin/test/testplugin/nptest.cpp" + ], + "components": [], + "directories": [ + "modules/plugin", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "81b2e55ea5b454ac88c2894961709a984eaa572c", + "author": "Daniel Holbert ", + "bug_id": 547333, + "desc": "Backed out changeset e9ab6e4d121d (Bug 547333 followup) due to debug mochitest orange.", + "pushdate": "2010-03-02 16:30:18", + "backsout": [ + "e9ab6e4d121d" + ], + "backedoutby": "", + "author_email": "dholbert@cs.stanford.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 56716345.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/smil/crashtests/483584-1.svg", + "content/smil/crashtests/483584-2.svg", + "content/smil/crashtests/crashtests.list", + "content/svg/content/src/nsSVGElement.cpp", + "layout/base/nsPresShell.cpp" + ], + "components": [], + "directories": [ + "content/smil", + "content", + "content/svg", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "44ef1e2129706317a17b29e7ff8bdb04b2424342", + "author": "Boris Zbarsky ", + "bug_id": 503832, + "desc": "Backed out changeset 2da8ac54d264 (followup to bug 503832)", + "pushdate": "2010-03-09 14:37:10", + "backsout": [ + "2da8ac54d264" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 52590738.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "docshell/test/browser/browser_bug503832.js" + ], + "components": [ + "Core::DOM: Navigation" + ], + "directories": [ + "docshell/test", + "docshell" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "d11772a5043cbc951328ba53c188f1c7fcc7e73b", + "author": "Boris Zbarsky ", + "bug_id": 550882, + "desc": "Backed out changeset c7c0db9074c7 (bug 550882) on suspicion of causing a Tsspider regression.", + "pushdate": "2010-03-09 14:37:10", + "backsout": [ + "c7c0db9074c7" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 52590738.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/generic/nsGfxScrollFrame.cpp", + "layout/reftests/bugs/502447-2-ref.html", + "layout/reftests/bugs/502447-2.html", + "layout/reftests/bugs/550882-1-ref.html", + "layout/reftests/bugs/550882-1.html", + "layout/reftests/bugs/550882-2-ref.html", + "layout/reftests/bugs/550882-2.html" + ], + "components": [ + "Core::Layout", + "Core::Layout: Scrolling and Overflow" + ], + "directories": [ + "layout/reftests", + "layout/generic", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "eaf1574b10b627e935444b631df4e9db2e4db496", + "author": "Boris Zbarsky ", + "bug_id": 503832, + "desc": "Backed out changeset dc835fb21c0c (bug 503832) on suspicion of causing a Tsspider regression.", + "pushdate": "2010-03-09 14:37:10", + "backsout": [ + "dc835fb21c0c" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 52590738.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "docshell/base/nsDocShell.cpp", + "docshell/test/browser/Makefile.in", + "docshell/test/browser/browser_bug503832.js", + "docshell/test/browser/file_bug503832.html" + ], + "components": [ + "Core::DOM: Navigation" + ], + "directories": [ + "docshell/test", + "docshell/base", + "docshell" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "76a071c6dfd0e74dd1f672eaa2394a037eb5afec", + "author": "Boris Zbarsky ", + "bug_id": 550882, + "desc": "Backed out changeset f0239b3789d9 (bug 550882) because it causes a Tsspider regression.", + "pushdate": "2010-03-11 06:00:37", + "backsout": [ + "f0239b3789d9" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 52732545.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/generic/nsGfxScrollFrame.cpp", + "layout/reftests/bugs/502447-2-ref.html", + "layout/reftests/bugs/502447-2.html", + "layout/reftests/bugs/550882-1-ref.html", + "layout/reftests/bugs/550882-1.html", + "layout/reftests/bugs/550882-2-ref.html", + "layout/reftests/bugs/550882-2.html" + ], + "components": [ + "Core::Layout", + "Core::Layout: Scrolling and Overflow" + ], + "directories": [ + "layout/reftests", + "layout/generic", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "55f6e18f71cd0906e457317f45f4bdf14f28ec53", + "author": "Markus Stange ", + "bug_id": 538187, + "desc": "Backed out changeset d906e4dd1e49, bug 538187 - CSS changes for :-moz-window-inactive pseudoclass because of test_righttoleft.xul test failures.", + "pushdate": "2010-03-17 19:06:03", + "backsout": [ + "d906e4dd1e49" + ], + "backedoutby": "", + "author_email": "mstange@themasta.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 54063259.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/themes/pinstripe/browser/browser.css", + "browser/themes/pinstripe/browser/places/organizer.css", + "toolkit/themes/pinstripe/global/console/console.css", + "toolkit/themes/pinstripe/global/jar.mn", + "toolkit/themes/pinstripe/global/preferences.css", + "toolkit/themes/pinstripe/global/toolbar/toolbar-background-inactive.png", + "toolkit/themes/pinstripe/global/toolbar/toolbar-background.gif", + "toolkit/themes/pinstripe/global/viewbuttons.css", + "toolkit/themes/pinstripe/mozapps/downloads/downloads.css", + "toolkit/themes/pinstripe/mozapps/update/updates.css", + "toolkit/themes/winstripe/global/global.css", + "toolkit/themes/winstripe/global/jar.mn", + "toolkit/themes/winstripe/global/menu.css" + ], + "components": [], + "directories": [ + "toolkit/themes", + "browser/themes", + "toolkit", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "11d4bebe3514ef47021734d052468df2ed7315ff", + "author": "Markus Stange ", + "bug_id": 508482, + "desc": "Backed out changeset e17c076aceea, bug 508482 (:-moz-window-inactive pseudoclass) because of test_righttoleft.xul test failures.", + "pushdate": "2010-03-17 19:06:03", + "backsout": [ + "e17c076aceea" + ], + "backedoutby": "", + "author_email": "mstange@themasta.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 54063259.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "accessible/src/base/nsDocAccessible.cpp", + "content/base/public/nsIDocument.h", + "content/base/public/nsIDocumentObserver.h", + "content/base/src/nsDocument.cpp", + "content/base/src/nsDocument.h", + "content/xul/document/src/nsXULDocument.cpp", + "dom/base/nsGlobalWindow.cpp", + "dom/base/nsGlobalWindow.h", + "dom/base/nsPIDOMWindow.h", + "dom/tests/mochitest/chrome/Makefile.in", + "dom/tests/mochitest/chrome/test_activation.xul", + "dom/tests/mochitest/chrome/window_activation.xul", + "layout/base/nsPresContext.cpp", + "layout/base/nsPresContext.h", + "layout/base/nsPresShell.cpp", + "layout/style/nsCSSPseudoClassList.h", + "layout/style/nsCSSRuleProcessor.cpp", + "layout/style/nsCSSRuleProcessor.h", + "layout/style/nsHTMLCSSStyleSheet.cpp", + "layout/style/nsHTMLCSSStyleSheet.h", + "layout/style/nsHTMLStyleSheet.cpp", + "layout/style/nsHTMLStyleSheet.h", + "layout/style/nsIStyleRuleProcessor.h", + "layout/style/nsRuleProcessorData.h", + "layout/style/nsStyleSet.cpp", + "layout/style/nsStyleSet.h", + "layout/style/nsTransitionManager.cpp", + "layout/style/nsTransitionManager.h", + "layout/style/test/test_selectors.html" + ], + "components": [ + "Core::Layout", + "Core::DOM: Core & HTML", + "Core::CSS Parsing and Computation", + "Core::CSS Transitions and Animations" + ], + "directories": [ + "dom/tests", + "accessible/src", + "accessible", + "dom/base", + "content/xul", + "content/base", + "content", + "dom", + "layout/style", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "33925fdc28073fc9a47ed32da1a20ee2c2e246b5", + "author": "Daniel Holbert ", + "bug_id": 541588, + "desc": "Backed out changeset 59f507847beb (bug 541588) to see if it was responsible for minor SVG perf regression.", + "pushdate": "2010-03-18 14:58:59", + "backsout": [ + "59f507847beb" + ], + "backedoutby": "", + "author_email": "dholbert@cs.stanford.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 58093266.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/base/public/nsIDocument.h", + "content/smil/nsSMILAnimationController.cpp", + "content/smil/nsSMILAnimationController.h", + "layout/base/nsPresShell.cpp" + ], + "components": [], + "directories": [ + "content/smil", + "content/base", + "content", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "09b395158b415b7f18dbc6c744d7d04f73fb57a5", + "author": "Daniel Holbert ", + "bug_id": 553075, + "desc": "Backed out changeset 665b48fbfd28 (bug 553075) to see if it was responsible for 1% SVG/DHTML regressions on Win7.", + "pushdate": "2010-03-21 05:57:22", + "backsout": [ + "665b48fbfd28" + ], + "backedoutby": "", + "author_email": "dholbert@cs.stanford.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 58319969.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/smil/nsSMILAnimationController.cpp", + "content/smil/nsSMILAnimationController.h" + ], + "components": [], + "directories": [ + "content", + "content/smil" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "f85c2efb4eaf76c06c6a8438e77c5701cb8ba604", + "author": "Markus Stange ", + "bug_id": 538242, + "desc": "Backed out changeset 77e1ae41987e, bug 538242, because of window bounds related test failures.", + "pushdate": "2010-03-25 10:31:30", + "backsout": [ + "77e1ae41987e" + ], + "backedoutby": "", + "author_email": "mstange@themasta.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 54723586.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "widget/src/cocoa/nsCocoaWindow.h", + "widget/src/cocoa/nsCocoaWindow.mm" + ], + "components": [], + "directories": [ + "widget", + "widget/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "670efad709bfa3ba522ba3a2f61b48cde4152f99", + "author": "Daniel Holbert ", + "bug_id": 551298, + "desc": "Backed out changeset 13819d2e9bd8 (Bug 551298) due to Linux debug mochitest-5 orange", + "pushdate": "2010-04-01 16:46:48", + "backsout": [ + "13819d2e9bd8" + ], + "backedoutby": "", + "author_email": "dholbert@cs.stanford.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 59309335.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/smil/nsSMILInstanceTime.h", + "content/xbl/src/nsXBLBinding.h", + "content/xbl/src/nsXBLInsertionPoint.cpp", + "content/xbl/src/nsXBLInsertionPoint.h", + "content/xbl/src/nsXBLPrototypeBinding.cpp", + "content/xslt/src/xslt/txMozillaStylesheetCompiler.cpp", + "content/xslt/src/xslt/txStandaloneStylesheetCompiler.cpp", + "content/xslt/src/xslt/txStylesheet.h", + "content/xslt/src/xslt/txStylesheetCompiler.cpp", + "content/xslt/src/xslt/txStylesheetCompiler.h", + "content/xul/templates/src/nsRDFBinding.h" + ], + "components": [], + "directories": [ + "content/smil", + "content/xbl", + "content/xul", + "content", + "content/xslt" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "d3acd60e4d5361a9e8729f365dc3ba68cee131ba", + "author": "Daniel Holbert ", + "bug_id": 551298, + "desc": "Backed out changeset afcaf3670c21 (Bug 551298) due to Linux debug mochitest-5 orange", + "pushdate": "2010-04-01 16:46:48", + "backsout": [ + "afcaf3670c21" + ], + "backedoutby": "", + "author_email": "dholbert@cs.stanford.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 59309335.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/style/nsCSSValue.cpp", + "layout/style/nsCSSValue.h", + "layout/style/nsStyleStruct.cpp", + "layout/style/nsStyleStruct.h" + ], + "components": [ + "Core::CSS Parsing and Computation" + ], + "directories": [ + "layout/style", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "50731f2bd852892bc11944485f5f93e0c27fce4b", + "author": "Daniel Holbert ", + "bug_id": 551298, + "desc": "Backed out changeset 29bc09de2f77 (Bug 551298) due to Linux debug mochitest-5 orange", + "pushdate": "2010-04-01 16:46:48", + "backsout": [ + "29bc09de2f77" + ], + "backedoutby": "", + "author_email": "dholbert@cs.stanford.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 59309335.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/svg/content/src/nsSVGMatrix.cpp", + "content/svg/content/src/nsSVGMatrix.h", + "gfx/layers/Layers.h", + "gfx/thebes/public/gfxASurface.h", + "gfx/thebes/public/gfxContext.h", + "gfx/thebes/public/gfxFont.h", + "gfx/thebes/public/gfxGdkNativeRenderer.h", + "gfx/thebes/public/gfxPath.h", + "gfx/thebes/public/gfxPattern.h", + "gfx/thebes/public/gfxRect.h", + "gfx/thebes/public/gfxTypes.h", + "gfx/thebes/public/gfxUserFontSet.h", + "gfx/thebes/src/gfxFontconfigUtils.h", + "gfx/thebes/src/gfxPangoFonts.cpp", + "layout/printing/nsPrintData.h" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "gfx/layers", + "gfx/thebes", + "layout/printing", + "content", + "content/svg", + "gfx", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "c0395cad35f39dbcc3d0514c16f468a1a4ae84b9", + "author": "Daniel Holbert ", + "bug_id": 551298, + "desc": "Backed out changeset e94819033c77 (Bug 551298) due to Linux debug mochitest-5 orange", + "pushdate": "2010-04-01 16:46:48", + "backsout": [ + "e94819033c77" + ], + "backedoutby": "", + "author_email": "dholbert@cs.stanford.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 59309335.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "xpcom/glue/nsISupportsImpl.h" + ], + "components": [], + "directories": [ + "xpcom/glue", + "xpcom" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "df2717c37e7f70da06d2e1f46a288743b3414264", + "author": "Daniel Holbert ", + "bug_id": 551298, + "desc": "Backed out changeset fe801c8a2090 (Bug 551298) due to Linux debug mochitest-5 orange", + "pushdate": "2010-04-01 16:46:48", + "backsout": [ + "fe801c8a2090" + ], + "backedoutby": "", + "author_email": "dholbert@cs.stanford.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 59309335.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "gfx/thebes/public/gfxTypes.h", + "xpcom/glue/nsISupportsImpl.h", + "xpcom/glue/nsISupportsUtils.h" + ], + "components": [], + "directories": [ + "xpcom/glue", + "gfx/thebes", + "gfx", + "xpcom" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "f843e0928e1119d1fbafba72e5ed1aea575fbbe5", + "author": "Ted Mielczarek ", + "bug_id": 549427, + "desc": "Backed out changeset 7886dc6ae0c8 - bug 549427 - tests tarball should be zip files (CLOSED TREE)", + "pushdate": "2010-04-07 17:34:08", + "backsout": [ + "7886dc6ae0c8" + ], + "backedoutby": "", + "author_email": "ted.mielczarek@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 64629884.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "testing/testsuite-targets.mk", + "toolkit/mozapps/installer/package-name.mk" + ], + "components": [ + "Firefox::Installer", + "Testing::General" + ], + "directories": [ + "toolkit/mozapps", + "testing", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "85454945336e2c5bac27ff125e2ae27200cb416c", + "author": "Alexander Surkov ", + "bug_id": 557768, + "desc": "backout e88d2327e25d, bug 557768", + "pushdate": "2010-04-08 14:00:43", + "backsout": [ + "e88d2327e25d" + ], + "backedoutby": "", + "author_email": "surkov.alexander@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 56893595.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "accessible/src/base/nsAccessibilityService.cpp" + ], + "components": [], + "directories": [ + "accessible/src", + "accessible" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "47ef6d724773f2eb7157f93c1da8d53a8589f26a", + "author": "Timothy Nikkel ", + "bug_id": 553366, + "desc": "Backout 761790684f3b (Bug 553366) for suspicion of causing tsvg_opacity regression.", + "pushdate": "2010-04-11 02:54:10", + "backsout": [ + "761790684f3b" + ], + "backedoutby": "", + "author_email": "tnikkel@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 28596884.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/base/public/nsIDocument.h", + "content/base/src/nsDocument.cpp", + "content/base/src/nsDocument.h", + "layout/base/nsPresShell.cpp" + ], + "components": [], + "directories": [ + "content/base", + "content", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "a5009861bd1b4c01663aa01a4c219379b85178b8", + "author": "Timothy Nikkel ", + "bug_id": 553359, + "desc": "Backed out changeset b4fcd21cb6e5 (bug 553359) to try to fix tsvg_opacity regression.", + "pushdate": "2010-04-11 05:13:09", + "backsout": [ + "b4fcd21cb6e5" + ], + "backedoutby": "", + "author_email": "tnikkel@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 28605223.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "docshell/base/nsDocShell.cpp", + "layout/base/nsPresContext.cpp", + "layout/base/nsPresContext.h" + ], + "components": [ + "Core::Layout", + "Core::DOM: Navigation" + ], + "directories": [ + "layout/base", + "docshell/base", + "layout", + "docshell" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "e4496c8a44e560c48cb228851239b177c08859a4", + "author": "Timothy Nikkel ", + "bug_id": 553363, + "desc": "Backed out changeset 633cc14c86b8 (bug 553363) to try to fix tsvg_opacity regression.", + "pushdate": "2010-04-11 05:13:09", + "backsout": [ + "633cc14c86b8" + ], + "backedoutby": "", + "author_email": "tnikkel@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 28605223.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "uriloader/base/nsDocLoader.cpp", + "uriloader/base/nsDocLoader.h" + ], + "components": [ + "Core::DOM: Navigation" + ], + "directories": [ + "uriloader/base", + "uriloader" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "df3a1a39837f15a5a51507b6af84deb81a1e9ce6", + "author": "Timothy Nikkel ", + "bug_id": 222436, + "desc": "Backed out changeset 3a27158cbdd6 (bug 222436) to try to fix tsvg_opacity regression.", + "pushdate": "2010-04-11 05:13:09", + "backsout": [ + "3a27158cbdd6" + ], + "backedoutby": "", + "author_email": "tnikkel@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 28605223.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/base/nsPresContext.cpp", + "layout/base/nsPresContext.h" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "e69034463eebbd368322b97559b4ae95b7722aaf", + "author": "Timothy Nikkel ", + "bug_id": 505835, + "desc": "Backed out changeset 02e8391669c3 (Bug 505835) for suspicion of causing tsvg_opacity regression.", + "pushdate": "2010-04-11 07:11:24", + "backsout": [ + "02e8391669c3" + ], + "backedoutby": "", + "author_email": "tnikkel@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 28612318.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/xul/base/src/tree/src/nsTreeBodyFrame.cpp" + ], + "components": [], + "directories": [ + "layout/xul", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "83bf27b04ddc38081b87125daa2468b17089cef5", + "author": "Timothy Nikkel ", + "bug_id": 553359, + "desc": "Backed out changeset ae2093359899 (Bug 553359) for tsvg_opacity regression.", + "pushdate": "2010-04-12 00:28:43", + "backsout": [ + "ae2093359899" + ], + "backedoutby": "", + "author_email": "tnikkel@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 28674557.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "docshell/base/nsDocShell.cpp", + "layout/base/nsPresContext.cpp", + "layout/base/nsPresContext.h" + ], + "components": [ + "Core::Layout", + "Core::DOM: Navigation" + ], + "directories": [ + "layout/base", + "docshell/base", + "layout", + "docshell" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "23e71fa6bd6e058498c18f6f7a9a8875fc245115", + "author": "Andreas Gal ", + "bug_id": 557914, + "desc": "Backed out changeset 687d1e4c213e (bug 557914).", + "pushdate": "2010-04-15 16:08:37", + "backsout": [ + "687d1e4c213e" + ], + "backedoutby": "", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 56348239.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jscntxt.h", + "js/src/jsgc.cpp", + "js/src/jsiter.cpp", + "js/src/jsiter.h" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "0fc19b24294756c136b02ec922c3eba656c2f623", + "author": "Boris Zbarsky ", + "bug_id": 556830, + "desc": "Backed out changeset 698ace1f1027 (bug 556830) for causing jsreftest failures.", + "pushdate": "2010-04-15 16:08:37", + "backsout": [ + "698ace1f1027" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 55793025.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsobj.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "57f8cd34cf6e0ca264e00e73ac9eea979136090c", + "author": "Andreas Gal ", + "bug_id": 558058, + "desc": "Backed out changeset 61de331861af (bug 558058).", + "pushdate": "2010-04-15 16:08:37", + "backsout": [ + "61de331861af" + ], + "backedoutby": "", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 56348239.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jscntxt.cpp", + "js/src/jscntxt.h", + "js/src/jsiter.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "5896d4f94aee0ceb07c2a877b26a498855f4cb77", + "author": "Karl Tomlinson ", + "bug_id": 393760, + "desc": "backout e1e1143be432 due to reftest failure in layout/reftests/bugs/393760-1.xml b=552044", + "pushdate": "2010-04-21 05:21:59", + "backsout": [ + "e1e1143be432" + ], + "backedoutby": "", + "author_email": "karlt+@karlt.net", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 56426895.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/mathml/content/src/nsMathMLElement.cpp", + "layout/reftests/mathml/mathbackground-1-ref.mml", + "layout/reftests/mathml/mathbackground-1.mml", + "layout/reftests/mathml/mathbackground-2-ref.mml", + "layout/reftests/mathml/mathbackground-2.mml", + "layout/reftests/mathml/mathbackground-3-ref.mml", + "layout/reftests/mathml/mathbackground-3.mml", + "layout/reftests/mathml/mathbackground-4-ref.mml", + "layout/reftests/mathml/mathbackground-4.mml", + "layout/reftests/mathml/mathcolor-1-ref.mml", + "layout/reftests/mathml/mathcolor-1.mml", + "layout/reftests/mathml/mathcolor-2-ref.mml", + "layout/reftests/mathml/mathcolor-2.mml", + "layout/reftests/mathml/mathcolor-3-ref.mml", + "layout/reftests/mathml/mathcolor-3.mml", + "layout/reftests/mathml/mathcolor-4-ref.mml", + "layout/reftests/mathml/mathcolor-4.mml", + "layout/reftests/mathml/reftest.list" + ], + "components": [ + "Core::MathML" + ], + "directories": [ + "content/mathml", + "content", + "layout", + "layout/reftests" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "f1bc91ce880e02e519f271f9c9b608961f7a2533", + "author": "Robert Sayre ", + "bug_id": 561011, + "desc": "Backed out changeset 1af19eedbde2 -- Fix sharpSlots vs. with grudge-match (561011, r=mrbkap).", + "pushdate": "2010-04-24 21:50:01", + "backsout": [ + "1af19eedbde2" + ], + "backedoutby": "", + "author_email": "sayrer@gmail.com", + "reviewers": [ + "mrbkap" + ], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 58933968.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsparse.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "9cefbeff6938b64e8b8310dcc804aab85f922222", + "author": "Karl Tomlinson ", + "bug_id": 559492, + "desc": "backout 32502a2c5671 b=559492 due to seg fault in storage/test/test_transaction_helper.cpp possibly in DumpLeakedURLs", + "pushdate": "2010-04-28 22:40:27", + "backsout": [ + "32502a2c5671" + ], + "backedoutby": "", + "author_email": "karlt+@karlt.net", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 57094003.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "netwerk/base/src/nsStandardURL.cpp" + ], + "components": [], + "directories": [ + "netwerk/base", + "netwerk" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "ff9f542d06831528ededff7c28bfeee7168ab45a", + "author": "Timothy Nikkel ", + "bug_id": 222436, + "desc": "Backed out changeset e6134e94c6cb (Bug 222436) for possible Tsvg_opacity regression.", + "pushdate": "2010-05-02 07:02:16", + "backsout": [ + "e6134e94c6cb" + ], + "backedoutby": "", + "author_email": "tnikkel@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 30426170.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/base/nsPresContext.cpp", + "layout/base/nsPresContext.h" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "eb4e203caf33c1a4351b61987170e675b2e77b6d", + "author": "Andreas Gal ", + "bug_id": 560358, + "desc": "Backed out changeset 35c25547a135 (bug 560358).", + "pushdate": "2010-05-04 17:34:44", + "backsout": [ + "35c25547a135" + ], + "backedoutby": "", + "author_email": "gal@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 57995006.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsapi.cpp", + "js/src/jscntxt.h", + "js/src/jsregexp.cpp", + "js/src/jsregexp.h", + "js/src/jsstr.cpp", + "js/src/xpconnect/src/XPCSafeJSObjectWrapper.cpp" + ], + "components": [ + "Core::JavaScript Engine" + ], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "8d256e7846959ca614b1da225d2786396888d770", + "author": "Jason Orendorff ", + "bug_id": 559653, + "desc": "Backed out changeset ae857d818793 (bug 559653) due to test failures.", + "pushdate": "2010-05-04 17:34:44", + "backsout": [ + "ae857d818793" + ], + "backedoutby": "", + "author_email": "jorendorff@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 60899013.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsdbgapi.cpp", + "js/src/jsdbgapi.h", + "js/src/jsobj.cpp", + "js/src/jsops.cpp", + "js/src/jsscope.cpp", + "js/src/jsscope.h", + "js/src/jstracer.cpp", + "js/src/jstracer.h" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "5aa83042d4d3147c0f9311dc38c714ce19783b5a", + "author": "Jason Orendorff ", + "bug_id": 559653, + "desc": "Backed out changeset 73f23528bed6 (bug 559653, again)", + "pushdate": "2010-05-04 17:34:44", + "backsout": [ + "73f23528bed6" + ], + "backedoutby": "", + "author_email": "jorendorff@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 60899013.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsdbgapi.cpp", + "js/src/jsdbgapi.h", + "js/src/jsobj.cpp", + "js/src/jsops.cpp", + "js/src/jsscope.cpp", + "js/src/jsscope.h", + "js/src/jstracer.cpp", + "js/src/jstracer.h", + "js/src/trace-test/tests/basic/testMethodWriteBarrier.js", + "js/src/trace-test/tests/basic/testMethodWriteBarrier2.js", + "js/src/trace-test/tests/basic/testMethodWriteBarrier3.js" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "1b3deed2d784997d6b35397fff8355832255d857", + "author": "Ted Mielczarek ", + "bug_id": 559854, + "desc": "Backed out changeset 510669ff9ba1 \"bug 559854 - Compile target xpidl only if libIDL is configured when cross compiling. r=ted\" for OS X bustage", + "pushdate": "2010-05-05 15:00:40", + "backsout": [ + "510669ff9ba1" + ], + "backedoutby": "", + "author_email": "ted.mielczarek@gmail.com", + "reviewers": [ + "ted" + ], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 67039876.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "configure.in", + "xpcom/typelib/xpidl/Makefile.in" + ], + "components": [], + "directories": [ + "xpcom/typelib", + "xpcom" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "90d08f21fbf0b78f42cd9e312097d9a295fdb978", + "author": "L. David Baron ", + "bug_id": 563023, + "desc": "Backed out changeset 09a936531466 (bug 563023) due to Mac reftest failure.", + "pushdate": "2010-05-05 20:53:39", + "backsout": [ + "09a936531466" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 62301340.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/reftests/font-face/src-list-local-fallback-ref.html" + ], + "components": [ + "Core::CSS Parsing and Computation" + ], + "directories": [ + "layout/reftests", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "ea445ca9c148e0996b4794c07b9e549d7d64cb31", + "author": "Phil Ringnalda ", + "bug_id": 533891, + "desc": "Backed out changeset e074757a15aa (bug 533891) due to xpcshell orange after a clobber", + "pushdate": "2010-05-11 04:41:14", + "backsout": [ + "e074757a15aa" + ], + "backedoutby": "", + "author_email": "philringnalda@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 60060484.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/app/profile/firefox.js", + "browser/installer/removed-files.in", + "content/base/src/nsObjectLoadingContent.cpp", + "content/base/src/nsObjectLoadingContent.h", + "modules/plugin/Makefile.in", + "modules/plugin/base/public/Makefile.in", + "modules/plugin/base/public/nsDefaultPlugin.h", + "modules/plugin/base/src/nsPluginHost.cpp", + "modules/plugin/base/src/nsPluginHost.h", + "modules/plugin/base/src/nsPluginTags.cpp", + "modules/plugin/base/src/nsPluginTags.h", + "modules/plugin/default/mac/DefaultPlugin.mm", + "modules/plugin/default/mac/DefaultPlugin.xcodeproj/TemplateIcon.tiff", + "modules/plugin/default/mac/DefaultPlugin.xcodeproj/project.pbxproj", + "modules/plugin/default/mac/English.lproj/InfoPlist.strings", + "modules/plugin/default/mac/Info.plist", + "modules/plugin/default/mac/Makefile.in", + "modules/plugin/default/mac/plugin.png", + "modules/plugin/default/os2/Makefile.in", + "modules/plugin/default/os2/dbg.cpp", + "modules/plugin/default/os2/dbg.h", + "modules/plugin/default/os2/dialogs.cpp", + "modules/plugin/default/os2/dialogs.h", + "modules/plugin/default/os2/maindll.cpp", + "modules/plugin/default/os2/npnulos2.h", + "modules/plugin/default/os2/npnulos2.ico", + "modules/plugin/default/os2/npnulos2.rc", + "modules/plugin/default/os2/npos2.cpp", + "modules/plugin/default/os2/npshell.cpp", + "modules/plugin/default/os2/plugin.cpp", + "modules/plugin/default/os2/plugin.h", + "modules/plugin/default/os2/utils.cpp", + "modules/plugin/default/os2/utils.h", + "modules/plugin/default/unix/Makefile.in", + "modules/plugin/default/unix/npshell.c", + "modules/plugin/default/unix/npunix.c", + "modules/plugin/default/unix/nullplugin.c", + "modules/plugin/default/unix/nullplugin.h", + "modules/plugin/default/windows/Makefile.in", + "modules/plugin/default/windows/Npnul32.dsp", + "modules/plugin/default/windows/dbg.cpp", + "modules/plugin/default/windows/dbg.h", + "modules/plugin/default/windows/dialogs.cpp", + "modules/plugin/default/windows/dialogs.h", + "modules/plugin/default/windows/maindll.cpp", + "modules/plugin/default/windows/npnul32.def", + "modules/plugin/default/windows/npnul32.dsw", + "modules/plugin/default/windows/npnul32.rc", + "modules/plugin/default/windows/npshell.cpp", + "modules/plugin/default/windows/npwin.cpp", + "modules/plugin/default/windows/plugicon.ico", + "modules/plugin/default/windows/plugin.cpp", + "modules/plugin/default/windows/plugin.h", + "modules/plugin/default/windows/resource.h", + "modules/plugin/default/windows/utils.cpp", + "modules/plugin/default/windows/utils.h" + ], + "components": [ + "Firefox::General", + "Firefox::Installer" + ], + "directories": [ + "browser/app", + "modules/plugin", + "browser/installer", + "content/base", + "content", + "browser", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "357d302157060b473fb7fe8c0a27918071f310d5", + "author": "Timothy Nikkel ", + "bug_id": 559996, + "desc": "Backed out changeset a6138098775f (bug 559996) for causing orange.", + "pushdate": "2010-05-12 02:24:53", + "backsout": [ + "a6138098775f" + ], + "backedoutby": "", + "author_email": "tnikkel@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 31273527.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/base/public/nsIDocument.h", + "content/base/src/nsContentSink.cpp", + "content/base/src/nsContentSink.h", + "content/base/src/nsDocument.cpp", + "content/base/src/nsDocument.h", + "content/test/reftest/bug559996-iframe.html", + "content/test/reftest/bug559996-ref-iframe.html", + "content/test/reftest/bug559996-ref.html", + "content/test/reftest/bug559996.html", + "content/test/reftest/reftest.list", + "layout/base/nsDocumentViewer.cpp", + "layout/base/nsPresShell.cpp" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "content/test", + "content/base", + "content", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "01befa5163eed6f462d5b920bc0470599dc2cb2d", + "author": "Timothy Nikkel ", + "bug_id": 564705, + "desc": "back out e40cbab6a972 (Bug 564705) 590da60fd253 (Bug 507628 and bug 507991) b166415b8c3f (Bug 564368) 0dac5d3eeb97 (Bug 564063) 116e56d84770 (Bug 563407) c51c93f5240f (Bug 536495) for some orange", + "pushdate": "2010-05-12 03:01:28", + "backsout": [ + "e40cbab6a972" + ], + "backedoutby": "", + "author_email": "tnikkel@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 31275722.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/base/src/nsGenericElement.cpp", + "content/base/src/nsTextNode.cpp", + "content/xbl/crashtests/507628-1.xhtml", + "content/xbl/crashtests/507991-1.xhtml", + "content/xbl/crashtests/crashtests.list", + "layout/base/crashtests/564063-1.html", + "layout/base/crashtests/crashtests.list", + "layout/base/nsCSSFrameConstructor.cpp", + "layout/generic/crashtests/564368-1.xhtml", + "layout/generic/crashtests/crashtests.list", + "layout/generic/nsFrameSetFrame.cpp", + "layout/xul/base/src/nsTextBoxFrame.cpp", + "modules/libpr0n/src/imgRequestProxy.cpp" + ], + "components": [ + "Core::Layout", + "Core::Layout: Images, Video, and HTML Frames" + ], + "directories": [ + "layout/generic", + "modules/libpr0n", + "layout/xul", + "content/base", + "content", + "content/xbl", + "layout", + "layout/base", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "c861185afd4a103b322aed36a12e4b7462790d9f", + "author": "Boris Zbarsky ", + "bug_id": 562649, + "desc": "Backed out changeset 6a71deda9822 (bug 562649) due to browser-chrome orange.", + "pushdate": "2010-05-14 17:04:31", + "backsout": [ + "6a71deda9822" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 58301979.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/base/content/browser.js", + "browser/base/content/tabbrowser.xml", + "browser/base/content/test/Makefile.in", + "browser/base/content/test/browser_bug562649.js" + ], + "components": [ + "Firefox::General" + ], + "directories": [ + "browser/base", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "c95e1d49bc792d5ed6255c37f5403048be77559f", + "author": "Boris Zbarsky ", + "bug_id": 564979, + "desc": "Backed out changeset 90d627f2471e (bug 564979) because it broke mochitests.", + "pushdate": "2010-05-17 19:00:34", + "backsout": [ + "90d627f2471e" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 58568142.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/base/public/nsINode.h", + "content/base/src/nsGenericElement.cpp", + "extensions/spellcheck/src/mozInlineSpellWordUtil.cpp", + "js/src/xpconnect/src/dom_quickstubs.qsconf" + ], + "components": [ + "Core::Spelling checker" + ], + "directories": [ + "js/src", + "extensions/spellcheck", + "content/base", + "content", + "extensions", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "9d40cce434865515df81912ce22d2fdfa6e80a61", + "author": "Peter Van der Beken ", + "bug_id": 560462, + "desc": "Back out ba983923066f (bug 560462 part 3c) to see if it fixes test_aria_imgmap.html orange.", + "pushdate": "2010-06-01 18:27:21", + "backsout": [ + "ba983923066f" + ], + "backedoutby": "", + "author_email": "peterv@propagandism.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 61352668.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/xpconnect/src/dom_quickstubs.qsconf" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "c482200ed43651dec55ce38e56134d43e115a5aa", + "author": "Justin Wood ", + "bug_id": 564591, + "desc": "Backout 69df59e99741 -- Bug 564591: Speed up BindToTree/UnbindFromTree by only doing XBL related work when needed.", + "pushdate": "2010-06-04 01:45:41", + "backsout": [ + "69df59e99741" + ], + "backedoutby": "", + "author_email": "Callek@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 61172406.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/base/src/nsGenericDOMDataNode.cpp", + "content/base/src/nsGenericElement.cpp", + "content/xbl/src/nsBindingManager.cpp", + "content/xbl/src/nsBindingManager.h" + ], + "components": [], + "directories": [ + "content/base", + "content", + "content/xbl" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "b18beea31ad3fd3130cdcd7b8195b0a04fb5e681", + "author": "Jason Orendorff ", + "bug_id": 559653, + "desc": "Back out changeset a72a9d72c028 (bug 559653, remove SetPropHit). Checking to see if this caused a 5% Dromaeo regression today.", + "pushdate": "2010-06-06 19:08:23", + "backsout": [ + "a72a9d72c028" + ], + "backedoutby": "", + "author_email": "jorendorff@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 63755832.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsdbgapi.cpp", + "js/src/jsdbgapi.h", + "js/src/jsobj.cpp", + "js/src/jsops.cpp", + "js/src/jsscope.cpp", + "js/src/jsscope.h", + "js/src/jstracer.cpp", + "js/src/jstracer.h", + "js/src/trace-test/tests/basic/testMethodWriteBarrier.js", + "js/src/trace-test/tests/basic/testMethodWriteBarrier2.js", + "js/src/trace-test/tests/basic/testMethodWriteBarrier3.js" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "2fe89784cf66347487cbf5a9f010dce8fabbe043", + "author": "Jason Orendorff ", + "bug_id": 569735, + "desc": "Back out changeset 96dbe8a784f1 (bug 569735) due to failing tests.", + "pushdate": "2010-06-06 19:08:23", + "backsout": [ + "96dbe8a784f1" + ], + "backedoutby": "", + "author_email": "jorendorff@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 63755832.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsarray.cpp", + "js/src/jscntxt.h", + "js/src/jsiter.cpp", + "js/src/jsiter.h", + "js/src/jsobj.cpp", + "js/src/jsproxy.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "0ba3c58afb3abf493dabe321f29ea94072ffe2a3", + "author": "Robert Sayre ", + "bug_id": 556277, + "desc": "Backed out changeset 52be13ea0488. Bug 556277 - Compute this eagerly in more cases. r=brendan. Suspected of performance regression on SunSpider unpack-code. 80ms -> 135ms.", + "pushdate": "2010-06-06 19:08:23", + "backsout": [ + "52be13ea0488" + ], + "backedoutby": "", + "author_email": "sayrer@gmail.com", + "reviewers": [ + "brendan" + ], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 62639470.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsapi.cpp", + "js/src/jsapi.h", + "js/src/jsinterp.cpp", + "js/src/jsinterp.h", + "js/src/jsobj.cpp", + "js/src/jsobj.h", + "js/src/jsops.cpp", + "js/src/jsstr.cpp", + "js/src/jstracer.cpp", + "js/src/trace-test/tests/basic/testThis1.js", + "js/src/trace-test/tests/basic/testThis2.js" + ], + "components": [ + "Core::JavaScript Engine" + ], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "3e15e567ae44cd4b2fdd044a7d973fb0089d5cc7", + "author": "Dave Townsend ", + "bug_id": 569342, + "desc": "Backed out changeset 33760547ecf7 from bug 569342 to fix the test failure.", + "pushdate": "2010-06-08 18:20:50", + "backsout": [ + "33760547ecf7" + ], + "backedoutby": "", + "author_email": "dtownsend@oxymoronical.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 63531408.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/base/content/test/Makefile.in", + "browser/base/content/test/browser_bug569342.js", + "toolkit/components/viewconfig/content/config.xul", + "toolkit/content/widgets/findbar.xml", + "toolkit/mozapps/extensions/content/extensions.xul" + ], + "components": [], + "directories": [ + "browser/base", + "toolkit/content", + "toolkit/components", + "toolkit", + "toolkit/mozapps", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "0bf458761ea2d29bc48e333a8d2afd38238d7e83", + "author": "Timothy Nikkel ", + "bug_id": 569425, + "desc": "Backed out changeset 2f539cc84d97 (bug 569425) because this may hide real a11y issues.", + "pushdate": "2010-06-08 20:44:03", + "backsout": [ + "2f539cc84d97" + ], + "backedoutby": "", + "author_email": "tnikkel@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 33672277.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "accessible/tests/mochitest/states/test_aria_imgmap.html", + "accessible/tests/mochitest/tree/test_aria_imgmap.html" + ], + "components": [ + "Core::Disability Access APIs" + ], + "directories": [ + "accessible", + "accessible/tests" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "42a58530d41962e11cd20a2abfcf02e6c13b21c3", + "author": "Daniel Holbert ", + "bug_id": 552938, + "desc": "Backed out changeset a8ac411e1653 (bug 552938) for causing some randomorange.", + "pushdate": "2010-06-10 00:17:54", + "backsout": [ + "a8ac411e1653" + ], + "backedoutby": "", + "author_email": "dholbert@cs.stanford.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 65298001.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/xml/document/src/nsXMLContentSink.cpp", + "layout/svg/crashtests/crashtests.list", + "parser/html/Makefile.in", + "parser/html/nsHtml5SVGLoadDispatcher.cpp", + "parser/html/nsHtml5SVGLoadDispatcher.h", + "parser/html/nsHtml5TreeBuilderCppSupplement.h", + "parser/html/nsHtml5TreeOperation.cpp", + "parser/html/nsHtml5TreeOperation.h", + "parser/htmlparser/tests/mochitest/Makefile.in", + "parser/htmlparser/tests/mochitest/test_bug552938-2.html", + "parser/htmlparser/tests/mochitest/test_bug552938.html" + ], + "components": [ + "Core::XML", + "Core::DOM: HTML Parser", + "Core::SVG" + ], + "directories": [ + "parser/html", + "layout/svg", + "parser/htmlparser", + "content", + "parser", + "content/xml", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "ef715f78e927e46db86fd00b7a5ea89641767041", + "author": "Ted Mielczarek ", + "bug_id": 568818, + "desc": "Backed out changeset d1c910f2ec4d on suspicion of causing test crashes - Bug 568818 - sendSyncMessage fails with 'SyntaxError: JSON.parse' if one of the listeners does not return a value", + "pushdate": "2010-06-11 17:53:10", + "backsout": [ + "d1c910f2ec4d" + ], + "backedoutby": "", + "author_email": "ted.mielczarek@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 70247026.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/base/src/nsFrameMessageManager.cpp" + ], + "components": [], + "directories": [ + "content/base", + "content" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "4dc9a5d9167b157b0867547ea14fe4a4e306af42", + "author": "Ehsan Akhgari ", + "bug_id": 563327, + "desc": "Backed out changeset fee5701c664e and changeset dcfe95c71a04 to fix the mochitest-a11y crashes (bug 563327)", + "pushdate": "2010-06-14 22:14:46", + "backsout": [ + "fee5701c664e" + ], + "backedoutby": "", + "author_email": "ehsan@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 19270363.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "accessible/src/base/nsEventShell.cpp", + "accessible/src/base/nsEventShell.h", + "layout/base/nsCSSFrameConstructor.cpp", + "layout/base/nsIPresShell.h", + "layout/base/nsPresShell.cpp" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "accessible/src", + "accessible", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "7523ad2f395e9295ec597de3b8de5329cb17a18a", + "author": "Drew Willcoxon ", + "bug_id": 571459, + "desc": "Backed out changeset b54140961fa7 to fix more mochitest-a11y crashes (Bug 571459)", + "pushdate": "2010-06-14 23:19:27", + "backsout": [ + "b54140961fa7" + ], + "backedoutby": "", + "author_email": "adw@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 44710491.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "accessible/public/nsIAccessibilityService.h", + "accessible/src/base/nsAccDocManager.h", + "accessible/src/base/nsAccessibilityService.cpp", + "accessible/src/base/nsAccessibilityService.h", + "accessible/src/base/nsOuterDocAccessible.cpp", + "layout/base/nsPresShell.cpp" + ], + "components": [], + "directories": [ + "accessible/public", + "accessible/src", + "accessible", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "53510454716ebb1e760a0262ffdfb89276c9543b", + "author": "Chris Pearce ", + "bug_id": 572034, + "desc": "Backed out changeset f2835c78ef3f, Bug 572034.", + "pushdate": "2010-06-16 23:04:24", + "backsout": [ + "f2835c78ef3f" + ], + "backedoutby": "", + "author_email": "chris@pearce.org.nz", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 54088542.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "gfx/ycbcr/Makefile.in" + ], + "components": [], + "directories": [ + "gfx", + "gfx/ycbcr" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "3e0eb9fe8f481ce2257922ef08219bb364da24a7", + "author": "Matthew Gregan ", + "bug_id": 572034, + "desc": "Backed out changeset d268e54fbfcf (bug 572034)", + "pushdate": "2010-06-18 23:44:31", + "backsout": [ + "d268e54fbfcf" + ], + "backedoutby": "", + "author_email": "kinetik@flim.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 54067558.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "gfx/ycbcr/Makefile.in", + "gfx/ycbcr/README", + "gfx/ycbcr/bug572034_mac_64bit.patch", + "gfx/ycbcr/update.sh", + "gfx/ycbcr/yuv_row_linux.cpp" + ], + "components": [ + "Core::Graphics" + ], + "directories": [ + "gfx", + "gfx/ycbcr" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "5504cc6d31698a12ca86c443aca74c834b499ded", + "author": "Matthew Gregan ", + "bug_id": 555121, + "desc": "Backed out changeset 4adab2629c3f (bug 555121)", + "pushdate": "2010-06-19 06:25:38", + "backsout": [ + "4adab2629c3f" + ], + "backedoutby": "", + "author_email": "kinetik@flim.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 54091625.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "media/libvorbis/README_MOZILLA", + "media/libvorbis/bug498855.patch", + "media/libvorbis/bug550184.patch", + "media/libvorbis/include/vorbis/codec.h", + "media/libvorbis/lib/backends.h", + "media/libvorbis/lib/codebook.h", + "media/libvorbis/lib/highlevel.h", + "media/libvorbis/lib/psy.h", + "media/libvorbis/lib/vorbis_codebook.c", + "media/libvorbis/lib/vorbis_floor1.c", + "media/libvorbis/lib/vorbis_info.c", + "media/libvorbis/lib/vorbis_mapping0.c", + "media/libvorbis/lib/vorbis_psy.c", + "media/libvorbis/lib/vorbis_res0.c", + "media/libvorbis/lib/vorbis_sharedbook.c", + "media/libvorbis/lib/vorbis_synthesis.c", + "media/libvorbis/update.sh" + ], + "components": [ + "Core::Audio/Video" + ], + "directories": [ + "media", + "media/libvorbis" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "063826c84e206d51231cdd4d2aeaf23544d1fc65", + "author": "L. David Baron ", + "bug_id": 534398, + "desc": "Backed out changeset b805434e7e4b (bug 534398) for causing leaks on (debug) mochitest-other.", + "pushdate": "2010-06-19 21:17:47", + "backsout": [ + "b805434e7e4b" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 66190788.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/base/content/browser-menubar.inc", + "browser/base/content/browser-sets.inc", + "browser/base/content/browser.js", + "browser/locales/en-US/chrome/browser/browser.dtd", + "toolkit/components/console/Makefile.in", + "toolkit/components/console/content/headsUpDisplay.css", + "toolkit/components/console/hudservice/HUDService.jsm", + "toolkit/components/console/hudservice/Makefile.in", + "toolkit/components/console/hudservice/tests/Makefile.in", + "toolkit/components/console/hudservice/tests/browser/Makefile.in", + "toolkit/components/console/hudservice/tests/browser/browser_HUDServiceTestsAll.js", + "toolkit/components/console/hudservice/tests/browser/test-console.html", + "toolkit/components/console/hudservice/tests/browser/test-data.json", + "toolkit/components/console/hudservice/tests/browser/test-filter.html", + "toolkit/components/console/hudservice/tests/browser/test-mutation.html", + "toolkit/components/console/hudservice/tests/browser/test-network.html", + "toolkit/components/console/hudservice/tests/browser/test-observe-http-ajax.html", + "toolkit/components/console/hudservice/tests/browser/testscript.js", + "toolkit/components/console/jar.mn", + "toolkit/locales/en-US/chrome/global/headsUpDisplay.dtd", + "toolkit/locales/en-US/chrome/global/headsUpDisplay.properties", + "toolkit/locales/jar.mn" + ], + "components": [ + "Firefox::General", + "Firefox Build System::General", + "Firefox::Menus" + ], + "directories": [ + "browser/base", + "toolkit/components", + "toolkit", + "toolkit/locales", + "browser/locales", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "284711070f31f2677b807d95476cc7e6db197a3c", + "author": "L. David Baron ", + "bug_id": 571347, + "desc": "Backed out changeset a6e3300a3bac (bug 571347) for causing bug 573255 because the optimization is invalid given :not() selectors.", + "pushdate": "2010-06-19 21:17:47", + "backsout": [ + "a6e3300a3bac" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 66190788.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/reftests/bugs/571347-1-ref.html", + "layout/reftests/bugs/571347-1a.html", + "layout/reftests/bugs/571347-1b.html", + "layout/reftests/bugs/571347-2-ref.html", + "layout/reftests/bugs/571347-2a.html", + "layout/reftests/bugs/571347-2b.html", + "layout/reftests/bugs/571347-2c.html", + "layout/reftests/bugs/571347-2d.html", + "layout/reftests/bugs/reftest.list", + "layout/style/nsCSSRuleProcessor.cpp" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "layout/reftests", + "layout/style", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "4157a4415bf79adf6def7aa2d216e1321c91867d", + "author": "Edward Lee ", + "bug_id": 482878, + "desc": "Backed out changeset 430ce13b63f3 (bug 482878)\nBug 482670 restored un-wrapped payloads, so until a version bump, those using trunk will need to do a manual server wipe.", + "pushdate": "2010-06-23 22:21:35", + "backsout": [ + "430ce13b63f3" + ], + "backedoutby": "", + "author_email": "edilee@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 40320739.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "services/sync/modules/service.js" + ], + "components": [], + "directories": [ + "services", + "services/sync" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "39cb8075f8444f27f7097238e75953aba158d73e", + "author": "Shawn Wilsher ", + "bug_id": 571992, + "desc": "Backed out changeset 88142593698a (bug 571992) because it already landed apparently...", + "pushdate": "2010-06-24 17:39:34", + "backsout": [ + "88142593698a" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 64806743.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/base/content/browser.xul" + ], + "components": [], + "directories": [ + "browser/base", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "bf804f41e245b8e2ce317ff51da1e94d32d5ab70", + "author": "Daniel Holbert ", + "bug_id": 557566, + "desc": "Backed out changeset a65d962718b0 (bug 557566)", + "pushdate": "2010-06-27 03:02:56", + "backsout": [ + "a65d962718b0" + ], + "backedoutby": "", + "author_email": "dholbert@cs.stanford.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 66776703.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/canvas/src/Makefile.in", + "content/media/wave/Makefile.in" + ], + "components": [], + "directories": [ + "content/canvas", + "content", + "content/media" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "880fcf5f07b3d395c9d74b7d45b09dd8825217d8", + "author": "Daniel Holbert ", + "bug_id": 557566, + "desc": "Backed out changeset 5da9fc2be835 (Bug 557566)", + "pushdate": "2010-06-27 03:02:56", + "backsout": [ + "5da9fc2be835" + ], + "backedoutby": "", + "author_email": "dholbert@cs.stanford.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 66776703.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/canvas/src/Makefile.in", + "content/media/wave/Makefile.in", + "docshell/shistory/src/Makefile.in", + "dom/src/geolocation/Makefile.in", + "editor/txmgr/src/Makefile.in", + "toolkit/components/places/tests/cpp/Makefile.in", + "uriloader/base/Makefile.in" + ], + "components": [], + "directories": [ + "content/canvas", + "dom/src", + "toolkit", + "toolkit/components", + "docshell/shistory", + "uriloader/base", + "docshell", + "editor", + "dom", + "content", + "content/media", + "editor/txmgr", + "uriloader" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "4add6eaba66ff0b2a6c7a809922a60f99625ddc3", + "author": "Peter Van der Beken ", + "bug_id": 571159, + "desc": "Backout 8a6de68c0feb (Fix for bug 571159 (Leak nsGlobalWindow with unknown-content-type dialog)) to fix orange.", + "pushdate": "2010-06-28 15:40:59", + "backsout": [ + "8a6de68c0feb" + ], + "backedoutby": "", + "author_email": "peterv@propagandism.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 63675486.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/mozapps/downloads/nsHelperAppDlg.js" + ], + "components": [], + "directories": [ + "toolkit/mozapps", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "5082a31c8b8e75fa9321fad3baf0e7621fee4328", + "author": "Justin Dolske ", + "bug_id": 574357, + "desc": "Backed out changeset e112f68bc941 (bug 574357) due to test failures.", + "pushdate": "2010-06-30 05:46:21", + "backsout": [ + "e112f68bc941" + ], + "backedoutby": "", + "author_email": "dolske@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 64232425.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "modules/plugin/test/mochitest/Makefile.in", + "modules/plugin/test/mochitest/test_crash_submit.xul", + "testing/mochitest/tests/SimpleTest/EventUtils.js", + "toolkit/crashreporter/CrashSubmit.jsm", + "toolkit/crashreporter/content/crashes.js" + ], + "components": [ + "Testing::Mochitest", + "Toolkit::Crash Reporting" + ], + "directories": [ + "toolkit", + "modules/plugin", + "toolkit/crashreporter", + "testing/mochitest", + "testing", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "869ff461e1d61b0fc911caba23388a95950ba1c8", + "author": "Boris Zbarsky ", + "bug_id": 575336, + "desc": "Backed out changeset 00dfcf7f4c9e (bug 575336) due to test orange. Magic words for CLOSED TREE.", + "pushdate": "2010-07-01 05:19:24", + "backsout": [ + "00dfcf7f4c9e" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 62406872.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/base/nsPresShell.cpp", + "view/src/nsViewManager.cpp" + ], + "components": [], + "directories": [ + "view", + "view/src", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "2e14387eb276fe4dc6ee4b13db76639d12b6234e", + "author": "Benjamin Smedberg ", + "bug_id": 541155, + "desc": "Backed out changeset df78efe07b18, debugging only printfs now that 541155 is diagnosed.", + "pushdate": "2010-07-01 06:28:42", + "backsout": [ + "df78efe07b18" + ], + "backedoutby": "", + "author_email": "benjamin@smedbergs.us", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 71933958.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "modules/plugin/test/testplugin/nptest.cpp" + ], + "components": [], + "directories": [ + "modules/plugin", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "686aedb56727e992700c4cb6dcc0162dab5b895b", + "author": "Benjamin Smedberg ", + "bug_id": 535564, + "desc": "Backed out changeset c7a2f3e14a58 - Testing from bug 535564 - We don't have a file handle open when we launch ssltunnel, so ssltunnel wasn't the cause.", + "pushdate": "2010-07-01 06:28:42", + "backsout": [ + "c7a2f3e14a58" + ], + "backedoutby": "", + "author_email": "benjamin@smedbergs.us", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 71933958.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "build/automation.py.in" + ], + "components": [], + "directories": [ + "build" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "9fb0650cbfc08daf9b1371544987878f7bb3ecd6", + "author": "Benjamin Smedberg ", + "bug_id": 542337, + "desc": "Backed out changeset e033fa1d3b0b - remove the workaround for bug 542337 because bent landed a real fix and we want testing", + "pushdate": "2010-07-01 06:28:42", + "backsout": [ + "e033fa1d3b0b" + ], + "backedoutby": "", + "author_email": "benjamin@smedbergs.us", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 71933958.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/generic/test/plugin_clipping_helper2.xhtml" + ], + "components": [], + "directories": [ + "layout/generic", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "c4b97df52cae46d26f3bbee0b47b7d994e6ce892", + "author": "Karl Tomlinson ", + "bug_id": 550026, + "desc": "backout 5b9325736070 b=550026", + "pushdate": "2010-07-01 06:28:42", + "backsout": [ + "5b9325736070" + ], + "backedoutby": "", + "author_email": "karlt+@karlt.net", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 62565298.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "dom/plugins/PluginModuleChild.cpp", + "dom/plugins/PluginModuleParent.cpp", + "modules/plugin/test/mochitest/Makefile.in", + "modules/plugin/test/mochitest/test_crash_nested_loop.html", + "modules/plugin/test/testplugin/nptest.cpp", + "modules/plugin/test/testplugin/nptest.h", + "modules/plugin/test/testplugin/nptest_gtk2.cpp", + "modules/plugin/test/testplugin/nptest_platform.h" + ], + "components": [], + "directories": [ + "dom", + "modules/plugin", + "dom/plugins", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "4497942b0e3d7aa73e282747d857fb6110b794d6", + "author": "Dave Townsend ", + "bug_id": 556400, + "desc": "Backed out changeset f666976446db from bug 556400 due to possible browser-chrome\nfailures.", + "pushdate": "2010-07-03 03:02:52", + "backsout": [ + "f666976446db" + ], + "backedoutby": "", + "author_email": "dtownsend@oxymoronical.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 65636330.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/components/places/src/History.cpp" + ], + "components": [], + "directories": [ + "toolkit/components", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "c066080db73501bdcee16c871ba3eebb07ca0779", + "author": "Dave Townsend ", + "bug_id": 566738, + "desc": "Backed out changeset 07a9dcc28c5c from bug 566738 due to possible browser-chrome failures.", + "pushdate": "2010-07-03 03:02:52", + "backsout": [ + "07a9dcc28c5c" + ], + "backedoutby": "", + "author_email": "dtownsend@oxymoronical.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 65636330.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "docshell/base/IHistory.h", + "docshell/base/nsDocShell.cpp", + "toolkit/components/places/src/History.cpp", + "toolkit/components/places/src/History.h", + "toolkit/components/places/src/nsNavHistory.cpp", + "toolkit/components/places/src/nsNavHistory.h", + "toolkit/components/places/tests/browser/Makefile.in" + ], + "components": [ + "Toolkit::Places", + "Core::DOM: Navigation" + ], + "directories": [ + "toolkit/components", + "docshell/base", + "toolkit", + "docshell" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "920385221b56485347c16d59a782c808d1b64085", + "author": "Dave Townsend ", + "bug_id": 556400, + "desc": "Backed out changeset f9a700607b86 from bug556400 due to possible browser-chrome failures.", + "pushdate": "2010-07-03 03:02:52", + "backsout": [ + "f9a700607b86" + ], + "backedoutby": "", + "author_email": "dtownsend@oxymoronical.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 65636330.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "docshell/base/IHistory.h", + "docshell/base/nsDocShell.cpp", + "docshell/base/nsDocShell.h", + "toolkit/components/places/src/Helpers.cpp", + "toolkit/components/places/src/Helpers.h", + "toolkit/components/places/src/History.cpp", + "toolkit/components/places/src/History.h", + "toolkit/components/places/src/nsNavHistory.cpp", + "toolkit/components/places/src/nsNavHistory.h", + "toolkit/components/places/tests/browser/Makefile.in", + "toolkit/components/places/tests/cpp/places_test_harness.h", + "toolkit/components/places/tests/cpp/test_IHistory.cpp", + "xpcom/build/Makefile.in", + "xpcom/build/ServiceList.h", + "xpcom/build/Services.cpp", + "xpcom/build/Services.h" + ], + "components": [ + "Toolkit::Places", + "Core::DOM: Navigation" + ], + "directories": [ + "toolkit/components", + "toolkit", + "docshell/base", + "docshell", + "xpcom/build", + "xpcom" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "330178c7235b6ac438af8a8b8797ce006a537242", + "author": "Benoit Girard ", + "bug_id": 577224, + "desc": "Back out 06cc16f7954e (bug 577224) because it can cause plugins to not draw.", + "pushdate": "2010-07-09 20:16:30", + "backsout": [ + "06cc16f7954e" + ], + "backedoutby": "", + "author_email": "b56girard@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 8125474.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "gfx/src/thebes/utils/nsCoreAnimationSupport.h", + "gfx/src/thebes/utils/nsCoreAnimationSupport.mm" + ], + "components": [], + "directories": [ + "gfx/src", + "gfx" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "6ad1beea584ac84aef0dd5f6b90b297d6afe187a", + "author": "Josh Aas ", + "bug_id": 578913, + "desc": "Backed out changeset 764bb4ae886c, bug 578913, it may be at fault for a Ts Shutdown regression.", + "pushdate": "2010-07-16 17:25:59", + "backsout": [ + "764bb4ae886c" + ], + "backedoutby": "", + "author_email": "joshmoz@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 64760720.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "modules/plugin/base/src/nsPluginHost.cpp", + "modules/plugin/base/src/nsPluginHost.h", + "modules/plugin/base/src/nsPluginStreamListenerPeer.cpp", + "modules/plugin/base/src/nsPluginStreamListenerPeer.h" + ], + "components": [], + "directories": [ + "modules/plugin", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "d0d098061840a2d4bb25beada4dfc4f84bdc6cb5", + "author": "Josh Aas ", + "bug_id": 571193, + "desc": "Backed out changeset f6c93f02146c, bug 571193.", + "pushdate": "2010-07-17 00:32:00", + "backsout": [ + "f6c93f02146c" + ], + "backedoutby": "", + "author_email": "joshmoz@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 64786281.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/xre/nsAppRunner.cpp", + "xpcom/io/CocoaFileUtils.h", + "xpcom/io/CocoaFileUtils.mm", + "xpcom/io/Makefile.in", + "xpcom/io/nsILocalFileMac.idl", + "xpcom/io/nsLocalFile.h", + "xpcom/io/nsLocalFileOSX.h", + "xpcom/io/nsLocalFileOSX.mm", + "xpcom/io/nsLocalFileUnix.cpp", + "xpcom/io/nsLocalFileUnix.h" + ], + "components": [ + "Core::XPCOM", + "Toolkit::Startup and Profile System" + ], + "directories": [ + "xpcom", + "xpcom/io", + "toolkit", + "toolkit/xre" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "bc7c573d41724335e529404841d169f38efd2b27", + "author": "Dave Townsend ", + "bug_id": 553494, + "desc": "Backed out changeset 58175e77c460 from bug 553494 due to test failures", + "pushdate": "2010-07-26 18:41:40", + "backsout": [ + "58175e77c460" + ], + "backedoutby": "", + "author_email": "dtownsend@oxymoronical.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 67679858.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/mozapps/extensions/content/extensions.js", + "toolkit/mozapps/extensions/content/extensions.xml", + "toolkit/mozapps/extensions/test/browser/Makefile.in", + "toolkit/mozapps/extensions/test/browser/browser_uninstalling.js", + "toolkit/mozapps/extensions/test/browser/head.js" + ], + "components": [ + "Toolkit::Add-ons Manager" + ], + "directories": [ + "toolkit/mozapps", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "a24232050cb11eb86eb348962deea19a40407a33", + "author": "Timothy Nikkel ", + "bug_id": 574621, + "desc": "Backed out changeset 9e290d196600 (bug 574621) for causing test failures.", + "pushdate": "2010-07-29 20:17:48", + "backsout": [ + "9e290d196600" + ], + "backedoutby": "", + "author_email": "tnikkel@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 38077102.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/base/nsPresShell.cpp" + ], + "components": [], + "directories": [ + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "8aabb35a1bb3103d74670ffa88023b9c93d783cc", + "author": "Robert Sayre ", + "bug_id": 579957, + "desc": "Backed out changeset d8bbb2ef3038. (Igor Bukanov \u2013 bug 579957 - parent as a field in JSObject. r=lw)", + "pushdate": "2010-08-01 00:33:23", + "backsout": [ + "d8bbb2ef3038" + ], + "backedoutby": "", + "author_email": "sayrer@gmail.com", + "reviewers": [ + "lw" + ], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 67410970.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsarray.cpp", + "js/src/jscntxt.h", + "js/src/jsgc.cpp", + "js/src/jsobj.cpp", + "js/src/jsobj.h", + "js/src/jsproxy.cpp", + "js/src/jsscope.h", + "js/src/jstracer.cpp", + "js/src/jstypedarray.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "4f0f0e801b200dcbdf824a0de1ff9c481481e7e1", + "author": "Robert Sayre ", + "bug_id": 583281, + "desc": "Backed out changeset af011e92ad0b. (Dave Herman \u2013 bug 583281, r=jimb: njs should get symlinked into objdir). This doesn't build on windows.", + "pushdate": "2010-08-01 00:33:23", + "backsout": [ + "af011e92ad0b" + ], + "backedoutby": "", + "author_email": "sayrer@gmail.com", + "reviewers": [ + "jimb" + ], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 67410970.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/njs", + "js/src/shell/Makefile.in", + "js/src/shell/njs", + "js/src/tests/narcissus.README" + ], + "components": [ + "Firefox Build System::General" + ], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "5e31dc2daf0a9c531370204ac3b7f32d9cd1437c", + "author": "Robert Sayre ", + "bug_id": 582479, + "desc": "Back out changeset c877176cbbed in order to get Windows compiling. (Bug 582479 - TM: Assertion failure: (&cx->regs->sp[1 - (iargc + 2)].toObject())->isFunction().)", + "pushdate": "2010-08-01 00:33:23", + "backsout": [ + "c877176cbbed" + ], + "backedoutby": "", + "author_email": "sayrer@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 67410970.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jstracer.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "9539f400bb5869e7f5041299359645bd509a9c69", + "author": "Robert Sayre ", + "bug_id": 577648, + "desc": "Backout changeset 80382d88b92c. (Bug 577648 - arguments.callee.caller does not work in FF 4 under certain circumstances). The patch is righteous, but MSVC's behavior with a mere 3GB of addressable memory is not. Will reland soon.", + "pushdate": "2010-08-01 00:33:23", + "backsout": [ + "80382d88b92c" + ], + "backedoutby": "", + "author_email": "sayrer@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 67410970.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsapi.cpp", + "js/src/jsarray.cpp", + "js/src/jsarray.h", + "js/src/jscntxt.cpp", + "js/src/jscntxt.h", + "js/src/jsdbgapi.cpp", + "js/src/jsdbgapi.h", + "js/src/jsemit.cpp", + "js/src/jsfun.cpp", + "js/src/jsfun.h", + "js/src/jsgc.cpp", + "js/src/jsinterp.cpp", + "js/src/jsinterp.h", + "js/src/jsobj.cpp", + "js/src/jsobjinlines.h", + "js/src/jsopcode.cpp", + "js/src/jsparse.cpp", + "js/src/jsscope.cpp", + "js/src/jsscope.h", + "js/src/jsscopeinlines.h", + "js/src/jsscript.cpp", + "js/src/jsstr.cpp", + "js/src/jsstr.h", + "js/src/jstracer.cpp", + "js/src/jsvalue.h", + "js/src/tests/js1_5/Regress/jstests.list", + "js/src/tests/js1_5/Scope/jstests.list", + "js/src/tests/js1_8_5/regress/jstests.list" + ], + "components": [ + "Core::JavaScript Engine" + ], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "bd4713e47e5e0851c7eb3461b2f6599d73f91f81", + "author": "Markus Stange ", + "bug_id": 574663, + "desc": "Backed out changeset cd5c28912351, bug 574663 (momentum scroll zooming) because the new test fails on Windows.", + "pushdate": "2010-08-02 15:52:38", + "backsout": [ + "cd5c28912351" + ], + "backedoutby": "", + "author_email": "mstange@themasta.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 65974854.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/events/src/nsEventStateManager.cpp", + "content/events/test/Makefile.in", + "content/events/test/test_bug574663.html", + "testing/mochitest/tests/SimpleTest/EventUtils.js", + "widget/public/nsGUIEvent.h", + "widget/src/cocoa/nsChildView.h", + "widget/src/cocoa/nsChildView.mm" + ], + "components": [ + "Testing::Mochitest" + ], + "directories": [ + "widget", + "testing/mochitest", + "content", + "widget/public", + "widget/src", + "testing", + "content/events" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "32a6a3231e503c54824c6ba80425894f9a058199", + "author": "Gavin Sharp ", + "bug_id": 550936, + "desc": "Backed out changeset bdb98838d6f6 from bug 550936 due to js-reftest failures", + "pushdate": "2010-08-03 05:27:20", + "backsout": [ + "bdb98838d6f6" + ], + "backedoutby": "", + "author_email": "gavin@gavinsharp.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 24450720.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/library/libxul-config.mk", + "toolkit/library/nsStaticXULComponents.cpp", + "toolkit/mozapps/extensions/Makefile.in", + "toolkit/mozapps/extensions/XPIProvider.jsm", + "toolkit/mozapps/extensions/addonManager.js", + "toolkit/mozapps/extensions/amInstallTrigger.cpp", + "toolkit/mozapps/extensions/amInstallTrigger.h", + "toolkit/mozapps/extensions/content/extensions-content.js", + "toolkit/mozapps/extensions/jar.mn" + ], + "components": [ + "Toolkit::Add-ons Manager" + ], + "directories": [ + "toolkit/library", + "toolkit/mozapps", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "f2d6cc57c80cae87069fccb19f8b0af68af1b7b0", + "author": "Gavin Sharp ", + "bug_id": 572967, + "desc": "Backed out changeset b46982cc0c0a from bug 572967 due to test failures", + "pushdate": "2010-08-03 05:39:35", + "backsout": [ + "b46982cc0c0a" + ], + "backedoutby": "", + "author_email": "gavin@gavinsharp.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 24451455.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/base/content/browser.css", + "browser/base/content/browser.js", + "browser/base/content/browser.xul", + "browser/themes/gnomestripe/browser/browser.css", + "browser/themes/pinstripe/browser/browser.css", + "browser/themes/winstripe/browser/browser.css", + "toolkit/content/PopupNotifications.jsm" + ], + "components": [ + "Firefox::General" + ], + "directories": [ + "browser/base", + "toolkit/content", + "toolkit", + "browser/themes", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "f7478476c9a5d4a650d764a967c8dedce7e5883f", + "author": "Robert Sayre ", + "bug_id": 583262, + "desc": "Backed out changeset c6131ed87e9c. Jason Orendorff \u2014 Bug 583262 - Remove security checks on f.prototype.constructor property at last. r=mrbkap. Causing nightly topcrash.", + "pushdate": "2010-08-04 20:45:11", + "backsout": [ + "c6131ed87e9c" + ], + "backedoutby": "", + "author_email": "sayrer@gmail.com", + "reviewers": [ + "mrbkap" + ], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 67742878.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsobj.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "decafc4eb6e2e82cb98713356c2814af0f78372f", + "author": "Markus Stange ", + "bug_id": 576777, + "desc": "Backed out changeset d84aff2ae1db (from bug 576777) because of perma-orange in test_text.html.", + "pushdate": "2010-08-05 12:56:16", + "backsout": [ + "d84aff2ae1db" + ], + "backedoutby": "", + "author_email": "mstange@themasta.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 66223472.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "accessible/tests/mochitest/attributes/test_text.html" + ], + "components": [], + "directories": [ + "accessible", + "accessible/tests" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "8565e77eacdccd4ae3aadd0f769ff2f0604b6684", + "author": "Markus Stange ", + "bug_id": 576777, + "desc": "Backed out changeset e29fc477ab4d, bug 576777, because of perma-orange in test_text.html.", + "pushdate": "2010-08-05 12:56:16", + "backsout": [ + "e29fc477ab4d" + ], + "backedoutby": "", + "author_email": "mstange@themasta.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 66223472.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "accessible/src/base/AccCollector.cpp", + "accessible/src/base/AccCollector.h", + "accessible/src/base/nsAccessible.cpp", + "accessible/src/base/nsAccessible.h", + "accessible/src/base/nsOuterDocAccessible.cpp", + "accessible/src/html/nsHyperTextAccessible.cpp", + "accessible/src/html/nsHyperTextAccessible.h", + "accessible/src/msaa/CAccessibleHypertext.cpp", + "accessible/tests/mochitest/attributes/test_text.html" + ], + "components": [], + "directories": [ + "accessible/src", + "accessible", + "accessible/tests" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "8d4d8fc43475a18933f6d48e2260289d9cff0db9", + "author": "Shawn Wilsher ", + "bug_id": 580790, + "desc": "Back out changeset 0b3af3fef0fd (bug 580790) due to burnage on a CLOSED TREE", + "pushdate": "2010-08-06 17:47:10", + "backsout": [ + "0b3af3fef0fd" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 68522399.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "storage/src/mozStorageConnection.cpp", + "storage/src/mozStorageService.cpp", + "storage/src/mozStorageService.h" + ], + "components": [], + "directories": [ + "storage/src", + "storage" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "e88f6c524f3aeda886e7ee21f8ed9b467e946ec9", + "author": "Shawn Wilsher ", + "bug_id": 568969, + "desc": "Backed out changeset e6e0200b6e03 (bug 568969) because it appears to have caused orange on a CLOSED TREE.", + "pushdate": "2010-08-06 18:54:28", + "backsout": [ + "e6e0200b6e03" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 68526437.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/base/public/nsContentUtils.h", + "content/base/src/Link.cpp", + "content/base/src/nsContentUtils.cpp", + "dom/ipc/ContentParent.cpp", + "toolkit/components/places/src/History.cpp" + ], + "components": [ + "Core::DOM: Content Processes" + ], + "directories": [ + "toolkit", + "toolkit/components", + "dom", + "content/base", + "content", + "dom/ipc" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "312fdcee7e5093582e6df431c7c210feef2b14b0", + "author": "Dave Townsend ", + "bug_id": 580869, + "desc": "Backed out changeset 300036f6c90f from bug 580869 due to test failures", + "pushdate": "2010-08-06 22:02:48", + "backsout": [ + "300036f6c90f" + ], + "backedoutby": "", + "author_email": "dtownsend@oxymoronical.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 68642326.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/generic/nsTextFrameThebes.cpp" + ], + "components": [], + "directories": [ + "layout/generic", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "87be0d140fd611534baa3bc3579062b9fa8ac4e6", + "author": "Dave Townsend ", + "bug_id": 580869, + "desc": "Backed out changeset 8f8ee0543d0f from bug 580869 in the CLOSED TREE", + "pushdate": "2010-08-06 22:02:48", + "backsout": [ + "8f8ee0543d0f" + ], + "backedoutby": "", + "author_email": "dtownsend@oxymoronical.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 68642326.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/generic/nsIFrame.h", + "layout/generic/nsTextFrame.h", + "layout/generic/nsTextFrameThebes.cpp" + ], + "components": [ + "Core::Layout", + "Core::Layout: Text and Fonts" + ], + "directories": [ + "layout/generic", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "5a254bcd79f2b1b27cee499322ebafd4f369f881", + "author": "Robert Sayre ", + "bug_id": 584495, + "desc": "Backed out changeset 504bc84513b0. Andreas Gal \u2013 Ensure that JSOPTION_UNROOTED_GLOBAL is set when we cycle collect (stop-gap measure for bug 584495, r=brendan). default tip", + "pushdate": "2010-08-07 05:52:47", + "backsout": [ + "504bc84513b0" + ], + "backedoutby": "", + "author_email": "sayrer@gmail.com", + "reviewers": [ + "brendan" + ], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 67948534.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/xpconnect/src/xpcjsruntime.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "682eee29d90d1650e28b60432faf87e89b577767", + "author": "Timothy Nikkel ", + "bug_id": 584193, + "desc": "Backed out changeset 86e8ec17e532 (bug 584193).", + "pushdate": "2010-08-08 22:07:15", + "backsout": [ + "86e8ec17e532" + ], + "backedoutby": "", + "author_email": "tnikkel@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 38947669.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/base/nsDocumentViewer.cpp", + "layout/base/nsIDocumentViewer.h", + "layout/base/nsIDocumentViewerPrint.h", + "layout/printing/nsPrintEngine.cpp", + "layout/printing/nsPrintEngine.h", + "layout/printing/nsPrintObject.cpp", + "layout/printing/nsPrintObject.h" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "layout", + "layout/base", + "layout/printing" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "abca98af611ed75fcdae4e05fd91900e26908474", + "author": "Phil Ringnalda ", + "bug_id": 579621, + "desc": "Backed out changeset ec28c1790e13 (bug 579621) for print preview test timeouts", + "pushdate": "2010-08-09 00:49:11", + "backsout": [ + "ec28c1790e13" + ], + "backedoutby": "", + "author_email": "philringnalda@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 67822561.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/generic/nsFrameFrame.cpp" + ], + "components": [], + "directories": [ + "layout/generic", + "layout" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "9165ca3607bd30328db254613bd305e3e4e0f67e", + "author": "Shawn Wilsher ", + "bug_id": 575870, + "desc": "Backed out changeset a0d6e4d37273 (bug 575870) for possibly being the cause of the following performance regression:\nTalos Regression: Txul increase 4.57% on Win7 Firefox\nOther possible culprits:\nbug 574454", + "pushdate": "2010-08-10 20:06:04", + "backsout": [ + "a0d6e4d37273" + ], + "backedoutby": "", + "author_email": "sdwilsh@shawnwilsher.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 68876333.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/base/content/browser.css", + "browser/base/content/browser.js", + "browser/base/content/browser.xul", + "browser/themes/winstripe/browser/browser-aero.css", + "browser/themes/winstripe/browser/browser.css" + ], + "components": [ + "Firefox::General" + ], + "directories": [ + "browser/base", + "browser/themes", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "89aad8922d715d0ef6aed75907fb8e242f4d70d3", + "author": "L. David Baron ", + "bug_id": 584582, + "desc": "Backed out changeset fef97fa21915 (bug 584582) for causing compilation failures on Windows.", + "pushdate": "2010-08-11 19:26:48", + "backsout": [ + "fef97fa21915" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 70763329.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "modules/plugin/test/mochitest/Makefile.in", + "toolkit/crashreporter/Makefile.in", + "toolkit/crashreporter/nsExceptionHandler.cpp" + ], + "components": [ + "Toolkit::Crash Reporting" + ], + "directories": [ + "modules/plugin", + "toolkit", + "toolkit/crashreporter", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "b186d13109a758d85982c790e25abcfb3de5358d", + "author": "Michael Wu ", + "bug_id": 583145, + "desc": "Backed out changeset ccfdad9f5c93 due to regressions (bug 583145)", + "pushdate": "2010-08-12 01:43:41", + "backsout": [ + "ccfdad9f5c93" + ], + "backedoutby": "", + "author_email": "mwu@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 19345388.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/themes/pinstripe/global/headsUpDisplay.css" + ], + "components": [], + "directories": [ + "toolkit/themes", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "90b5a456b7bad12f4b78cc2bfb3d57749cdbbd1a", + "author": "Dave Townsend ", + "bug_id": 582569, + "desc": "Backed out changeset 937a11c1fc07 from bug 582569 due to new browser-chrome test\nfailures.", + "pushdate": "2010-08-12 17:29:08", + "backsout": [ + "937a11c1fc07" + ], + "backedoutby": "", + "author_email": "dtownsend@oxymoronical.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 69144306.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/base/src/nsInProcessTabChildGlobal.cpp", + "content/base/src/nsInProcessTabChildGlobal.h", + "dom/ipc/TabChild.cpp" + ], + "components": [], + "directories": [ + "dom", + "content/base", + "content", + "dom/ipc" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "1bab6d09fbc9021a54784388e1d82994ee8bcca3", + "author": "Edward Lee ", + "bug_id": 581894, + "desc": "Backout d6a355524fcb from bug 581894 now that bug 579869 is fixed.", + "pushdate": "2010-08-12 19:47:36", + "backsout": [ + "d6a355524fcb" + ], + "backedoutby": "", + "author_email": "edilee@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 44631500.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/base/content/tabbrowser.xml" + ], + "components": [], + "directories": [ + "browser/base", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "64e4cce311e8a03a9d15c7adef774e90fa5111b7", + "author": "Edward Lee ", + "bug_id": 583306, + "desc": "Backout df9bbe8b6d78 now that bug 583306 is fixed.", + "pushdate": "2010-08-12 19:47:36", + "backsout": [ + "df9bbe8b6d78" + ], + "backedoutby": "", + "author_email": "edilee@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 44631500.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/components/sessionstore/src/nsSessionStore.js" + ], + "components": [], + "directories": [ + "browser/components", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "60a5b0d62bccef4bae84b063b392246c1007de15", + "author": "Josh Aas ", + "bug_id": 578868, + "desc": "Backed out changeset 452db8c688ba, bug 578868.", + "pushdate": "2010-08-13 08:24:39", + "backsout": [ + "452db8c688ba" + ], + "backedoutby": "", + "author_email": "joshmoz@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 67147440.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "dom/plugins/PluginModuleChild.cpp", + "modules/plugin/base/public/npfunctions.h", + "modules/plugin/base/public/nsIPlugin.idl", + "modules/plugin/base/src/PluginPRLibrary.cpp", + "modules/plugin/base/src/PluginPRLibrary.h", + "modules/plugin/base/src/nsNPAPIPlugin.cpp", + "modules/plugin/base/src/nsNPAPIPlugin.h", + "modules/plugin/base/src/nsPluginHost.cpp", + "modules/plugin/base/src/nsPluginsDir.h", + "modules/plugin/base/src/nsPluginsDirBeOS.cpp", + "modules/plugin/base/src/nsPluginsDirDarwin.cpp", + "modules/plugin/base/src/nsPluginsDirOS2.cpp", + "modules/plugin/base/src/nsPluginsDirUnix.cpp", + "modules/plugin/base/src/nsPluginsDirWin.cpp" + ], + "components": [], + "directories": [ + "dom", + "modules/plugin", + "dom/plugins", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "2c69cdb5a98c492d99f6fc0c3f05cb2796a84d1d", + "author": "Josh Aas ", + "bug_id": 584965, + "desc": "Backed out changeset 33f8c2bb77ca, bug 584965.", + "pushdate": "2010-08-13 19:48:23", + "backsout": [ + "33f8c2bb77ca" + ], + "backedoutby": "", + "author_email": "joshmoz@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 67188464.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "widget/src/cocoa/nsChildView.h", + "widget/src/cocoa/nsChildView.mm", + "widget/src/cocoa/nsCocoaWindow.mm", + "widget/src/cocoa/nsMenuBarX.h", + "widget/src/cocoa/nsMenuBarX.mm" + ], + "components": [], + "directories": [ + "widget", + "widget/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "9ded3c2c0a3fca47cfd74a2a985bcc2f9c358310", + "author": "Robert Sayre ", + "bug_id": 586533, + "desc": "Backed out changeset 1406935fced4. Brian Hackett \u2013 Put JSStackFrame.scopeChain/blockChain behind an interface, bug 586533. r=lw.", + "pushdate": "2010-08-13 20:13:33", + "backsout": [ + "1406935fced4" + ], + "backedoutby": "", + "author_email": "sayrer@gmail.com", + "reviewers": [ + "lw" + ], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 68518580.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsapi.cpp", + "js/src/jsbuiltins.cpp", + "js/src/jsdbgapi.cpp", + "js/src/jsfun.cpp", + "js/src/jsgc.cpp", + "js/src/jsinterp.cpp", + "js/src/jsinterp.h", + "js/src/jsiter.cpp", + "js/src/jsobj.cpp", + "js/src/jsobjinlines.h", + "js/src/jsrecursion.cpp", + "js/src/jstracer.cpp", + "js/src/jswrapper.cpp", + "js/src/jsxml.cpp" + ], + "components": [ + "Core::JavaScript Engine" + ], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "d796055d54653e1f30b08d833958bdcd79f544bd", + "author": "Jason Orendorff ", + "bug_id": 583850, + "desc": "Backed out changeset c5e31473b1a6 (assertions for bug 583850). See bug 584578 and bug 585754.", + "pushdate": "2010-08-13 20:13:33", + "backsout": [ + "c5e31473b1a6" + ], + "backedoutby": "", + "author_email": "jorendorff@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 69634942.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsinterp.cpp", + "js/src/jsobj.cpp" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "2fa5b630f3bc5e0d4ac7f56606b8e51331763cc2", + "author": "Marco Bonardo ", + "bug_id": 573492, + "desc": "Backed out changeset dfd35987dd82 (WAL journaling - bug 573492) due to Ts regressions", + "pushdate": "2010-08-14 07:58:46", + "backsout": [ + "dfd35987dd82" + ], + "backedoutby": "", + "author_email": "mbonardo@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 48020971.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "toolkit/components/places/src/Makefile.in", + "toolkit/components/places/src/nsNavHistory.cpp", + "toolkit/components/places/src/nsNavHistory.h", + "toolkit/components/places/src/nsPlacesDBFlush.js" + ], + "components": [], + "directories": [ + "toolkit/components", + "toolkit" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "391e102eb8636bdd1c7cfdecef0294f6f80194ed", + "author": "D\u00e3o Gottwald ", + "bug_id": 575870, + "desc": "Backed out changeset 05dde680ade2 as per bug 575870 comment 71", + "pushdate": "2010-08-15 12:32:07", + "backsout": [ + "05dde680ade2" + ], + "backedoutby": "", + "author_email": "dao@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 68681990.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "widget/src/windows/nsWindow.cpp", + "widget/src/windows/nsWindow.h" + ], + "components": [], + "directories": [ + "widget", + "widget/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "9f434423bdf92cf2c7732d8bca624d3c71c85f0d", + "author": "Gavin Sharp ", + "bug_id": 585877, + "desc": "Backed out changeset 43b490ef9dab (bug 585877), a=beltzner", + "pushdate": "2010-08-17 19:46:02", + "backsout": [ + "43b490ef9dab" + ], + "backedoutby": "", + "author_email": "gavin@gavinsharp.com", + "reviewers": [ + "beltzner" + ], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 25711842.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/html/document/src/nsHTMLDocument.cpp", + "dom/interfaces/html/nsIDOMNSHTMLDocument.idl", + "js/src/xpconnect/src/dom_quickstubs.qsconf" + ], + "components": [], + "directories": [ + "js/src", + "dom/interfaces", + "dom", + "content", + "content/html", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "eaa833618eaab81c9a1aad2516434196b47e9664", + "author": "Ted Mielczarek ", + "bug_id": 490705, + "desc": "Backed out changeset 1362f0ca86d2 (bug 490705 - Support Audio Data API: Get, Manipulate, Play & Save) due to test failures.", + "pushdate": "2010-08-18 17:10:12", + "backsout": [ + "1362f0ca86d2" + ], + "backedoutby": "", + "author_email": "ted.mielczarek@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 76119648.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/base/src/nsContentUtils.cpp", + "content/base/src/nsGkAtomList.h", + "content/base/src/nsNodeUtils.cpp", + "content/events/public/nsIEventListenerManager.h", + "content/events/public/nsIPrivateDOMEvent.h", + "content/events/src/Makefile.in", + "content/events/src/nsDOMEvent.cpp", + "content/events/src/nsDOMEvent.h", + "content/events/src/nsDOMNotifyAudioAvailableEvent.cpp", + "content/events/src/nsDOMNotifyAudioAvailableEvent.h", + "content/events/src/nsEventDispatcher.cpp", + "content/events/src/nsEventListenerManager.cpp", + "content/html/content/public/nsHTMLMediaElement.h", + "content/html/content/src/nsHTMLAudioElement.cpp", + "content/html/content/src/nsHTMLMediaElement.cpp", + "content/media/Makefile.in", + "content/media/nsAudioAvailableEventManager.cpp", + "content/media/nsAudioAvailableEventManager.h", + "content/media/nsAudioStream.cpp", + "content/media/nsAudioStream.h", + "content/media/nsBuiltinDecoder.cpp", + "content/media/nsBuiltinDecoder.h", + "content/media/nsBuiltinDecoderStateMachine.cpp", + "content/media/nsBuiltinDecoderStateMachine.h", + "content/media/nsMediaDecoder.cpp", + "content/media/nsMediaDecoder.h", + "content/media/test/Makefile.in", + "content/media/test/file_a4_tone.ogg", + "content/media/test/file_audio_event_adopt_iframe.html", + "content/media/test/test_a4_tone.html", + "content/media/test/test_audio_event_adopt.html", + "content/media/test/test_audiowrite.html", + "content/media/wave/nsWaveDecoder.cpp", + "dom/base/nsDOMClassInfo.cpp", + "dom/base/nsDOMClassInfoClasses.h", + "dom/base/nsGlobalWindow.cpp", + "dom/base/nsPIDOMWindow.h", + "dom/interfaces/events/Makefile.in", + "dom/interfaces/events/nsIDOMNotifyAudioAvailableEvent.idl", + "dom/interfaces/html/nsIDOMHTMLAudioElement.idl", + "dom/interfaces/html/nsIDOMHTMLMediaElement.idl", + "js/src/xpconnect/src/dom_quickstubs.qsconf", + "widget/public/nsGUIEvent.h", + "xpcom/glue/nsCycleCollectionParticipant.h" + ], + "components": [ + "Core::DOM: Core & HTML" + ], + "directories": [ + "xpcom/glue", + "js/src", + "widget", + "dom/interfaces", + "dom/base", + "dom", + "content/base", + "content", + "content/media", + "widget/public", + "xpcom", + "content/html", + "js", + "content/events" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "c78c4fda1325dd5169f15e80f42de19908b7d99e", + "author": "Mark Banner ", + "bug_id": 471643, + "desc": "Backed out changeset f600448ae7db / bug 471643 due to reftest failures", + "pushdate": "2010-08-19 08:29:47", + "backsout": [ + "f600448ae7db" + ], + "backedoutby": "", + "author_email": "bugzilla@standard8.plus.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 69721891.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/base/nsCSSRendering.cpp", + "layout/base/nsCSSRendering.h", + "layout/base/nsDisplayList.cpp", + "layout/reftests/border-radius/percent-1-ref.html", + "layout/reftests/border-radius/percent-1.html", + "layout/reftests/border-radius/percent-2-ref.html", + "layout/reftests/border-radius/percent-2.html", + "layout/reftests/border-radius/percent-3-ref.html", + "layout/reftests/border-radius/percent-3.html", + "layout/reftests/border-radius/reftest.list" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "layout/reftests", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "fae9fc14a22a9fd70f56544181e689b1af72f0f6", + "author": "Jonas Sicking ", + "bug_id": 588977, + "desc": "Backout 2d6ead22831c (bug 588977) due to orange. a=backout", + "pushdate": "2010-08-20 17:26:59", + "backsout": [ + "2d6ead22831c" + ], + "backedoutby": "", + "author_email": "jonas@sicking.cc", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 64435434.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "layout/base/nsPresContext.h" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "cbb5793c529eda0f1a01a82edad05684c6978fd5", + "author": "Justin Lebar ", + "bug_id": 576026, + "desc": "Backed out changeset 2d57f5901aa2 (bug 576026). a=bustage", + "pushdate": "2010-08-24 22:52:15", + "backsout": [ + "2d57f5901aa2" + ], + "backedoutby": "", + "author_email": "justin.lebar@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 19864604.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "testing/mochitest/Makefile.in", + "testing/mochitest/runtests.py", + "testing/mochitest/runtests.py.in" + ], + "components": [ + "Testing::Mochitest" + ], + "directories": [ + "testing/mochitest", + "testing" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "c3c185d6ee88ebb2b52bc8cb1fbefc737779f749", + "author": "Robert Sayre ", + "bug_id": 587257, + "desc": "Backed out changeset b404ad209cb9. (Bug 587257 - Make Array.prototype.join faster. r=lw)", + "pushdate": "2010-08-25 16:25:25", + "backsout": [ + "b404ad209cb9" + ], + "backedoutby": "", + "author_email": "sayrer@gmail.com", + "reviewers": [ + "lw" + ], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 69541692.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsarray.cpp", + "js/src/jsstr.cpp", + "js/src/jsstrinlines.h" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "c8e75a4433d9b62eddcfb841c53af5815ae95948", + "author": "Boris Zbarsky ", + "bug_id": 590422, + "desc": "Backed out changeset d578993db396 (bug 590422) due to possible performance regressions (especially WinXP Tscroll).", + "pushdate": "2010-08-27 18:09:29", + "backsout": [ + "d578993db396" + ], + "backedoutby": "", + "author_email": "bzbarsky@mit.edu", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 67377877.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "dom/base/nsGlobalWindow.cpp", + "xpcom/threads/TimerThread.cpp", + "xpcom/threads/TimerThread.h", + "xpcom/threads/nsTimerImpl.cpp" + ], + "components": [ + "Core::XPCOM" + ], + "directories": [ + "dom", + "xpcom/threads", + "xpcom", + "dom/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "0487454f42193aa15efea739c359ea67b1682b11", + "author": "Blair McBride ", + "bug_id": 581076, + "desc": "Backed out changeset 6fe388a0fb5e (Bug 581076) due to test failures. a=bustage", + "pushdate": "2010-08-30 05:36:19", + "backsout": [ + "6fe388a0fb5e" + ], + "backedoutby": "", + "author_email": "bmcbride@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 32276589.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/app/profile/firefox.js", + "toolkit/locales/en-US/chrome/mozapps/extensions/extensions.properties", + "toolkit/mozapps/extensions/content/extensions.css", + "toolkit/mozapps/extensions/content/extensions.js", + "toolkit/mozapps/extensions/content/extensions.xul", + "toolkit/mozapps/extensions/test/browser/Makefile.in", + "toolkit/mozapps/extensions/test/browser/browser_bug581076.js", + "toolkit/themes/gnomestripe/mozapps/extensions/extensions.css", + "toolkit/themes/pinstripe/mozapps/extensions/extensions.css", + "toolkit/themes/winstripe/mozapps/extensions/extensions.css" + ], + "components": [ + "Firefox::General" + ], + "directories": [ + "toolkit", + "toolkit/locales", + "browser/app", + "toolkit/mozapps", + "browser", + "toolkit/themes" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "9e09716ddaf73e57dbd0d1a50492b0404275f67e", + "author": "Josh Aas ", + "bug_id": 592951, + "desc": "Backed out changeset 52388a9a6337, bug 592951. a=me", + "pushdate": "2010-09-08 22:20:40", + "backsout": [ + "52388a9a6337" + ], + "backedoutby": "", + "author_email": "joshmoz@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 69444001.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "ipc/app/MozillaRuntimeMain.cpp", + "ipc/chromium/src/base/process_util.h", + "ipc/chromium/src/base/process_util_mac.mm", + "ipc/glue/GeckoChildProcessHost.cpp", + "toolkit/xre/nsEmbedFunctions.cpp" + ], + "components": [ + "Core::IPC", + "Core::DOM: Content Processes", + "Toolkit::Startup and Profile System" + ], + "directories": [ + "ipc/glue", + "toolkit", + "ipc", + "ipc/chromium", + "toolkit/xre", + "ipc/app" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "b5896c8b6d41913e2968a08c15579152a58af8ce", + "author": "Ehsan Akhgari ", + "bug_id": 588999, + "desc": "Backed out changeset 4bc623a55708 (bug 588999) because of orange on Windows 7", + "pushdate": "2010-09-09 23:26:17", + "backsout": [ + "4bc623a55708" + ], + "backedoutby": "", + "author_email": "ehsan@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 26791454.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/base/content/tabview/tabview.css", + "browser/base/content/tabview/tabview.html", + "browser/base/content/tabview/ui.js", + "browser/base/content/test/tabview/Makefile.in", + "browser/base/content/test/tabview/browser_tabview_exit_button.js", + "browser/themes/gnomestripe/browser/tabview/tabview.css", + "browser/themes/pinstripe/browser/tabview/tabview.css", + "browser/themes/winstripe/browser/tabview/tabview.css" + ], + "components": [], + "directories": [ + "browser/base", + "browser/themes", + "browser" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "d8674093f3558f6cfc862352dec321af9f8e4d7a", + "author": "Justin Lebar ", + "bug_id": 578880, + "desc": "Backed out changeset 100bcacdbf45 due to orange (bug 578880).", + "pushdate": "2010-09-10 20:50:33", + "backsout": [ + "100bcacdbf45" + ], + "backedoutby": "", + "author_email": "justin.lebar@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 21326102.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "config/autoconf.mk.in", + "configure.in", + "js/src/Makefile.in", + "js/src/config/autoconf.mk.in", + "js/src/configure.in", + "xpcom/io/Makefile.in" + ], + "components": [ + "Firefox Build System::General" + ], + "directories": [ + "js/src", + "xpcom/io", + "config", + "xpcom", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "84baf90b040c7d5912724461c6e9e1d104ce5a18", + "author": "Gavin Sharp ", + "bug_id": 589613, + "desc": "Backed out changeset 2a216165e361 (bug 589613), a=shutuphook", + "pushdate": "2010-09-11 17:49:52", + "backsout": [ + "2a216165e361" + ], + "backedoutby": "", + "author_email": "gavin@gavinsharp.com", + "reviewers": [ + "shutuphook" + ], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 27864872.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "docshell/base/nsDefaultURIFixup.cpp", + "netwerk/base/public/Makefile.in" + ], + "components": [], + "directories": [ + "netwerk/base", + "docshell/base", + "docshell", + "netwerk" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "afe3db59ae35d04547b3c07fdc46e8e77d8cd9d0", + "author": "Robert Sayre ", + "bug_id": 588016, + "desc": "Backed out changeset e2e1ea2a39ce. (Igor Bukanov \u2013 bug 588016 - Avoid reporting OOM when background has not finished. r=anygregor)", + "pushdate": "2010-09-11 19:16:24", + "backsout": [ + "e2e1ea2a39ce" + ], + "backedoutby": "", + "author_email": "sayrer@gmail.com", + "reviewers": [ + "anygregor" + ], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 71020751.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/Makefile.in", + "js/src/jsapi.cpp", + "js/src/jscntxt.cpp", + "js/src/jscntxt.h", + "js/src/jsgc.cpp", + "js/src/jsgc.h", + "js/src/jsobj.cpp", + "js/src/jsscope.cpp", + "js/src/jstask.cpp", + "js/src/jstask.h" + ], + "components": [ + "Firefox Build System::General", + "Core::JavaScript Engine" + ], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "59244235c85ba6eb0d296198ec5ea5ac7540a1c7", + "author": "L. David Baron ", + "bug_id": 508115, + "desc": "Backed out changeset a6ee83aa638e to fix orange (test_bug508115.xul timing out)", + "pushdate": "2010-09-14 03:45:55", + "backsout": [ + "a6ee83aa638e" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 73644476.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/xbl/test/file_bug591198_inner.html", + "content/xbl/test/file_bug591198_xbl.xml", + "content/xbl/test/test_bug591198.html" + ], + "components": [], + "directories": [ + "content", + "content/xbl" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "5ef1dd2885fbd311be1be1993e786f218660cbb5", + "author": "L. David Baron ", + "bug_id": 508115, + "desc": "Backed out changeset 2e55203d7b80 to fix orange (test_bug508115.xul timing out).", + "pushdate": "2010-09-14 03:45:55", + "backsout": [ + "2e55203d7b80" + ], + "backedoutby": "", + "author_email": "dbaron@dbaron.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 73644476.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/base/public/nsContentErrors.h", + "content/xbl/src/nsXBLService.cpp", + "content/xbl/test/Makefile.in", + "layout/base/nsCSSFrameConstructor.cpp" + ], + "components": [ + "Core::Layout" + ], + "directories": [ + "content/base", + "content", + "content/xbl", + "layout", + "layout/base" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "df5e678290228bd3f9eb047fbe4597c1bb34092a", + "author": "Peter Van der Beken ", + "bug_id": 590612, + "desc": "Backout c130135dcf02 (Fix for bug 590612 (Speed up js-wrapping in classinfo when we already have a wrapper)).", + "pushdate": "2010-09-15 05:28:28", + "backsout": [ + "c130135dcf02" + ], + "backedoutby": "", + "author_email": "peterv@propagandism.org", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 70464335.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/base/public/nsContentUtils.h", + "content/base/src/nsContentUtils.cpp", + "js/src/jstl.h", + "js/src/jsvector.h", + "js/src/xpconnect/src/qsgen.py", + "js/src/xpconnect/src/xpcprivate.h", + "js/src/xpconnect/src/xpcpublic.h", + "js/src/xpconnect/src/xpcwrappednative.cpp" + ], + "components": [], + "directories": [ + "js", + "content/base", + "content", + "js/src" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "77e11b95175faa0b37166d68311b62b8c398e13d", + "author": "Oleg Romashin ", + "bug_id": 582840, + "desc": "Backout changeset 7eb93fe05d3a. bug 582840 due to oranges", + "pushdate": "2010-09-15 22:02:59", + "backsout": [ + "7eb93fe05d3a" + ], + "backedoutby": "", + "author_email": "romaxa@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 65638790.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "content/base/public/nsIFrameLoader.idl", + "content/base/src/nsFrameLoader.cpp", + "content/base/test/chrome/Makefile.in", + "content/base/test/chrome/bug514705.html", + "content/base/test/chrome/bug514705_helper.xul", + "content/base/test/chrome/test_bug514705.xul", + "dom/ipc/PBrowser.ipdl", + "dom/ipc/TabChild.cpp", + "dom/ipc/TabChild.h", + "dom/ipc/TabParent.cpp", + "dom/ipc/TabParent.h", + "toolkit/content/widgets/browser.xml" + ], + "components": [ + "Core::DOM: Content Processes" + ], + "directories": [ + "toolkit/content", + "toolkit", + "dom", + "content/base", + "content", + "dom/ipc" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "8422935a2d917c8769c68fbff2a7443e286ae28e", + "author": "Jason Orendorff ", + "bug_id": 580033, + "desc": "Backed out changeset 84b4d4856e1e (bug 580033) due to orange.", + "pushdate": "2010-09-16 16:26:06", + "backsout": [ + "84b4d4856e1e" + ], + "backedoutby": "", + "author_email": "jorendorff@mozilla.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 72558895.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jscntxt.h" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "58e7b99bb1d09011736b55ed85f9bb75af839b5b", + "author": "Josh Aas ", + "bug_id": 596762, + "desc": "Backed out changeset 080a38bd09c5, bug 596762, a=bustage", + "pushdate": "2010-09-16 22:41:26", + "backsout": [ + "080a38bd09c5" + ], + "backedoutby": "", + "author_email": "joshmoz@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 70136447.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/app/profile/firefox.js", + "modules/plugin/base/src/nsNPAPIPlugin.cpp" + ], + "components": [ + "Firefox::General" + ], + "directories": [ + "modules", + "modules/plugin", + "browser", + "browser/app" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "84a05bdabec5be7bacde12cccc92db17f4d54c5a", + "author": "Josh Aas ", + "bug_id": 596762, + "desc": "Backed out changeset c06ef0414fee, bug 596762. a=me", + "pushdate": "2010-09-21 02:13:50", + "backsout": [ + "c06ef0414fee" + ], + "backedoutby": "", + "author_email": "joshmoz@gmail.com", + "reviewers": [], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 70494791.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "browser/app/profile/firefox.js", + "layout/tools/reftest/reftest.js", + "modules/plugin/base/src/nsNPAPIPlugin.cpp", + "modules/plugin/test/mochitest/test_GCrace.html", + "modules/plugin/test/mochitest/test_crash_nested_loop.html", + "modules/plugin/test/mochitest/test_crash_notify.xul", + "modules/plugin/test/mochitest/test_crash_notify_no_report.xul", + "modules/plugin/test/mochitest/test_crash_submit.xul", + "modules/plugin/test/mochitest/test_crashing.html", + "modules/plugin/test/mochitest/test_crashing2.html", + "modules/plugin/test/mochitest/test_hanging.html", + "modules/plugin/test/reftest/reftest.list", + "testing/mochitest/tests/SimpleTest/SimpleTest.js", + "testing/testsuite-targets.mk" + ], + "components": [ + "Testing::Mochitest", + "Firefox::General", + "Testing::General" + ], + "directories": [ + "layout/tools", + "browser/app", + "modules/plugin", + "testing/mochitest", + "browser", + "testing", + "layout", + "modules" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + }, + { + "node": "f552a61aa4234eca5819bb3bfd6490501a13c330", + "author": "Robert Sayre ", + "bug_id": 597945, + "desc": "Back out changeset d7d3c0af2877. Brendan Eich \u2013 Fix slot leak that leads to allocSlot assert botch (597945, r=jorendorff).", + "pushdate": "2010-09-21 05:12:47", + "backsout": [ + "d7d3c0af2877" + ], + "backedoutby": "", + "author_email": "sayrer@gmail.com", + "reviewers": [ + "jorendorff" + ], + "ignored": false, + "source_code_added": 0, + "other_added": 0, + "test_added": 0, + "source_code_deleted": 0, + "other_deleted": 0, + "test_deleted": 0, + "types": [], + "functions": {}, + "seniority_author": 71834134.0, + "total_source_code_file_size": 0, + "average_source_code_file_size": 0.0, + "maximum_source_code_file_size": 0, + "minimum_source_code_file_size": 0, + "source_code_files_modified_num": 0, + "total_other_file_size": 0, + "average_other_file_size": 0.0, + "maximum_other_file_size": 0, + "minimum_other_file_size": 0, + "other_files_modified_num": 0, + "total_test_file_size": 0, + "average_test_file_size": 0.0, + "maximum_test_file_size": 0, + "minimum_test_file_size": 0, + "test_files_modified_num": 0, + "metrics": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0, + "cyclomatic_avg": 0.0, + "cyclomatic_max": 0, + "cyclomatic_min": 9223372036854775807, + "halstead_N1_avg": 0.0, + "halstead_N1_max": 0, + "halstead_N1_min": 9223372036854775807, + "halstead_n1_avg": 0.0, + "halstead_n1_max": 0, + "halstead_n1_min": 9223372036854775807, + "halstead_N2_avg": 0.0, + "halstead_N2_max": 0, + "halstead_N2_min": 9223372036854775807, + "halstead_n2_avg": 0.0, + "halstead_n2_max": 0, + "halstead_n2_min": 9223372036854775807, + "halstead_length_avg": 0.0, + "halstead_length_max": 0, + "halstead_length_min": 9223372036854775807, + "halstead_estimated_program_length_avg": 0.0, + "halstead_estimated_program_length_max": 0, + "halstead_estimated_program_length_min": 9223372036854775807, + "halstead_purity_ratio_avg": 0.0, + "halstead_purity_ratio_max": 0, + "halstead_purity_ratio_min": 9223372036854775807, + "halstead_vocabulary_avg": 0.0, + "halstead_vocabulary_max": 0, + "halstead_vocabulary_min": 9223372036854775807, + "halstead_volume_avg": 0.0, + "halstead_volume_max": 0, + "halstead_volume_min": 9223372036854775807, + "halstead_difficulty_avg": 0.0, + "halstead_difficulty_max": 0, + "halstead_difficulty_min": 9223372036854775807, + "halstead_level_avg": 0.0, + "halstead_level_max": 0, + "halstead_level_min": 9223372036854775807, + "halstead_effort_avg": 0.0, + "halstead_effort_max": 0, + "halstead_effort_min": 9223372036854775807, + "halstead_time_avg": 0.0, + "halstead_time_max": 0, + "halstead_time_min": 9223372036854775807, + "halstead_bugs_avg": 0.0, + "halstead_bugs_max": 0, + "halstead_bugs_min": 9223372036854775807, + "functions_avg": 0.0, + "functions_max": 0, + "functions_min": 9223372036854775807, + "closures_avg": 0.0, + "closures_max": 0, + "closures_min": 9223372036854775807, + "sloc_avg": 0.0, + "sloc_max": 0, + "sloc_min": 9223372036854775807, + "ploc_avg": 0.0, + "ploc_max": 0, + "ploc_min": 9223372036854775807, + "lloc_avg": 0.0, + "lloc_max": 0, + "lloc_min": 9223372036854775807, + "cloc_avg": 0.0, + "cloc_max": 0, + "cloc_min": 9223372036854775807, + "blank_avg": 0.0, + "blank_max": 0, + "blank_min": 9223372036854775807, + "nargs_avg": 0.0, + "nargs_max": 0, + "nargs_min": 9223372036854775807, + "nexits_avg": 0.0, + "nexits_max": 0, + "nexits_min": 9223372036854775807, + "cognitive_avg": 0.0, + "cognitive_max": 0, + "cognitive_min": 9223372036854775807, + "mi_original_avg": 0.0, + "mi_original_max": 0, + "mi_original_min": 9223372036854775807, + "mi_sei_avg": 0.0, + "mi_sei_max": 0, + "mi_sei_min": 9223372036854775807, + "mi_visual_studio_avg": 0.0, + "mi_visual_studio_max": 0, + "mi_visual_studio_min": 9223372036854775807 + }, + "metrics_diff": { + "cyclomatic_total": 0, + "halstead_N1_total": 0, + "halstead_n1_total": 0, + "halstead_N2_total": 0, + "halstead_n2_total": 0, + "halstead_length_total": 0, + "halstead_estimated_program_length_total": 0, + "halstead_purity_ratio_total": 0, + "halstead_vocabulary_total": 0, + "halstead_volume_total": 0, + "halstead_difficulty_total": 0, + "halstead_level_total": 0, + "halstead_effort_total": 0, + "halstead_time_total": 0, + "halstead_bugs_total": 0, + "functions_total": 0, + "closures_total": 0, + "sloc_total": 0, + "ploc_total": 0, + "lloc_total": 0, + "cloc_total": 0, + "blank_total": 0, + "nargs_total": 0, + "nexits_total": 0, + "cognitive_total": 0, + "mi_original_total": 0, + "mi_sei_total": 0, + "mi_visual_studio_total": 0 + }, + "files": [ + "js/src/jsscope.cpp", + "js/src/tests/js1_8_5/regress/jstests.list", + "js/src/tests/js1_8_5/regress/regress-597945-1.js", + "js/src/tests/js1_8_5/regress/regress-597945-2.js" + ], + "components": [], + "directories": [ + "js/src", + "js" + ], + "cov_added": null, + "cov_covered": null, + "cov_unknown": null + } +] \ No newline at end of file diff --git a/scripts/backout_data_collection.py b/scripts/backout_data_collection.py index 51e416a94d..a4976a81d1 100644 --- a/scripts/backout_data_collection.py +++ b/scripts/backout_data_collection.py @@ -49,15 +49,17 @@ def is_bug_fixed(bug_id: int) -> bool: bool: True if the bug is RESOLVED, False otherwise """ + # get bug details bug_details = bugzilla.get([bug_id]) bug = bug_details.get(bug_id, {}) + # if the bug is fixed, we return True if bug.get("resolution") == 'FIXED': return True return False -def filter_commits(count_limit: int) -> None: +def filter_commits(directory_path: str, destination_filepath: str, count_limit: int) -> None: """ Filters the commits based on: 1. if it is backing out another commit @@ -65,17 +67,24 @@ def filter_commits(count_limit: int) -> None: Saves to a .json file in ../data/raw_backout_data.json Args: + directory_path (str): the directory where the dataset will be saved + destination_filepath (str): where the raw filtered dataset will be saved count_limit (int): limit of commits that are added to the json Returns: None """ + filtered_list = [] counter = 0 pbar = tqdm(total=count_limit, desc="Filtering commits") + + # iterate over all commits for commit in repository.get_commits(include_no_bug=False, include_backouts=True, include_ignored=False): + + # if the commit is backing out other commits and the bug is fixed if len(commit["backsout"]) > 0 and is_bug_fixed(commit["bug_id"]): filtered_list.append(commit) counter += 1 @@ -84,18 +93,18 @@ def filter_commits(count_limit: int) -> None: if counter >= count_limit: break + # convert to json json_data = json.dumps(filtered_list, indent=4) - directory_path = 'data' - file_path = f'{directory_path}/raw_backout_data.json' + # write to a file if not os.path.exists(directory_path): os.makedirs(directory_path) print(f"Directory {directory_path} created") - with open(file_path, 'w') as file: + with open(destination_filepath, 'w') as file: file.write(json_data) - logger.info(f"Data successfully saved to {file_path}") + logger.info(f"Data successfully saved to {destination_filepath}") def preprocess_commits(): """ @@ -109,6 +118,7 @@ def preprocess_commits(): commit_dict (dict): dictionary of commit hashes """ + commit_dict = {} for commit in repository.get_commits(include_no_bug=False, include_backouts=True, include_ignored=False): shortened_hash = commit['node'][:12] @@ -140,6 +150,7 @@ def find_full_hash(source_filepath: str, destination_filepath: str, commit_dict: Returns: None """ + with open(source_filepath, 'r') as file: data = json.load(file) @@ -147,9 +158,11 @@ def find_full_hash(source_filepath: str, destination_filepath: str, commit_dict: for index, backout_commit in enumerate(commit['backsout']): full_hash = get_full_hash(backout_commit, commit_dict) + # replace shortened hash with full hash if full_hash: commit['backsout'][index] = full_hash + # save to a new file with open(destination_filepath, 'w') as file: json.dump(data, file, indent=4) logger.info(f"Updated data has been saved to {destination_filepath}") @@ -172,6 +185,7 @@ def clean_dataset(source_filepath: str, destination_filepath: str): filtered_data = [] + # fields to keep, rest will be discarded fields_to_keep = ['node', 'bug_id', 'desc', 'pushdate', 'backsout'] for commit in data: @@ -191,9 +205,15 @@ def clean_dataset(source_filepath: str, destination_filepath: str): download_bugs() # filter commits based on backout and are fixed bugs, save to .json - filter_commits(count_limit=100) + filter_commits(directory_path="dataset", destination_filepath="dataset/raw_backout_data.json", count_limit=500) + + # create dictionary mapping shortened hashes to their full hashes commit_dict = preprocess_commits() - find_full_hash(source_filepath="data/raw_backout_data.json", destination_filepath="data/processed_backout_data.json", commit_dict=commit_dict) - clean_dataset(source_filepath="data/processed_backout_data.json", destination_filepath="data/cleaned_backout_data.json") + + # find and replace shortened hashes with full hashes + find_full_hash(source_filepath="dataset/raw_backout_data.json", destination_filepath="dataset/processed_backout_data.json", commit_dict=commit_dict) + + # remove unnecessary fields + clean_dataset(source_filepath="dataset/processed_backout_data.json", destination_filepath="dataset/cleaned_backout_data.json") From c0964688c8d09cfcfdef159eae3b722fdc5a3cb1 Mon Sep 17 00:00:00 2001 From: Benjamin Mah Date: Fri, 3 May 2024 14:30:18 -0400 Subject: [PATCH 03/38] Cleaned up code, restructured dataset to include the inducing, backout, and fixing commit --- scripts/backout_data_collection.py | 279 ++++++++++++----------------- 1 file changed, 113 insertions(+), 166 deletions(-) diff --git a/scripts/backout_data_collection.py b/scripts/backout_data_collection.py index a4976a81d1..c03cca815e 100644 --- a/scripts/backout_data_collection.py +++ b/scripts/backout_data_collection.py @@ -1,219 +1,166 @@ -import sys -import logging import json +import logging import os +import sys + from tqdm import tqdm -sys.path.append('../bugbug') -from bugbug import repository, db, bugzilla +sys.path.append("../bugbug") +from bugbug import bugzilla, db, repository logging.basicConfig(level=logging.INFO) logger = logging.getLogger(__name__) -def download_commits() -> None: - """ - Download the database of all commits. - - Args: - None - Returns: - None - """ +def download_databases() -> None: + logger.info("Downloading bugs database...") + assert db.download(bugzilla.BUGS_DB) logger.info("Downloading commits database...") assert db.download(repository.COMMITS_DB, support_files_too=True) -def download_bugs() -> None: - """ - Download the database of all bugs. - Args: - None +def preprocess_commits_and_bugs(): + logger.info("Preprocessing commits") + commit_dict = {} + bug_to_commit_dict = {} - Returns: - None - """ + # store commits with their hashes and bug IDs as keys + for commit in tqdm( + repository.get_commits( + include_no_bug=True, include_backouts=True, include_ignored=True + ), + desc="Processing commits", + ): + commit_dict[commit["node"]] = commit - logger.info("Downloading bugs database...") - assert db.download(bugzilla.BUGS_DB) + if commit["bug_id"] not in bug_to_commit_dict: + bug_to_commit_dict[commit["bug_id"]] = [commit] + else: + bug_to_commit_dict[commit["bug_id"]].append(commit) -def is_bug_fixed(bug_id: int) -> bool: - """ - Check if a bug (given its ID) is resolved. + logger.info("Preprocessing bugs") + bug_dict = {} - Args: - bug_id (int): the ID of the bug from Bugzilla + num_lines = sum(1 for line in open(bugzilla.BUGS_DB, "r")) - Returns: - bool: True if the bug is RESOLVED, False otherwise - """ + # store bugs with their bug IDs as keys + with open(bugzilla.BUGS_DB, "r") as f: + for line in tqdm(f, total=num_lines, desc="Processing bugs"): + bug = json.loads(line) + bug_dict[bug.get("id")] = bug - # get bug details - bug_details = bugzilla.get([bug_id]) - bug = bug_details.get(bug_id, {}) + return commit_dict, bug_to_commit_dict, bug_dict - # if the bug is fixed, we return True - if bug.get("resolution") == 'FIXED': - return True + +def is_bug_fixed(bug_id: int, bug_dict: dict) -> bool: + bug = bug_dict.get(bug_id) + + if bug: + return bug.get("resolution") == "FIXED" return False -def filter_commits(directory_path: str, destination_filepath: str, count_limit: int) -> None: - """ - Filters the commits based on: - 1. if it is backing out another commit - 2. if the bug is RESOLVED - Saves to a .json file in ../data/raw_backout_data.json - - Args: - directory_path (str): the directory where the dataset will be saved - destination_filepath (str): where the raw filtered dataset will be saved - count_limit (int): limit of commits that are added to the json - - Returns: - None - - """ +def filter_commits( + directory_path: str, + destination_filepath: str, + count_limit: int, + bug_dict: dict, + commit_dict: dict, + bug_to_commit_dict: dict, +) -> None: filtered_list = [] counter = 0 pbar = tqdm(total=count_limit, desc="Filtering commits") - - # iterate over all commits - for commit in repository.get_commits(include_no_bug=False, include_backouts=True, include_ignored=False): - - # if the commit is backing out other commits and the bug is fixed - if len(commit["backsout"]) > 0 and is_bug_fixed(commit["bug_id"]): - filtered_list.append(commit) + + for commit in repository.get_commits( + include_no_bug=False, include_backouts=True, include_ignored=False + ): + # add commit if it was backed out and the bug is fixed + if len(commit["backedoutby"]) > 0 and is_bug_fixed( + bug_id=commit["bug_id"], bug_dict=bug_dict + ): + fixing_commit = find_next_commit( + commit["bug_id"], bug_to_commit_dict, commit["node"] + ) + + # if fixing commit could not be found, do not add it to dataset + if fixing_commit["node"] == commit["backedoutby"]: + counter += 1 + continue + + # add the hashes of the bug-inducing commit, the back out commit, and the fixing commit + # include metadata such as push date and description for further context + list_entry = { + "bug_id": commit["bug_id"], + "inducing_commit": { + "node": commit["node"], + "pushdate": commit["pushdate"], + "desc": commit["desc"], + }, + "backout_commit": { + "node": commit["backedoutby"], + "pushdate": commit_dict[commit["backedoutby"]]["pushdate"], + "desc": commit_dict[commit["backedoutby"]]["desc"], + }, + "fixing_commit": { + "node": fixing_commit["node"], + "pushdate": fixing_commit["pushdate"], + "desc": fixing_commit["desc"], + }, + } + + filtered_list.append(list_entry) counter += 1 pbar.update(1) if counter >= count_limit: break - # convert to json json_data = json.dumps(filtered_list, indent=4) - # write to a file if not os.path.exists(directory_path): os.makedirs(directory_path) print(f"Directory {directory_path} created") - with open(destination_filepath, 'w') as file: + with open(destination_filepath, "w") as file: file.write(json_data) logger.info(f"Data successfully saved to {destination_filepath}") -def preprocess_commits(): - """ - Preprocess all commit hashes to create a dictionary mapping the first - 12 characters to the entire hash. + return - Args: - None - - Returns: - commit_dict (dict): dictionary of commit hashes - - """ - commit_dict = {} - for commit in repository.get_commits(include_no_bug=False, include_backouts=True, include_ignored=False): - shortened_hash = commit['node'][:12] - commit_dict[shortened_hash] = commit['node'] - return commit_dict - - -def get_full_hash(shortened_hash: str, commit_dict) -> str: - """ - Given a shortened hash of 12 characters, search in the commit_dict for the full hash and return it. - - Args: - shortened_hash (str): 12 character long shortened hash of a commit - commit_dict (dict): Dictionary of shortened hashes to full hashes - Returns: - str: full 40 character long hash of commit, or None if not found - """ - - return commit_dict.get(shortened_hash) - -def find_full_hash(source_filepath: str, destination_filepath: str, commit_dict: dict) -> None: - """ - Convert the first 12 characters of the hash in backsout (list) to the full 40 character long hash using commit_dict. - - Args: - source_filepath (str): filepath to .json file containing raw backout data - destination_filepath (str): where to save the new .json file containing the full hashesh - commit_dict (dict): dictionary mapping shortened hashes to full hashes - Returns: - None - """ - - with open(source_filepath, 'r') as file: - data = json.load(file) - - for commit in data: - for index, backout_commit in enumerate(commit['backsout']): - full_hash = get_full_hash(backout_commit, commit_dict) - - # replace shortened hash with full hash - if full_hash: - commit['backsout'][index] = full_hash - - # save to a new file - with open(destination_filepath, 'w') as file: - json.dump(data, file, indent=4) - logger.info(f"Updated data has been saved to {destination_filepath}") - return data - -def clean_dataset(source_filepath: str, destination_filepath: str): - """ - Given a source filepath to a .json file containing the full hashes, remove - unnecessary fields and save to destination_filepath. - - Args: - source_filepath (str): filepath to .json file containing full hash data - destination_filepath (str): where to save new .json file containing cleaned data - Returns: - None - """ - - with open(source_filepath, 'r') as file: - data = json.load(file) - - filtered_data = [] - - # fields to keep, rest will be discarded - fields_to_keep = ['node', 'bug_id', 'desc', 'pushdate', 'backsout'] - - for commit in data: - filtered_commit = {key: commit[key] for key in fields_to_keep if key in commit} - filtered_data.append(filtered_commit) - - with open(destination_filepath, 'w') as file: - json.dump(filtered_data, file, indent=4) - - logger.info(f"Filtered data has been saved to {destination_filepath}") +def find_next_commit(bug_id: int, bug_to_commit_dict: dict, inducing_node: str) -> dict: + inducing_commit_found = False + for commit in bug_to_commit_dict[bug_id]: + # if the inducing commit has been found, find next commit that has not been backed out + if inducing_commit_found: + if len(commit["backedoutby"]) == 0: + return commit - return + if commit["node"] == inducing_node: + inducing_commit_found = True + + return commit -if __name__ == "__main__": - # download commits and bugs - download_commits() - download_bugs() - # filter commits based on backout and are fixed bugs, save to .json - filter_commits(directory_path="dataset", destination_filepath="dataset/raw_backout_data.json", count_limit=500) - - # create dictionary mapping shortened hashes to their full hashes - commit_dict = preprocess_commits() +def main(): + download_databases() - # find and replace shortened hashes with full hashes - find_full_hash(source_filepath="dataset/raw_backout_data.json", destination_filepath="dataset/processed_backout_data.json", commit_dict=commit_dict) - - # remove unnecessary fields - clean_dataset(source_filepath="dataset/processed_backout_data.json", destination_filepath="dataset/cleaned_backout_data.json") + commit_dict, bug_to_commit_dict, bug_dict = preprocess_commits_and_bugs() + filter_commits( + directory_path="dataset", + destination_filepath="dataset/backout_dataset.json", + count_limit=500, + bug_dict=bug_dict, + commit_dict=commit_dict, + bug_to_commit_dict=bug_to_commit_dict, + ) + +if __name__ == "__main__": + main() From 24046fdf6879a597a07015c81203a5c176c1ce4f Mon Sep 17 00:00:00 2001 From: Benjamin Mah Date: Fri, 3 May 2024 14:31:01 -0400 Subject: [PATCH 04/38] Sample dataset (count_limit = 500) --- dataset/backout_dataset.json | 3548 ++++++++++++++++++++++++++++++++++ 1 file changed, 3548 insertions(+) create mode 100644 dataset/backout_dataset.json diff --git a/dataset/backout_dataset.json b/dataset/backout_dataset.json new file mode 100644 index 0000000000..4d5ba7194c --- /dev/null +++ b/dataset/backout_dataset.json @@ -0,0 +1,3548 @@ +[ + { + "bug_id": 113934, + "inducing_commit": { + "node": "eb6fda3be5bb2bb7472207486f652ba8b5b8164b", + "pushdate": "2008-08-07 23:18:31", + "desc": "Bug 113934. Backend and some minimal front end for dragging tabs between windows. r=gavin, r+sr=jst" + }, + "backout_commit": { + "node": "a2dc95fcd0709d0b8f9942f3912a2197a5616323", + "pushdate": "2008-08-10 16:17:14", + "desc": "Backed out changeset eb6fda3be5bb" + }, + "fixing_commit": { + "node": "48191fdcf8a72d9c256dda6f26a9d7673caa3cb9", + "pushdate": "2008-08-11 08:39:31", + "desc": "Bug 113934. Backend and some minimal front end for dragging tabs between windows. r=gavin, r+sr=jst" + } + }, + { + "bug_id": 430061, + "inducing_commit": { + "node": "aaecc637558e29e625a6941328b12db5cc493e2c", + "pushdate": "2008-09-04 15:31:26", + "desc": "Bug 430061. Make imglib no longer use necko's memory cache, r/sr=stuart" + }, + "backout_commit": { + "node": "6cf712fd2a059c17686e45f33abe13ac41fd0bcb", + "pushdate": "2008-09-04 16:37:26", + "desc": "Backed out changeset aaecc637558e" + }, + "fixing_commit": { + "node": "44853b2a5fc227fe6cbac4e89ab5d44db14ee81e", + "pushdate": "2008-09-05 04:32:44", + "desc": "Bug 430061: Don't use necko's memory cache in imglib; r/sr=stuart,vlad,bz\n\n? .fast-update\n? _profile\n? _tests\n? obj-ff-debug\n? staticlib\n? README/.fast-update\n? browser/app/profile/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}/install.rdf\n? build/pgo/automation.py\n? build/pgo/profileserver.py\n? config/buildid\n? config/system_wrappers\n? content/base/test/TestNativeXMLHttpRequest\n? content/base/test/TestPlainTextSerializer\n? embedding/components/printingui/src/mac/printpde/build\n? gfx/thebes/public/.gfxContext.h.swp\n? gfx/thebes/test/gfxFontSelectionTest\n? gfx/thebes/test/gfxSurfaceRefCountTest\n? gfx/thebes/test/gfxTextRunPerfTest\n? gfx/thebes/test/gfxWordCacheTest\n? intl/uconv/tests/TestUConv\n? intl/uconv/tests/nsconv\n? intl/uconv/tests/plattest\n? intl/unicharutil/tests/NormalizationTest\n? js/src/host_jskwgen\n? js/src/jsautokw.h\n? layout/style/test/css_properties.js\n? layout/style/test/host_ListCSSProperties\n? layout/tools/reftest/autoconf.js\n? modules/libpr0n/src/.imgContainer.cpp.swp\n? modules/libpr0n/src/.imgLoader.cpp.swp\n? modules/libpr0n/src/.imgLoader.h.swp\n? modules/libpr0n/src/.imgRequestProxy.cpp.swp\n? modules/libpr0n/src/check-all-at-removal-time\n? modules/libpr0n/src/currpatch\n? modules/libpr0n/src/update-every-time\n? modules/plugin/samples/default/mac/build\n? netwerk/cache/src/.nsMemoryCacheDevice.cpp.swp\n? netwerk/dns/src/etld_data.inc\n? netwerk/test/ReadNTLM\n? netwerk/test/TestCookie\n? netwerk/test/TestIncrementalDownload\n? netwerk/test/TestOpen\n? netwerk/test/TestServ\n? netwerk/test/TestStreamLoader\n? netwerk/test/TestUDPSocketProvider\n? nsprpub/.fast-update\n? nsprpub/unallmakefiles\n? parser/htmlparser/robot/test/htmlrobot\n? parser/htmlparser/tests/grabpage/grabpage\n? parser/htmlparser/tests/html/TestParser\n? rdf/tests/triplescat/triplescat\n? storage/test/teststorage1\n? testing/mochitest/automation.py\n? testing/mochitest/automation.pyc\n? testing/mochitest/runtests.pl\n? testing/mochitest/runtests.py\n? testing/mochitest/ssltunnel/ssltunnel\n? toolkit/components/url-classifier/tests/TestUrlClassifierUtils\n? toolkit/crashreporter/client/crashreporter\n? toolkit/crashreporter/google-breakpad/src/tools/mac/dump_syms/dump_syms\n? toolkit/crashreporter/test/TestCrashReporterAPI\n? toolkit/library/XUL\n? toolkit/mozapps/update/src/nsUpdateService.js\n? toolkit/xre/platform.ini\n? tools/rb\n? tools/trace-malloc\n? widget/src/cocoa/libwidget.rsrc\n? xpcom/io/.nsStringStream.cpp.swp\n? xpcom/proxy/tests/proxy-create-threadsafety\n? xpcom/sample/program/nsTestSample\n? xpcom/tests/TestAutoPtr\n? xpcom/tests/TestExpirationTracker\n? xpcom/tests/TestHashtables\n? xpcom/tests/TestINIParser\n? xpcom/tests/TestPipe\n? xpcom/tests/TestProxies\n? xpcom/tests/TestRegistrationOrder\n? xpcom/tests/TestStorageStream\n? xpcom/tests/TestStringAPI\n? xpcom/tests/TestStrings\n? xpcom/tests/TestTArray\n? xpcom/tests/TestTextFormatter\n? xpcom/tests/TestThreadPool\n? xpcom/tests/TestVersionComparator\n? xpcom/tests/external/TestMinStringAPI\n? xpfe/bootstrap/appleevents/mozillaSuite.rsrc\nIndex: modules/libpr0n/build/nsImageModule.cpp\n===================================================================\nRCS file: /cvsroot/mozilla/modules/libpr0n/build/nsImageModule.cpp,v\nretrieving revision 1.20" + } + }, + { + "bug_id": 418538, + "inducing_commit": { + "node": "e7c6d7843e81e5151a2f8dc700eeb3d1a31bc95f", + "pushdate": "2008-09-11 02:36:51", + "desc": "Turning color management on by default - bug 418538. r=vlad\n\nAlso updating some reftests whose behavior changes with color management\nenabled - bug 453548. r=dolske" + }, + "backout_commit": { + "node": "00cb86eed32e92d934b20413b59d957a7e6a681b", + "pushdate": "2008-09-11 05:27:56", + "desc": "Backed out changeset e7c6d7843e81 due to linux reftest failures" + }, + "fixing_commit": { + "node": "b0aaf69e714ed57b5519e450480d0261e7ec6e1a", + "pushdate": "2008-09-12 01:48:55", + "desc": "Turning color management on by default for tagged images - bug 418538. r=vlad\n\nAlso updating some reftests whose behavior changes with color management\nenabled - bug 453548. r=dolske" + } + }, + { + "bug_id": 392870, + "inducing_commit": { + "node": "09a4e390e1ec3fc95e798fbeabba6f535a4c0888", + "pushdate": "2008-09-17 15:04:40", + "desc": "Bug 392870 - Easy discoverability of Tabbed Browsing for new users. r=gavin" + }, + "backout_commit": { + "node": "0b822f82a224f57633a42ded065f1ce36afef785", + "pushdate": "2008-09-17 15:07:08", + "desc": "Backed out changeset 09a4e390e1ec" + }, + "fixing_commit": { + "node": "26311b805c7ae137a8fc0728a0871aa2f4fadf4e", + "pushdate": "2008-09-17 15:07:40", + "desc": "Bug 392870 - Easy discoverability of Tabbed Browsing for new users. r=connor" + } + }, + { + "bug_id": 450452, + "inducing_commit": { + "node": "5986b4269d9dd1e68119cbf4a11d0d524c07b2b6", + "pushdate": "2008-09-25 02:48:15", + "desc": "Bug 450452 - \"Implement XHR ('minus X') for worker threads\". r+sr=jst." + }, + "backout_commit": { + "node": "7186e4c194ad0b20ed6bf14918d1aee9ef11c81e", + "pushdate": "2008-09-25 04:08:54", + "desc": "Backed out changeset 5986b4269d9d" + }, + "fixing_commit": { + "node": "85a89d00d9b3a1aeb6e81a58cce2dd3868fdf1cd", + "pushdate": "2008-09-30 23:57:07", + "desc": "Bug 450452 - 'Implement XHR (minus X) for worker threads. r+sr=jst'" + } + }, + { + "bug_id": 449159, + "inducing_commit": { + "node": "c7c42974317d4e0d0ed16d616e44cfc335824328", + "pushdate": "2008-09-25 04:25:50", + "desc": "Bug 449159 - Implement seeking in the Ogg backend - r+sr=roc" + }, + "backout_commit": { + "node": "24a7034e18801326ce0b85f97d8880654780db81", + "pushdate": "2008-09-25 07:37:53", + "desc": "Backed out changeset c7c42974317d" + }, + "fixing_commit": { + "node": "0051e26b159eb5ec314aab9092552a5d0e7e597f", + "pushdate": "2008-10-19 07:35:16", + "desc": "Bug 449159 - changes to liboggz required for seeking support" + } + }, + { + "bug_id": 449159, + "inducing_commit": { + "node": "62295a6ef00a0282efd16c7a6e15c498125b5fe7", + "pushdate": "2008-09-25 04:27:06", + "desc": "Bug 449159 - Part 2 of Ogg backend seeking implementation - s+sr=roc" + }, + "backout_commit": { + "node": "d61ed13cee76c319de58cc83b99a64ab9d2e9810", + "pushdate": "2008-09-25 07:37:53", + "desc": "Backed out changeset 62295a6ef00a" + }, + "fixing_commit": { + "node": "0051e26b159eb5ec314aab9092552a5d0e7e597f", + "pushdate": "2008-10-19 07:35:16", + "desc": "Bug 449159 - changes to liboggz required for seeking support" + } + }, + { + "bug_id": 449159, + "inducing_commit": { + "node": "efce2424d5b27d5800e9bc377eff4184420f41b9", + "pushdate": "2008-09-25 04:31:04", + "desc": "Bug 449159 - Tests for Ogg seeking - s+sr=roc" + }, + "backout_commit": { + "node": "41c1ed8021a65d69b622b84c5d24886f7e19a207", + "pushdate": "2008-09-25 07:37:53", + "desc": "Backed out changeset efce2424d5b2" + }, + "fixing_commit": { + "node": "0051e26b159eb5ec314aab9092552a5d0e7e597f", + "pushdate": "2008-10-19 07:35:16", + "desc": "Bug 449159 - changes to liboggz required for seeking support" + } + }, + { + "bug_id": 449159, + "inducing_commit": { + "node": "7d6f38ee5c9f9bb19ee13d966d7597c0b30f9fd2", + "pushdate": "2008-09-25 04:40:11", + "desc": "Bug 449159 - Fix build bustage due to nsIFrame::Invalidate signature change" + }, + "backout_commit": { + "node": "d3e23758232e52353563362a7f11a53c0793e434", + "pushdate": "2008-09-25 07:37:53", + "desc": "Backed out changeset 7d6f38ee5c9f" + }, + "fixing_commit": { + "node": "0051e26b159eb5ec314aab9092552a5d0e7e597f", + "pushdate": "2008-10-19 07:35:16", + "desc": "Bug 449159 - changes to liboggz required for seeking support" + } + }, + { + "bug_id": 465460, + "inducing_commit": { + "node": "f682453c06d06ac83b76a0f58fb868f76da37201", + "pushdate": "2008-12-26 01:26:36", + "desc": "Bug 465460 - TM: valueOf ignored on third iteration of loop (r=gal)." + }, + "backout_commit": { + "node": "5a26ec73cf0d3c0c8862a83e3be7f2c6ff3161f7", + "pushdate": "2008-12-26 01:26:36", + "desc": "Backed out changeset f682453c06d0. Failing scriptaculous unit tests, doesn't build on windows or mac ppc." + }, + "fixing_commit": { + "node": "ac84a530de97f38f53e6dd4a77c0eb58588ed7e6", + "pushdate": "2008-12-26 01:26:36", + "desc": "Bug 465460 - TM: valueOf ignored on third iteration of loop (r=gal)." + } + }, + { + "bug_id": 466080, + "inducing_commit": { + "node": "03bc3379822a8bf8811181582cefaa519cb0b1c3", + "pushdate": "2009-01-14 07:16:08", + "desc": "Bug 466080 - Make more things honor the LOAD_ANONYMOUS flag r=sicking,MisterSSL, sr=sicking" + }, + "backout_commit": { + "node": "4a49658eedc297676c28692a7370490d14efc590", + "pushdate": "2009-01-14 09:02:40", + "desc": "Backed out changeset 03bc3379822a" + }, + "fixing_commit": { + "node": "b8f7a4e057f84b6e9d09e911b94ce8d247866b57", + "pushdate": "2009-02-17 22:06:13", + "desc": "Bug 466080 - Make more things honor the LOAD_ANONYMOUS flag r=sicking,MisterSSL, sr=sicking" + } + }, + { + "bug_id": 477657, + "inducing_commit": { + "node": "6fa6667b903f025b95aa2d4942548bb404373a5f", + "pushdate": "2009-03-01 11:49:00", + "desc": "Bug 477657 - saner default handling for _closedTabs and sizemode. r=dietrich" + }, + "backout_commit": { + "node": "6b0f1081941b6ca7fcb02b9b4f42564fec224499", + "pushdate": "2009-03-02 22:56:21", + "desc": "Backed out changeset 6fa6667b903f" + }, + "fixing_commit": { + "node": "841e2745a834f067d0f3ab5ea401c334a078b108", + "pushdate": "2009-03-11 12:27:27", + "desc": "Bug 477657 - saner default handling for _closedTabs and sizemode. r=dietrich" + } + }, + { + "bug_id": 481881, + "inducing_commit": { + "node": "dac7c3176b331762557a4c3d74e32840cb002fe0", + "pushdate": "2009-03-11 02:28:01", + "desc": "Bug 481881 - use better template arguments for nsTArray after bug 474369, layout part r+sr=roc" + }, + "backout_commit": { + "node": "44cd744842422ca215443df7c86c7490686773ef", + "pushdate": "2009-03-11 04:09:25", + "desc": "backout dac7c3176b33 from bug 481881" + }, + "fixing_commit": { + "node": "7caeec7806331f7b553b4931727b785729c89783", + "pushdate": "2009-03-11 02:59:14", + "desc": "Remove extra closing parenthesis b=481881" + } + }, + { + "bug_id": 394759, + "inducing_commit": { + "node": "aa38257f674407600c305746454efeab6a6b3fc7", + "pushdate": "2009-04-23 12:56:49", + "desc": "Disable the tests for bug 394759 to see whether they're causing other test bustage." + }, + "backout_commit": { + "node": "f15e705a5f0a7f21fa3acf95120066390c063443", + "pushdate": "2009-04-23 13:30:10", + "desc": "Backed out changeset aa38257f6744, since the tests are not the problem" + }, + "fixing_commit": { + "node": "577393262a7c9f55fbb75b2415a17c34efe92e3f", + "pushdate": "2009-04-23 13:30:10", + "desc": "Fix the test orange from bug 394759. Thanks to D\u00e3o for pointing to the right code to change." + } + }, + { + "bug_id": 474369, + "inducing_commit": { + "node": "461d728271d182a4abca5d3e1383c6d62fc5094c", + "pushdate": "2009-05-19 09:20:22", + "desc": "Bug 474369 - get rid of nsVoidArray, remaining parts; r=bz, sr=dbaron" + }, + "backout_commit": { + "node": "0c1d882586cec6b9625227f20b3767b2501f2d6c", + "pushdate": "2009-05-19 12:53:09", + "desc": "Backed out changeset 461d728271d1" + }, + "fixing_commit": { + "node": "691dd3dcfbcadd47570db22a231a61b4752d46f5", + "pushdate": "2009-06-12 12:08:33", + "desc": "Bug 474369 - get rid of nsVoidArray, remaining parts; r=bz, sr=dbaron" + } + }, + { + "bug_id": 495385, + "inducing_commit": { + "node": "69c6dbdfd17954a71791016d71c3830ecce46a79", + "pushdate": "2009-06-13 09:39:05", + "desc": "Bug 495385. Text frames adjacent to block boundaries that contain only collapsible whitespace cannot affect layout, so don't create them. r+sr=bzbarsky" + }, + "backout_commit": { + "node": "43bba2afdbb81a0a1e6089ef5ca2418f9d041921", + "pushdate": "2009-06-13 12:18:51", + "desc": "Backed out changeset 69c6dbdfd179" + }, + "fixing_commit": { + "node": "c6c685aa0379927b3686b639d2f2cff5a008f62e", + "pushdate": "2009-06-23 21:40:35", + "desc": "Bug 495385. Text frames adjacent to block boundaries that contain only collapsible whitespace cannot affect layout, so don't create them. r+sr=bzbarsky" + } + }, + { + "bug_id": 371839, + "inducing_commit": { + "node": "92cc21ed9634d821354f33579b141b9fce0e8cd4", + "pushdate": "2009-07-10 02:17:16", + "desc": "Bug 371839. Treat \\n as space that the line-breaker will use as a word boundary. The main effect is that we don't have to scan backwards past \\n when looking for a place to start linebreaking. r=smontagu" + }, + "backout_commit": { + "node": "9defc0f5d5113b5046e059fd8610349f604858bb", + "pushdate": "2009-07-10 06:21:58", + "desc": "Backed out changeset 92cc21ed9634" + }, + "fixing_commit": { + "node": "a0b42fa6b477091e87a45a071eeac65c5c31241d", + "pushdate": "2009-07-27 01:03:51", + "desc": "Bug 371839. Remove useless SetSelected implementations. r=bzbarsky" + } + }, + { + "bug_id": 471214, + "inducing_commit": { + "node": "e09130fcb013c42255138b1d8e2ed1418fa6b496", + "pushdate": "2009-07-29 21:06:24", + "desc": "Bug 471214 - Join function objects transparently, clone via read barrier to satisfy de-facto standard (r=igor)." + }, + "backout_commit": { + "node": "075b80a1cf6d6f2d641dd73e9881b8cf2dee6456", + "pushdate": "2009-07-29 21:06:24", + "desc": "Backed out changeset e09130fcb013" + }, + "fixing_commit": { + "node": "0ae65841fcf88595e023f93b86451f5fd341824e", + "pushdate": "2009-09-16 23:16:27", + "desc": "Back out changeset aff171a8c4f0 (bug 471214)." + } + }, + { + "bug_id": 505591, + "inducing_commit": { + "node": "238e8b557e4fb30b3fcb450302f25da1a9012772", + "pushdate": "2009-08-25 16:53:43", + "desc": "Bug 505591: trace JSOP_NAME for returned closures, r=dvander" + }, + "backout_commit": { + "node": "72a50720cd40ce04047d1c80931079d9711eb52f", + "pushdate": "2009-08-25 16:53:43", + "desc": "Backed out changeset 238e8b557e4f: causing tjss orange" + }, + "fixing_commit": { + "node": "1f50f79db6e791849bdac381614e6b5b09119188", + "pushdate": "2009-09-16 23:16:27", + "desc": "Bug 505591: trace JSOP_NAME for returned closures, r=dvander" + } + }, + { + "bug_id": 497495, + "inducing_commit": { + "node": "e2927bb264129e21ef1e27c699707f06cef50c4d", + "pushdate": "2009-08-26 16:44:02", + "desc": "Bug 497495 part 3a: rationalize the queryframe-implementation macro naming scheme, restructure the implementation to detect duplicate entries, and a couple fixes to the frame ID enumeration. r=dbaron sr=roc\nBug 497495 part 3b: update users of queryframe macros (strictly mechanical change). r=dbaron" + }, + "backout_commit": { + "node": "f5cff6af5a6b5195e99b094241db00b6b643a4ec", + "pushdate": "2009-08-26 21:50:29", + "desc": "Backed out changeset e2927bb26412" + }, + "fixing_commit": { + "node": "7df4c375164fd13c2290e178f0e11dc5559b81b0", + "pushdate": "2009-09-12 16:50:04", + "desc": "Bug 497495 part 3: Add methods to every nsFrame subclass that expose the as-allocated identity of every frame object. Also some cleanups to the QueryFrame implementation. r=dbaron sr=roc" + } + }, + { + "bug_id": 295977, + "inducing_commit": { + "node": "72c1f97df4c6e5c8857d97e004ab7168ef15f399", + "pushdate": "2009-08-28 07:44:25", + "desc": "Bug 295977 - browser-chrome tests + non-multiple select fixup; r=neil@parkwaycc.co.uk" + }, + "backout_commit": { + "node": "1e5262ff9eff7793dc807ef5de0a438989c34a21", + "pushdate": "2009-08-28 18:46:12", + "desc": "Backed out changeset 72c1f97df4c6" + }, + "fixing_commit": { + "node": "c19711e6eef2965966942611f55b2faa37a7a651", + "pushdate": "2009-10-16 13:43:34", + "desc": "Bug 295977 - browser-chrome tests + non-multiple select fixup; r=neil@parkwaycc.co.uk" + } + }, + { + "bug_id": 515192, + "inducing_commit": { + "node": "3d7b55f16ec58d4b8603e73a671c27a792d80aca", + "pushdate": "2009-09-09 16:14:09", + "desc": "Bug 515192. Update cairo to 655a4dbc36d95ce4a82cbc13aa9e2002b41fa4de" + }, + "backout_commit": { + "node": "a52ca6a09ae71dbbcc772950a3feb62005e98c15", + "pushdate": "2009-09-09 18:31:41", + "desc": "Backed out changeset 3d7b55f16ec5" + }, + "fixing_commit": { + "node": "7a9262f6dbc05228a9e2f3e2d1fcf114d8e83d1c", + "pushdate": "2009-09-15 02:47:05", + "desc": "Bug 515192. Update cairo to 655a4dbc36d95ce4a82cbc13aa9e2002b41fa4de\n\nThis time without:\nc0e01d9cd71bd958e1b31a03cea4c08a1bdf4926 (Improve GC caching efficacy)" + } + }, + { + "bug_id": 495331, + "inducing_commit": { + "node": "9cc88d291fc0181c84c7ffcc6c6cad51d7723197", + "pushdate": "2009-10-07 06:47:58", + "desc": "Bug 495331: trace JSOP_LAMBDA for non-null, non-heavyweight case, r=jorendorff,igor" + }, + "backout_commit": { + "node": "8d540a2d2e4204ba7ad932aeec5eb9241888161e", + "pushdate": "2009-10-07 06:47:58", + "desc": "Backed out changeset 9cc88d291fc0" + }, + "fixing_commit": { + "node": "910ee7db07dee0d99855db1718567902eee54cf0", + "pushdate": "2010-01-31 16:36:36", + "desc": "Bug 495331: trace JSOP_LAMBDA for non-heavyweight, non-null closures, r=jorendorff,dvander" + } + }, + { + "bug_id": 500328, + "inducing_commit": { + "node": "dc7a04be6904be41a95c33d70ba5908c3b8a2fc0", + "pushdate": "2010-01-28 19:11:53", + "desc": "Bug 500328 - Implement History.pushState(), History.replaceState() methods. r=smaug, r=zpao, sr=sicking" + }, + "backout_commit": { + "node": "6d50455cabaa3c695ad6e23200782d0790d6d59d", + "pushdate": "2010-01-30 03:08:18", + "desc": "Backed out changeset dc7a04be6904 on suspicion of causing bug 543034." + }, + "fixing_commit": { + "node": "a2f4681188684698c5f7fb70e06b03f449dfc942", + "pushdate": "2010-02-01 22:56:30", + "desc": "Bug 500328 - Implement History.pushState(), History.replaceState() methods. r=smaug, r=zpao, sr=sicking" + } + }, + { + "bug_id": 461199, + "inducing_commit": { + "node": "3d8baa8213cf7b9d91a47be4b211ba3fd2f0a520", + "pushdate": "2010-02-17 22:38:03", + "desc": "Bug 461199 (Part 6) - nsSVGAElement::GetHrefURI is not implemented\nFixes nsSVGAElement::GetHrefURI so that it actually returns a URI when it is a\nlink instead of nsnull.\nr=jwatt" + }, + "backout_commit": { + "node": "2c510134fd7fb7e2923194fc2b3f8da3d30936ba", + "pushdate": "2010-02-18 18:30:33", + "desc": "Backed out changeset 3d8baa8213cf" + }, + "fixing_commit": { + "node": "c6567e3efafb6eb3c97c175accb8fcd1d87103d0", + "pushdate": "2010-02-20 01:24:42", + "desc": "bustage fix for Bug 461199: rename global var 'link' in test_IHistory.cpp to avoid bustage due to ambiguity w/ 'link()' function in unistd.h" + } + }, + { + "bug_id": 461199, + "inducing_commit": { + "node": "93eff7903e3468f92c3089cd5c9f25067fc29487", + "pushdate": "2010-02-17 22:38:03", + "desc": "Bug 461199 (Part 7) - mozilla::dom::Link should have a method to obtain a cached URI\nAdd mozilla::dom::Link::GetURI method used to cache the URI for this element.\nr=bz" + }, + "backout_commit": { + "node": "8d113ad738ad5199469a24c38be0722827320e02", + "pushdate": "2010-02-18 18:30:33", + "desc": "Backed out changeset 93eff7903e34" + }, + "fixing_commit": { + "node": "c6567e3efafb6eb3c97c175accb8fcd1d87103d0", + "pushdate": "2010-02-20 01:24:42", + "desc": "bustage fix for Bug 461199: rename global var 'link' in test_IHistory.cpp to avoid bustage due to ambiguity w/ 'link()' function in unistd.h" + } + }, + { + "bug_id": 461199, + "inducing_commit": { + "node": "06b691e8cbcd5de75114f6c20c75f69b7612ef4f", + "pushdate": "2010-02-17 22:38:03", + "desc": "Bug 461199 (Part 8) - Remove nsAttrValue::eLazyURIValue and related code\nStop using lazy href attributes in nsAttrValue. Link will store it as needed.\nr=sicking\nsr=bz" + }, + "backout_commit": { + "node": "08e109d08b07bbbbd9c67fee687ba064e607a450", + "pushdate": "2010-02-18 18:30:33", + "desc": "Backed out changeset 06b691e8cbcd" + }, + "fixing_commit": { + "node": "c6567e3efafb6eb3c97c175accb8fcd1d87103d0", + "pushdate": "2010-02-20 01:24:42", + "desc": "bustage fix for Bug 461199: rename global var 'link' in test_IHistory.cpp to avoid bustage due to ambiguity w/ 'link()' function in unistd.h" + } + }, + { + "bug_id": 461199, + "inducing_commit": { + "node": "6a2bef8d7020ef7950b991c7ca74d1a2febca2dd", + "pushdate": "2010-02-17 22:38:03", + "desc": "Bug 461199 (Part 9) - Move href helpers from nsGenericHTMLElement to mozilla::dom::Link.\nMove the helpers so that they can easily use the cached URI when available.\nr=sicking\nsr=bz" + }, + "backout_commit": { + "node": "1193c1cb4f924311163cbd6b99a8c247706d0715", + "pushdate": "2010-02-18 18:30:33", + "desc": "Backed out changeset 6a2bef8d7020" + }, + "fixing_commit": { + "node": "c6567e3efafb6eb3c97c175accb8fcd1d87103d0", + "pushdate": "2010-02-20 01:24:42", + "desc": "bustage fix for Bug 461199: rename global var 'link' in test_IHistory.cpp to avoid bustage due to ambiguity w/ 'link()' function in unistd.h" + } + }, + { + "bug_id": 461199, + "inducing_commit": { + "node": "f947b766de6f6173b0fe89689a821d76a1aef290", + "pushdate": "2010-02-17 22:38:03", + "desc": "Bug 461199 (Part 10) - Ensure that Link::ResetLinkState is always called when an element is bound or unbound from the DOM tree.\nWe would not be notified about base URI changes during this time, so we need to\nmake sure we are not registered and have no cached state.\nr=bz\nr=jwatt" + }, + "backout_commit": { + "node": "e41c0952019ab0f2df47af25f11f4a4a6cd4136f", + "pushdate": "2010-02-18 18:30:33", + "desc": "Backed out changeset f947b766de6f" + }, + "fixing_commit": { + "node": "c6567e3efafb6eb3c97c175accb8fcd1d87103d0", + "pushdate": "2010-02-20 01:24:42", + "desc": "bustage fix for Bug 461199: rename global var 'link' in test_IHistory.cpp to avoid bustage due to ambiguity w/ 'link()' function in unistd.h" + } + }, + { + "bug_id": 461199, + "inducing_commit": { + "node": "9d0cca7835223b1da31f9b7de46af8d28dbb7b2a", + "pushdate": "2010-02-17 22:38:03", + "desc": "Bug 461199 (Part 11) - [un]register in mozilla::dom::Link::[Reset]LinkState\nRegister with History in mozilla::dom::Link::LinkState and unregister in\nmozilla::dom::Link::RestLinkState.\nr=bz" + }, + "backout_commit": { + "node": "2ab9f860694786fd9cd8e079ebc99a74a6dd92de", + "pushdate": "2010-02-18 18:30:33", + "desc": "Backed out changeset 9d0cca783522" + }, + "fixing_commit": { + "node": "c6567e3efafb6eb3c97c175accb8fcd1d87103d0", + "pushdate": "2010-02-20 01:24:42", + "desc": "bustage fix for Bug 461199: rename global var 'link' in test_IHistory.cpp to avoid bustage due to ambiguity w/ 'link()' function in unistd.h" + } + }, + { + "bug_id": 461199, + "inducing_commit": { + "node": "cf4d10139ec00de48889d895430934330b94c649", + "pushdate": "2010-02-17 22:38:03", + "desc": "Bug 461199 (Part 12) - mozilla::dom::Link should unregister with mozilla::IHistory when it goes away\nCall UnregisterWithHistory in Link's destructor to ensure that we are no longer\nregistered with IHistory.\nr=sicking\nsr=bz" + }, + "backout_commit": { + "node": "294bceb886c83a0e2fafab4ce4211016db68797c", + "pushdate": "2010-02-18 18:30:33", + "desc": "Backed out changeset cf4d10139ec0" + }, + "fixing_commit": { + "node": "c6567e3efafb6eb3c97c175accb8fcd1d87103d0", + "pushdate": "2010-02-20 01:24:42", + "desc": "bustage fix for Bug 461199: rename global var 'link' in test_IHistory.cpp to avoid bustage due to ambiguity w/ 'link()' function in unistd.h" + } + }, + { + "bug_id": 461199, + "inducing_commit": { + "node": "3a3d576e3ac785f1cdb30a8044097435a04ee0a2", + "pushdate": "2010-02-17 22:38:03", + "desc": "Bug 461199 (Part 13) - mozilla::dom::Link::SetLinkState should inform the document about changes to its state when it is called.\nMake Link::SetLinkState notify the document about changes in state, plus a\nwhole bunch of assertions for sanity checking.\nr=sicking\nr=bz" + }, + "backout_commit": { + "node": "ff9017395943f2bd2da87b6bb4db5287c8977355", + "pushdate": "2010-02-18 18:30:33", + "desc": "Backed out changeset 3a3d576e3ac7" + }, + "fixing_commit": { + "node": "c6567e3efafb6eb3c97c175accb8fcd1d87103d0", + "pushdate": "2010-02-20 01:24:42", + "desc": "bustage fix for Bug 461199: rename global var 'link' in test_IHistory.cpp to avoid bustage due to ambiguity w/ 'link()' function in unistd.h" + } + }, + { + "bug_id": 461199, + "inducing_commit": { + "node": "8b82e1e256716c97189e179b83156284b6862680", + "pushdate": "2010-02-17 22:38:03", + "desc": "Bug 461199 (Part 14) - Implement nsIContent::IntrinsicState on mozilla::dom::Link subclasses\nAll mozilla::dom::Link subclasses need to implement IntrinsicState and make sure\nto call LinkState.\nr=sicking\nsr=bz" + }, + "backout_commit": { + "node": "8a4aef2c7c4f369296a4f3d2d01126e5df59bfa9", + "pushdate": "2010-02-18 18:30:33", + "desc": "Backed out changeset 8b82e1e25671" + }, + "fixing_commit": { + "node": "c6567e3efafb6eb3c97c175accb8fcd1d87103d0", + "pushdate": "2010-02-20 01:24:42", + "desc": "bustage fix for Bug 461199: rename global var 'link' in test_IHistory.cpp to avoid bustage due to ambiguity w/ 'link()' function in unistd.h" + } + }, + { + "bug_id": 461199, + "inducing_commit": { + "node": "bca0b6ed92e46e2fb40873feb7f548fb11976bdd", + "pushdate": "2010-02-17 22:38:03", + "desc": "Bug 461199 (Part 15) - Rely on nsIContent::IntrinsicState instead of nsIContent::GetLinkState in layout.\nLayout should call IntrinsicState instead of GetLinkState. Simplifies a lot of\nlogic, and makes the code easier to follow.\nr=bz\nsr=dbaron" + }, + "backout_commit": { + "node": "9fae9dc454729e6ecbb451a2e61e899ab40e272a", + "pushdate": "2010-02-18 18:30:33", + "desc": "Backed out changeset bca0b6ed92e4" + }, + "fixing_commit": { + "node": "c6567e3efafb6eb3c97c175accb8fcd1d87103d0", + "pushdate": "2010-02-20 01:24:42", + "desc": "bustage fix for Bug 461199: rename global var 'link' in test_IHistory.cpp to avoid bustage due to ambiguity w/ 'link()' function in unistd.h" + } + }, + { + "bug_id": 461199, + "inducing_commit": { + "node": "a3e287904065a149fd87b907fd5ba95f718aebf9", + "pushdate": "2010-02-17 22:38:03", + "desc": "Bug 461199 (Part 16) - Remove now unused style code testing for Link and HTML Links.\nr=bz\nsr=dbaron" + }, + "backout_commit": { + "node": "2ee7c5316c76602b89fc25e79d27587fbdbfeef0", + "pushdate": "2010-02-18 18:30:33", + "desc": "Backed out changeset a3e287904065" + }, + "fixing_commit": { + "node": "c6567e3efafb6eb3c97c175accb8fcd1d87103d0", + "pushdate": "2010-02-20 01:24:42", + "desc": "bustage fix for Bug 461199: rename global var 'link' in test_IHistory.cpp to avoid bustage due to ambiguity w/ 'link()' function in unistd.h" + } + }, + { + "bug_id": 461199, + "inducing_commit": { + "node": "af29773ebf660ab2b9d548f4c43694d3eb1eaf05", + "pushdate": "2010-02-17 22:38:03", + "desc": "Bug 461199 (Part 17) - Remove no longer needed code from webshell and docshell.\nr=bz\nsr=sicking" + }, + "backout_commit": { + "node": "10d593a6abe7fc486c00049fe2f269f8fca8c340", + "pushdate": "2010-02-18 18:30:33", + "desc": "Backed out changeset af29773ebf66" + }, + "fixing_commit": { + "node": "c6567e3efafb6eb3c97c175accb8fcd1d87103d0", + "pushdate": "2010-02-20 01:24:42", + "desc": "bustage fix for Bug 461199: rename global var 'link' in test_IHistory.cpp to avoid bustage due to ambiguity w/ 'link()' function in unistd.h" + } + }, + { + "bug_id": 461199, + "inducing_commit": { + "node": "1dac46a1218efd1a16fa87b632475fc53f009c80", + "pushdate": "2010-02-17 22:38:03", + "desc": "Bug 461199 (Part 18) - Need an observer notification to indicate when link status is known from the database\nAdds an observer to indicate when a URI lookup is completed and passes the\nvisited state with the notification. This greatly simplifies test writing.\nr=mak" + }, + "backout_commit": { + "node": "ddf7671d13385056207caa2b93f5fe84b7476ad7", + "pushdate": "2010-02-18 18:30:33", + "desc": "Backed out changeset 1dac46a1218e" + }, + "fixing_commit": { + "node": "c6567e3efafb6eb3c97c175accb8fcd1d87103d0", + "pushdate": "2010-02-20 01:24:42", + "desc": "bustage fix for Bug 461199: rename global var 'link' in test_IHistory.cpp to avoid bustage due to ambiguity w/ 'link()' function in unistd.h" + } + }, + { + "bug_id": 461199, + "inducing_commit": { + "node": "113cf8eec589b772490e5cc51ca8507dbececa22", + "pushdate": "2010-02-17 22:38:03", + "desc": "Bug 461199 (Part 19) - nsSVGAElement fails to call ResetLinkState in [Uns|S]etAttr\nHave nsSVGAelement implement UnsetAttr and SetAttr, and make sure it calls\nmozilla::dom::Link::ResetLinkState when appropriate.\nr=jwatt\nsr=bz" + }, + "backout_commit": { + "node": "272b50493ab053f153d6a7aa8dae2cc7785518e4", + "pushdate": "2010-02-18 18:30:33", + "desc": "Backed out changeset 113cf8eec589" + }, + "fixing_commit": { + "node": "c6567e3efafb6eb3c97c175accb8fcd1d87103d0", + "pushdate": "2010-02-20 01:24:42", + "desc": "bustage fix for Bug 461199: rename global var 'link' in test_IHistory.cpp to avoid bustage due to ambiguity w/ 'link()' function in unistd.h" + } + }, + { + "bug_id": 461199, + "inducing_commit": { + "node": "d03d64716ccd0629077c3c4dbf1d1ec56fd3f3a9", + "pushdate": "2010-02-17 22:38:03", + "desc": "Bug 461199 (Part 20) - Rewrite the private browsing visited link coloring test to make it work with the new async API\nr=mconnor\nr=sdwilsh\nr=bz" + }, + "backout_commit": { + "node": "7ac2e2bad75e47b059092ba18a264e2011a8a0e2", + "pushdate": "2010-02-18 18:30:33", + "desc": "Backed out changeset d03d64716ccd" + }, + "fixing_commit": { + "node": "c6567e3efafb6eb3c97c175accb8fcd1d87103d0", + "pushdate": "2010-02-20 01:24:42", + "desc": "bustage fix for Bug 461199: rename global var 'link' in test_IHistory.cpp to avoid bustage due to ambiguity w/ 'link()' function in unistd.h" + } + }, + { + "bug_id": 461199, + "inducing_commit": { + "node": "2eaaa58d2915e76708e669e07f38057091a6dce8", + "pushdate": "2010-02-17 22:38:03", + "desc": "Bug 461199 (Part 21) - Cache the nsIContent pointer in Link for performance reasons\nAdd a Content method that obtains a pointer to the nsIContent interface on\nmozilla::dom::Link. This is cached so we only have to call QueryInterface once\nduring the entire lifetime of the mozilla::dom::Link object.\nr=bz" + }, + "backout_commit": { + "node": "a05ba49538dc43e67fbfdb4adf8d9f4d8c803cb2", + "pushdate": "2010-02-18 18:30:33", + "desc": "Backed out changeset 2eaaa58d2915" + }, + "fixing_commit": { + "node": "c6567e3efafb6eb3c97c175accb8fcd1d87103d0", + "pushdate": "2010-02-20 01:24:42", + "desc": "bustage fix for Bug 461199: rename global var 'link' in test_IHistory.cpp to avoid bustage due to ambiguity w/ 'link()' function in unistd.h" + } + }, + { + "bug_id": 461199, + "inducing_commit": { + "node": "4b65b09154807116b0f7ea552851b7adbf86ce12", + "pushdate": "2010-02-17 22:38:03", + "desc": "Bug 461199 (Part 22) - Call ResetLinkState if given eLinkState_Unknown\nIf consumers tell mozilla::dom::Link::SetLinkState that its new state is\neLinkState_Unknown, call mozilla::dom::Link::ResetLinkState and return.\nr=bz" + }, + "backout_commit": { + "node": "b0e6ec8c5565d451bb50ccb22bb564b5cd150e40", + "pushdate": "2010-02-18 18:30:33", + "desc": "Backed out changeset 4b65b0915480" + }, + "fixing_commit": { + "node": "c6567e3efafb6eb3c97c175accb8fcd1d87103d0", + "pushdate": "2010-02-20 01:24:42", + "desc": "bustage fix for Bug 461199: rename global var 'link' in test_IHistory.cpp to avoid bustage due to ambiguity w/ 'link()' function in unistd.h" + } + }, + { + "bug_id": 461199, + "inducing_commit": { + "node": "b387c724bda4698656b21e7caafa8a91db6850dc", + "pushdate": "2010-02-17 22:38:03", + "desc": "Bug 461199 (Part 23) - Remove no longer needed code in ns[I]Document.[cpp|h]\nr=bz" + }, + "backout_commit": { + "node": "5bf5eaedf481858ff80e6430959735e75b2d7352", + "pushdate": "2010-02-18 18:30:33", + "desc": "Backed out changeset b387c724bda4" + }, + "fixing_commit": { + "node": "c6567e3efafb6eb3c97c175accb8fcd1d87103d0", + "pushdate": "2010-02-20 01:24:42", + "desc": "bustage fix for Bug 461199: rename global var 'link' in test_IHistory.cpp to avoid bustage due to ambiguity w/ 'link()' function in unistd.h" + } + }, + { + "bug_id": 461199, + "inducing_commit": { + "node": "26f7974bf6ef823fa96a6b00e95069134d348db2", + "pushdate": "2010-02-17 22:38:03", + "desc": "Bug 461199 (Part 24) - Update docshell tests to work with the new async isVisited API\nr=bz" + }, + "backout_commit": { + "node": "7313258e36fab1b1b2cb6483e756481583a0b15d", + "pushdate": "2010-02-18 18:30:33", + "desc": "Backed out changeset 26f7974bf6ef" + }, + "fixing_commit": { + "node": "c6567e3efafb6eb3c97c175accb8fcd1d87103d0", + "pushdate": "2010-02-20 01:24:42", + "desc": "bustage fix for Bug 461199: rename global var 'link' in test_IHistory.cpp to avoid bustage due to ambiguity w/ 'link()' function in unistd.h" + } + }, + { + "bug_id": 461199, + "inducing_commit": { + "node": "fa7f3d18510d9aea5805cc1e8d2eebcf1c84c2c6", + "pushdate": "2010-02-17 22:38:03", + "desc": "Bug 461199 (Part 25) - Fix layout reftests to work with the new async isVisited API\nr=jwatt" + }, + "backout_commit": { + "node": "4ba23b6e4b3d50aeb9c3281b447f0f995b6ac4fe", + "pushdate": "2010-02-18 18:30:33", + "desc": "Backed out changeset fa7f3d18510d" + }, + "fixing_commit": { + "node": "c6567e3efafb6eb3c97c175accb8fcd1d87103d0", + "pushdate": "2010-02-20 01:24:42", + "desc": "bustage fix for Bug 461199: rename global var 'link' in test_IHistory.cpp to avoid bustage due to ambiguity w/ 'link()' function in unistd.h" + } + }, + { + "bug_id": 461199, + "inducing_commit": { + "node": "1c37899b532ee7cf699ac3dd26921485f1abc515", + "pushdate": "2010-02-17 22:38:03", + "desc": "Bug 461199 (Part 28) - Tell the document that we are a style relevant link\nAdds the needed calls to inform the document if we are a style relevant link,\nand when we no longer are.\nr=bz" + }, + "backout_commit": { + "node": "1072173c59acbc1041352db720825023ba0e50c1", + "pushdate": "2010-02-18 18:30:33", + "desc": "Backed out changeset 1c37899b532e" + }, + "fixing_commit": { + "node": "c6567e3efafb6eb3c97c175accb8fcd1d87103d0", + "pushdate": "2010-02-20 01:24:42", + "desc": "bustage fix for Bug 461199: rename global var 'link' in test_IHistory.cpp to avoid bustage due to ambiguity w/ 'link()' function in unistd.h" + } + }, + { + "bug_id": 461199, + "inducing_commit": { + "node": "2bd2f67e8f5e2c0f01f0d5537673c95a348afcad", + "pushdate": "2010-02-17 22:38:03", + "desc": "Bug 461199 (Part 26) - Update content tests to work with the new async isVisited API" + }, + "backout_commit": { + "node": "ef33df18ff0e3e18f44f893ddea9729cdb495e2f", + "pushdate": "2010-02-18 18:30:33", + "desc": "Backed out changeset 2bd2f67e8f5e" + }, + "fixing_commit": { + "node": "c6567e3efafb6eb3c97c175accb8fcd1d87103d0", + "pushdate": "2010-02-20 01:24:42", + "desc": "bustage fix for Bug 461199: rename global var 'link' in test_IHistory.cpp to avoid bustage due to ambiguity w/ 'link()' function in unistd.h" + } + }, + { + "bug_id": 461199, + "inducing_commit": { + "node": "b0c9f8e500573ce8cae005c08216a42ead29ced9", + "pushdate": "2010-02-17 22:38:03", + "desc": "Bug 461199 (Part 27) - Fix test_visited_pref.html so it passes with the new async isVisited API\nr?dbaron" + }, + "backout_commit": { + "node": "be7abf642e28e1347dcdd03788f8c74ead3a00ed", + "pushdate": "2010-02-18 18:30:33", + "desc": "Backed out changeset b0c9f8e50057" + }, + "fixing_commit": { + "node": "c6567e3efafb6eb3c97c175accb8fcd1d87103d0", + "pushdate": "2010-02-20 01:24:42", + "desc": "bustage fix for Bug 461199: rename global var 'link' in test_IHistory.cpp to avoid bustage due to ambiguity w/ 'link()' function in unistd.h" + } + }, + { + "bug_id": 542592, + "inducing_commit": { + "node": "018b79b00cacb45c3bfc00aae7e99781f1bb9aa0", + "pushdate": "2010-02-17 22:38:03", + "desc": "Bug 542592 - Change how we use/store nsDocument::mLinkMap\nThis makes changes nsDocument::mLinkMap in a number of ways:\n1) renamed to mStyledLinks to better reflect its new nature.\n2) change it to an nsTHashtable of Link*. It no longer has a strong reference\n3) add some assertions to make sure we call ForgetLink and AddStyleRelevantLink\n in pairs.\nThis also makes mozilla::dom::Link::ResetLinkState take a boolean indicating if\nwe should notify or not.\nr=bz" + }, + "backout_commit": { + "node": "fe54a627f26489dcb0cb8ee9d4c042f68152a6fd", + "pushdate": "2010-02-18 18:30:33", + "desc": "Backed out changeset 018b79b00cac" + }, + "fixing_commit": { + "node": "40f19060d4c59683c40408f808adee2e91d1c35d", + "pushdate": "2010-02-24 17:05:48", + "desc": "Bug 542592 - Change how we use/store nsDocument::mLinkMap\nThis makes changes nsDocument::mLinkMap in a number of ways:\n1) renamed to mStyledLinks to better reflect its new nature.\n2) change it to an nsTHashtable of Link*. It no longer has a strong reference\n3) add some assertions to make sure we call ForgetLink and AddStyleRelevantLink\n in pairs.\nThis also makes mozilla::dom::Link::ResetLinkState take a boolean indicating if\nwe should notify or not.\nr=bz" + } + }, + { + "bug_id": 542632, + "inducing_commit": { + "node": "42bf809ee4139db521da9a8b620a04d9774e3a62", + "pushdate": "2010-02-17 22:38:03", + "desc": "Bug 542632 - Protect nsGenericHTMLElement::GetHrefURIForAnchors\nAlso makes DNS prefetching take mozilla::dom::Link instead of nsIContent.\nr=bz" + }, + "backout_commit": { + "node": "988eb5f4836715178716d5e60c9fc32f027fbb23", + "pushdate": "2010-02-18 18:30:33", + "desc": "Backed out changeset 42bf809ee413" + }, + "fixing_commit": { + "node": "2777f7baaaad4a40773b4030c317294b91c16b65", + "pushdate": "2010-02-24 17:05:48", + "desc": "Bug 542632 - Protect nsGenericHTMLElement::GetHrefURIForAnchors\nAlso makes DNS prefetching take mozilla::dom::Link instead of nsIContent.\nr=bz" + } + }, + { + "bug_id": 461199, + "inducing_commit": { + "node": "5607b8b76949e4a1c84cbc766367cbd9e0fdbedc", + "pushdate": "2010-02-17 22:38:03", + "desc": "Bug 461199 (Part 29) - Fix dom tests.\nr=sicking" + }, + "backout_commit": { + "node": "fec999d5f66684f208eae549a0cb307d0cad8676", + "pushdate": "2010-02-18 18:30:33", + "desc": "Backed out changeset 5607b8b76949" + }, + "fixing_commit": { + "node": "c6567e3efafb6eb3c97c175accb8fcd1d87103d0", + "pushdate": "2010-02-20 01:24:42", + "desc": "bustage fix for Bug 461199: rename global var 'link' in test_IHistory.cpp to avoid bustage due to ambiguity w/ 'link()' function in unistd.h" + } + }, + { + "bug_id": 461199, + "inducing_commit": { + "node": "550a4379468fe8ed06d39a220cf6769710142a89", + "pushdate": "2010-02-17 22:38:03", + "desc": "Bug 461199 (Part 30) - Fixes invalidation issues when changing the href attribute.\nr=bz" + }, + "backout_commit": { + "node": "5097032775f48cb3d42996f92aeec21cc1a02bcc", + "pushdate": "2010-02-18 18:30:33", + "desc": "Backed out changeset 550a4379468f" + }, + "fixing_commit": { + "node": "c6567e3efafb6eb3c97c175accb8fcd1d87103d0", + "pushdate": "2010-02-20 01:24:42", + "desc": "bustage fix for Bug 461199: rename global var 'link' in test_IHistory.cpp to avoid bustage due to ambiguity w/ 'link()' function in unistd.h" + } + }, + { + "bug_id": 221820, + "inducing_commit": { + "node": "70b1ccb14325c4c1c52347eec9968baab74a5a12", + "pushdate": "2010-02-18 20:27:20", + "desc": "Bug 221820 - Part 1: Call EnsureEditorInitialized from all places where editor needs to exist; r=bzbarsky" + }, + "backout_commit": { + "node": "03a61f4254a3f9d6da20514c32e9537c0145c5d1", + "pushdate": "2010-02-19 00:06:37", + "desc": "Backed out changeset 70b1ccb14325" + }, + "fixing_commit": { + "node": "0a2f12f042446fa718dda3ebab4061872650f2ef", + "pushdate": "2010-04-06 20:46:58", + "desc": "Bug 221820 - Part 1: Call EnsureEditorInitialized from all places where editor needs to exist; r=bzbarsky" + } + }, + { + "bug_id": 253889, + "inducing_commit": { + "node": "4b8936ac4a314150498aade04c074e20930017bf", + "pushdate": "2010-03-28 23:22:05", + "desc": "Bug 253889: More deCOMtamination of nsIPresShell. r=roc" + }, + "backout_commit": { + "node": "9ba741f58e4f330983955d58586ee41c05372147", + "pushdate": "2010-03-30 23:58:01", + "desc": "Backed out changeset 4b8936ac4a31" + }, + "fixing_commit": { + "node": "14e0caf9f9c3a8a7241049f2e23ae5569199d216", + "pushdate": "2010-03-31 13:01:40", + "desc": "Bug 253889: DeCOMtaminate nsIPresShell - make some methods const. r=roc" + } + }, + { + "bug_id": 253889, + "inducing_commit": { + "node": "90a30ea68797df6e64b029477106cd9ba163a08f", + "pushdate": "2010-03-28 23:57:34", + "desc": "Bug 253889: Windows bustage fix." + }, + "backout_commit": { + "node": "68b78595d5e5550684c18d5754bea795ba9e92e6", + "pushdate": "2010-03-30 23:58:01", + "desc": "Backed out changeset 90a30ea68797" + }, + "fixing_commit": { + "node": "14e0caf9f9c3a8a7241049f2e23ae5569199d216", + "pushdate": "2010-03-31 13:01:40", + "desc": "Bug 253889: DeCOMtaminate nsIPresShell - make some methods const. r=roc" + } + }, + { + "bug_id": 542605, + "inducing_commit": { + "node": "9480726de986979132443714b9f9d6e89f0b4720", + "pushdate": "2010-04-08 03:13:24", + "desc": "Bug 542605. Update cairo to 12d521df8acc483b2daa844d4f05dc2fe2765ba6. r=vlad,jwatt,bas\n\nReland after fixing quartz related clipping bug." + }, + "backout_commit": { + "node": "733e8efbaf26d971261753110a4ce482d6b8524b", + "pushdate": "2010-04-08 13:45:18", + "desc": "Backed out changeset 9480726de986\n\nRendering/Invalidation problems showed up." + }, + "fixing_commit": { + "node": "1ae178ed2e2006ba065a2c0e803ec168b924f403", + "pushdate": "2010-04-16 14:49:54", + "desc": "Bug 542605. Add a test for a clipping problem shown by the cairo update." + } + }, + { + "bug_id": 545632, + "inducing_commit": { + "node": "85335f212ac3e5211e2d64b4b4294ce4297a95ab", + "pushdate": "2010-06-11 04:40:13", + "desc": "Bug 545632 - Add 16bpp format support for cairo image surface type. r=jmuizelaar" + }, + "backout_commit": { + "node": "ef1a401774530fa9a91a7b6a7196e8ffe049d9ed", + "pushdate": "2010-06-11 07:38:37", + "desc": "Backed out changeset 85335f212ac3, attempt to fix oranges" + }, + "fixing_commit": { + "node": "2c8fee6f7f533dc6132b5d17a0bd2848f812404c", + "pushdate": "2010-06-11 19:48:36", + "desc": "Bug 545632 - Add 16bpp format support for cairo image surface type. r=jmuizelaar" + } + }, + { + "bug_id": 545632, + "inducing_commit": { + "node": "2959eddcd018a727398f249432abaa47157710a3", + "pushdate": "2010-06-11 04:40:13", + "desc": "Bug 545632 - Add 16bpp format support enabler. r=jmuizelaar" + }, + "backout_commit": { + "node": "1c935e7bb91a4142002f1c7ec065199bfacff250", + "pushdate": "2010-06-11 07:38:37", + "desc": "Backed out changeset 2959eddcd018, to fix oranges" + }, + "fixing_commit": { + "node": "2c8fee6f7f533dc6132b5d17a0bd2848f812404c", + "pushdate": "2010-06-11 19:48:36", + "desc": "Bug 545632 - Add 16bpp format support for cairo image surface type. r=jmuizelaar" + } + }, + { + "bug_id": 550936, + "inducing_commit": { + "node": "c8dc4dd369ee9b8668685d3a2011473cde7390f1", + "pushdate": "2010-08-16 20:43:55", + "desc": "Bug 550936 - Make InstallTrigger support cross-process communication r=Mossop a=blocking-beta4+,blocking-fennec2.0a1+" + }, + "backout_commit": { + "node": "fafc537889901eff93e3a287bbbeb646e6764684", + "pushdate": "2010-08-17 05:10:33", + "desc": "Backed out changeset c8dc4dd369ee" + }, + "fixing_commit": { + "node": "3d4ba021c4dd91c2691431635dba6e05910016fc", + "pushdate": "2010-08-18 03:24:45", + "desc": "Bug 550936 - Make InstallTrigger support cross-process communication r=Mossop a=blocking-beta4+,blocking-fennec2.0a1+" + } + }, + { + "bug_id": 584615, + "inducing_commit": { + "node": "96b74fec2915294ec65b8ed489b6503dc10c130b", + "pushdate": "2010-09-11 05:50:23", + "desc": "Bug 584615 - Make media progress events be 'simple' Events, not 'progress' Events - r=roc,cpearce,dolske,kinetik a=blocking2.0" + }, + "backout_commit": { + "node": "f085aacfb4d201d974c72885a9ad9261d89bdcca", + "pushdate": "2010-09-11 09:19:34", + "desc": "Backed out changeset 96b74fec2915" + }, + "fixing_commit": { + "node": "3da55bab77965d879d6e43134ae47919f71fd740", + "pushdate": "2010-09-14 05:24:25", + "desc": "Bug 584615 - Make media progress events be 'simple' Events, not 'progress' Events - r=roc,cpearce,dolske,kinetik a=blocking2.0" + } + }, + { + "bug_id": 464398, + "inducing_commit": { + "node": "963d95181b4beab18bdca39bdfcb84f87faf404c", + "pushdate": "2010-09-11 05:50:23", + "desc": "Bug 464398 - Stop HTML media elements from firing events in bfcache - r=roc a=blocking2.0" + }, + "backout_commit": { + "node": "ebf786d2bcd5d8997fea5373629701d60aa2fceb", + "pushdate": "2010-09-11 09:19:34", + "desc": "Backed out changeset 963d95181b4b" + }, + "fixing_commit": { + "node": "33f5bd4797359ee632d739c76af957cfa2d5cdd2", + "pushdate": "2010-09-14 05:24:25", + "desc": "Bug 464398 - Stop HTML media elements from firing events in bfcache - r=roc a=blocking2.0" + } + }, + { + "bug_id": 571822, + "inducing_commit": { + "node": "3d42767d964ddb7bad16648289b0fe3eced7b097", + "pushdate": "2010-09-11 05:50:23", + "desc": "Bug 571822 - Fire timeupdate event less frequently than once per frame - r=kinetik a=blocking2.0" + }, + "backout_commit": { + "node": "e29874ead8b3b57b0045ff07bdf43fbd5c778f12", + "pushdate": "2010-09-11 09:19:34", + "desc": "Backed out changeset 3d42767d964d" + }, + "fixing_commit": { + "node": "7aab2563411442606053043d5f217327202be35f", + "pushdate": "2010-09-14 05:24:25", + "desc": "Bug 571822 - Fire timeupdate event less frequently than once per frame - r=kinetik a=blocking2.0" + } + }, + { + "bug_id": 594821, + "inducing_commit": { + "node": "6714a0c929d43948a936926243dcd085ae705427", + "pushdate": "2010-10-18 14:24:44", + "desc": "Bug 594821 - Trigger a sync paint on intial window show. r=roc, a=final." + }, + "backout_commit": { + "node": "7e705944dee373f6a0a5e03e85bb9faad2274876", + "pushdate": "2010-10-18 17:53:03", + "desc": "Backout changeset 6714a0c929d4 due to paint assertions, a=bustage." + }, + "fixing_commit": { + "node": "fc87245c91c0c0017d47206e20a60cb10e38e781", + "pushdate": "2011-02-09 22:38:13", + "desc": "Bug 594821 - Sync update top level windows when they are first shown. r=roc, a=final." + } + }, + { + "bug_id": 609976, + "inducing_commit": { + "node": "53952ab4a5449cf7455cf63a21016e93053f6736", + "pushdate": "2010-11-22 00:42:01", + "desc": "Bug 609976: Fold js back into libxul on Windows now that PGO seems less grumpy. r=ted a=ted" + }, + "backout_commit": { + "node": "e5bb8cabb5e904a3411fdc7b6dad11e5f6e58f43", + "pushdate": "2010-11-22 15:59:30", + "desc": "Backed out changeset 53952ab4a544" + }, + "fixing_commit": { + "node": "a758ca998666c4c3f385ad2b69a393ebf09d5f32", + "pushdate": "2014-10-17 14:25:58", + "desc": "Bug 609976 - Fold mozjs.dll back into xul.dll. r=ehsan" + } + }, + { + "bug_id": 632781, + "inducing_commit": { + "node": "f3d13890fbe34902c093950ca80a20e61e2a5f7c", + "pushdate": "2011-02-15 16:40:39", + "desc": "Bug 632781 - Scroll non-accelerated canvases correctly with the content; r=matt,joe,roc a=blocking-betaN" + }, + "backout_commit": { + "node": "9ed6bef2a9aca99ff8a9dae5a6fefb424e3191a7", + "pushdate": "2011-02-15 18:32:33", + "desc": "Back out changeset f3d13890fbe3 because of Windows reftest orange; a=orange" + }, + "fixing_commit": { + "node": "b6dc8964dea823ede0cb5d54ff42f211abab4a28", + "pushdate": "2011-02-15 19:49:53", + "desc": "Bug 632781 - Scroll non-accelerated canvases correctly with the content; r=matt,joe,roc a=blocking-betaN" + } + }, + { + "bug_id": 620931, + "inducing_commit": { + "node": "f406ffe65c08c3b28fdf55c59c6d7c3b02f29ece", + "pushdate": "2011-03-24 14:30:27", + "desc": "Bug 620931 part 1 - Use chrome manifest to register resource://gre-resources/. r=bsmedberg" + }, + "backout_commit": { + "node": "5deb267b1d334737c87cbf47301fba7b449ff11d", + "pushdate": "2011-03-25 04:11:33", + "desc": "Backout changeset f406ffe65c08 (Bug 620931 part 1) for causing bug 644790." + }, + "fixing_commit": { + "node": "1492b6e75639593efe4e45e153a34927605509a0", + "pushdate": "2011-03-25 04:11:33", + "desc": "Backout changeset b97a060746f9 (Bug 620931 part 5) for causing bug 644790." + } + }, + { + "bug_id": 620931, + "inducing_commit": { + "node": "5c3ed4fde1e40aa38985bd187d5905f51c3e8332", + "pushdate": "2011-03-24 14:30:27", + "desc": "Bug 620931 part 2 - When building --with-libxul-sdk, use the right preferences directory. r=bsmedberg" + }, + "backout_commit": { + "node": "16e48d6b3b9c121b8754d3ce427911f3e1a47aa5", + "pushdate": "2011-03-25 04:11:33", + "desc": "Backout changeset 5c3ed4fde1e4 (Bug 620931 part 2) for causing bug 644790." + }, + "fixing_commit": { + "node": "1492b6e75639593efe4e45e153a34927605509a0", + "pushdate": "2011-03-25 04:11:33", + "desc": "Backout changeset b97a060746f9 (Bug 620931 part 5) for causing bug 644790." + } + }, + { + "bug_id": 620931, + "inducing_commit": { + "node": "b9e6454362ef8a051ec8feb557fb2e2e4071c95e", + "pushdate": "2011-03-24 14:30:27", + "desc": "Bug 620931 part 3 - Allow GRE and XUL application to use omni.jar independently. r=bsmedberg\n\nWe now store two independent locations for an omni.jar, allowing GRE/XRE and\nXUL application to each have their own omni.jar. And since xulrunner setups\nare very independent from the XUL applications, we implement support for both\nomni.jar and non omni.jar cases in the same runtime, with the side effect of\nallowing to switch from one to the other manually without rebuilding the\nbinaries.\n\nWe let the mozilla::Omnijar API handle both cases, so that callers don't need\ntoo much work to support them.\n\nWe also make the preferences service load the same set of preferences in all\nthe various cases (unified vs. separate, omni.jar vs. no omni.jar).\n\nThe child process launcher for IPC is modified to pass the base directories\nneeded for the mozilla::Omnijar API initialization in the child process.\n\nFinally, the startupcache file name canonicalization is modified to separate\nAPP and GRE resources." + }, + "backout_commit": { + "node": "08d1aeeea82459579e29cf7e710ebfafa681daaf", + "pushdate": "2011-03-25 04:11:33", + "desc": "Backout changeset b9e6454362ef (Bug 620931 part 3) for causing bug 644790." + }, + "fixing_commit": { + "node": "1492b6e75639593efe4e45e153a34927605509a0", + "pushdate": "2011-03-25 04:11:33", + "desc": "Backout changeset b97a060746f9 (Bug 620931 part 5) for causing bug 644790." + } + }, + { + "bug_id": 620931, + "inducing_commit": { + "node": "9df6e8117fe03393d39e489e3ee2462f08735ab7", + "pushdate": "2011-03-24 14:30:27", + "desc": "Bug 620931 part 4 - Fix resource://app/ to always point to the same as resource:///. r=bsmedberg" + }, + "backout_commit": { + "node": "941d126f6dd2c70c4ecb0f4ddda5016a955df215", + "pushdate": "2011-03-25 04:11:33", + "desc": "Backout changeset 9df6e8117fe0 (Bug 620931 part 4) for causing bug 644790." + }, + "fixing_commit": { + "node": "1492b6e75639593efe4e45e153a34927605509a0", + "pushdate": "2011-03-25 04:11:33", + "desc": "Backout changeset b97a060746f9 (Bug 620931 part 5) for causing bug 644790." + } + }, + { + "bug_id": 610305, + "inducing_commit": { + "node": "c1a7c1bc1aebf0c45092426dfc317b9105238a5b", + "pushdate": "2011-04-21 08:13:26", + "desc": "Bug 610305: decom nsEventStateManager r=smaug" + }, + "backout_commit": { + "node": "be6f4759e82736e21e24e46d22701e7d90a71f91", + "pushdate": "2011-04-21 08:13:26", + "desc": "Backed out changeset c1a7c1bc1aeb due to busted build." + }, + "fixing_commit": { + "node": "aaa99fe3ee29e21313a574dc9795d2ab825dc0e3", + "pushdate": "2011-04-22 13:27:10", + "desc": "Bug 610305: decom nsEventStateManager r=smaug" + } + }, + { + "bug_id": 650723, + "inducing_commit": { + "node": "d34dd7156b4dd893a20cb0dc8c4c97ec8f5098a9", + "pushdate": "2011-05-09 05:59:46", + "desc": "Bug 650723. Add ClearType parameter data to about:support. r=gavin,jrmuizel" + }, + "backout_commit": { + "node": "34e7b390a99bd4cf400171c42cd2161cac46eab1", + "pushdate": "2011-05-09 06:25:30", + "desc": "Backed out changeset d34dd7156b4d" + }, + "fixing_commit": { + "node": "0ed4f22648e3e1811f84223e5cbea0cf1ad4bfcc", + "pushdate": "2011-05-11 00:34:01", + "desc": "Bug 650723. Add ClearType parameter data to about:support. r=gavin,jrmuizel" + } + }, + { + "bug_id": 668953, + "inducing_commit": { + "node": "57446cb82caaa789542c3c90c767d8eb8f15bd4a", + "pushdate": "2011-08-06 09:36:25", + "desc": "Bug 668953 - [10.7] Support new back/forward gestures in OSX Lion; r=smichaud" + }, + "backout_commit": { + "node": "9c74f840758b8dca339d7b265e7c4f3ad40e8d3f", + "pushdate": "2011-08-06 09:36:25", + "desc": "Backout changesets 57446cb82caa, 1c136ef5cac2 due to Tp5 regression on OSX." + }, + "fixing_commit": { + "node": "1ca50e8b3d3780837065b31bae3fc75cc7ef3da5", + "pushdate": "2011-08-08 12:19:50", + "desc": "Bug 668953 - [10.7] Support new back/forward gestures in OSX Lion; r=smichaud" + } + }, + { + "bug_id": 672756, + "inducing_commit": { + "node": "884efa9dcbf9895c228e46bff9881dc428e124aa", + "pushdate": "2011-08-15 14:34:51", + "desc": "Bug 672756 - Allow to populate startupcache on xulrunner applications built with the SDK. r=ted" + }, + "backout_commit": { + "node": "22af0a57b683f4be8a8f128107bb5ccb33db36f4", + "pushdate": "2011-08-15 14:34:51", + "desc": "Backed out changeset 884efa9dcbf9 due to OSX debug orange" + }, + "fixing_commit": { + "node": "85b5d609a73cddbf7f09e4b708266975c24e7731", + "pushdate": "2011-08-16 10:55:53", + "desc": "Bug 672756 - Allow to populate startupcache on xulrunner applications built with the SDK. r=ted" + } + }, + { + "bug_id": 90268, + "inducing_commit": { + "node": "ab1cbc8a9d51a6fe320b62819c2a5bbce95c5cee", + "pushdate": "2011-08-29 07:34:19", + "desc": "Bug 90268: Required widget changes. Allow setting parent to NULL and add SetEventCallback to nsIWidget. r=roc r=karl" + }, + "backout_commit": { + "node": "a6e7760f2f3682ddd8310bc75af718dcc2b20486", + "pushdate": "2011-08-30 06:14:26", + "desc": "Backed out changeset ab1cbc8a9d51, bug 90268. r=josh" + }, + "fixing_commit": { + "node": "d5a0f6ad8bbd11e72a0ef0a524ecff7b4cdc7244", + "pushdate": "2011-08-30 06:14:26", + "desc": "Backed out changeset 33031c875984. Bug 90268. r=josh" + } + }, + { + "bug_id": 685258, + "inducing_commit": { + "node": "8e9aea2febedf77752562fd7ab21ddccfae022ea", + "pushdate": "2011-09-08 20:54:46", + "desc": "Bug 685258 - Pulse audio backend does not check provided playback and crashes r=derf" + }, + "backout_commit": { + "node": "f4e1e9d38bc0b80983ca2fecd0c20f45360308b7", + "pushdate": "2011-09-08 20:54:46", + "desc": "Backout changesets 8e9aea2febed, 604544452285 and 9f150c4e1a48 because of Mac OS X 32-bit reftest orange" + }, + "fixing_commit": { + "node": "8e9aea2febedf77752562fd7ab21ddccfae022ea", + "pushdate": "2011-09-08 20:54:46", + "desc": "Bug 685258 - Pulse audio backend does not check provided playback and crashes r=derf" + } + }, + { + "bug_id": 429592, + "inducing_commit": { + "node": "52b481205766e583307c5de01d96079133487735", + "pushdate": "2011-10-25 10:38:18", + "desc": "Bug 429592 part A - allow AnnotateCrashReport to be called from off the main thread in the chrome process, r?ted" + }, + "backout_commit": { + "node": "7c5f9e6c34c2f5a1cd6d1296ad358e2c835f6a15", + "pushdate": "2011-10-25 10:38:18", + "desc": "Back out 52b481205766 (Bug 429592) for Linux64 opt orange" + }, + "fixing_commit": { + "node": "35cfc34bdc44efa5d76bff56a293e6d5e7b8504c", + "pushdate": "2011-10-25 10:38:18", + "desc": "Back out 564e841f1f57 (Bug 429592) for Linux64 opt orange" + } + }, + { + "bug_id": 700199, + "inducing_commit": { + "node": "34b8fe0283576a3771e804b6d0c1d609eb1013c1", + "pushdate": "2011-12-08 15:13:43", + "desc": "Bug 700199 EventUtils.js should use synthesized events for sendKey(), sendChar() and sendString() rather than untrusted events r=ehsan+smaug+enndeakin+dolske" + }, + "backout_commit": { + "node": "0c0b9724b1ada8550c34805926e57f41195250b4", + "pushdate": "2011-12-08 15:13:43", + "desc": "backout 34b8fe028357" + }, + "fixing_commit": { + "node": "f720be43486d77d085411307852b7702c00a0960", + "pushdate": "2011-12-17 17:01:50", + "desc": "Bug 700199 EventUtils.js should use synthesized events for sendKey(), sendChar() and sendString() rather than untrusted events r=smaug+ehsan+dolske+enndeakin" + } + }, + { + "bug_id": 497543, + "inducing_commit": { + "node": "9883a9f66cf04ebe9b2c1b885954d02f97612278", + "pushdate": "2012-01-19 23:24:40", + "desc": "Bug 497543 - Part 1 - JavaScript Module; r=dietrich" + }, + "backout_commit": { + "node": "3f877d406d8a54e8849dad5e7f763b0da7490602", + "pushdate": "2012-01-20 13:34:45", + "desc": "Backed out changeset 9883a9f66cf0 (bug 497543)" + }, + "fixing_commit": { + "node": "f3cf8f1827a2da608e3ed76a1f64a1a520e3ab05", + "pushdate": "2012-01-20 13:34:45", + "desc": "Backed out changeset f38769f877d6 (bug 497543)" + } + }, + { + "bug_id": 497543, + "inducing_commit": { + "node": "cc55d047eff997e7ad704036ec24e0f66d5ab37d", + "pushdate": "2012-01-19 23:24:40", + "desc": "Bug 497543 - Part 2 - moz-page-thumb:// Protocol and Channel; r=mak" + }, + "backout_commit": { + "node": "97973b8c04be141e4d6a4cb253adbb7dc45af917", + "pushdate": "2012-01-20 13:34:45", + "desc": "Backed out changeset cc55d047eff9 (bug 497543)" + }, + "fixing_commit": { + "node": "f3cf8f1827a2da608e3ed76a1f64a1a520e3ab05", + "pushdate": "2012-01-20 13:34:45", + "desc": "Backed out changeset f38769f877d6 (bug 497543)" + } + }, + { + "bug_id": 497543, + "inducing_commit": { + "node": "13e27937167b8693fa4fe1b0f6d61746b5c12d4e", + "pushdate": "2012-01-19 23:24:40", + "desc": "Bug 497543 - Part 3 - Browser integration; r=dao" + }, + "backout_commit": { + "node": "43588ad492ac9f117d63f90210c7ab421783c0ce", + "pushdate": "2012-01-20 13:34:45", + "desc": "Backed out changeset 13e27937167b (bug 497543)" + }, + "fixing_commit": { + "node": "f3cf8f1827a2da608e3ed76a1f64a1a520e3ab05", + "pushdate": "2012-01-20 13:34:45", + "desc": "Backed out changeset f38769f877d6 (bug 497543)" + } + }, + { + "bug_id": 455553, + "inducing_commit": { + "node": "27a45008fc1237187b77167f30d71a1e2ab1f75d", + "pushdate": "2012-01-20 13:34:45", + "desc": "Bug 455553 - Part 1 - XUL/HTML Page and Scripts; r=blair,dietrich" + }, + "backout_commit": { + "node": "0cbcaaf2d512d77e1f3bc497482325ea4b6a2dd9", + "pushdate": "2012-01-20 13:34:45", + "desc": "Backed out changeset 27a45008fc12 (bug 455553)" + }, + "fixing_commit": { + "node": "84c998ef1689174fa1b1d26b4b95066963b90ac8", + "pushdate": "2012-01-20 13:34:45", + "desc": "Backed out changeset c389d719d4ec (bug 455553)" + } + }, + { + "bug_id": 455553, + "inducing_commit": { + "node": "ce8a25a34c2a43eae72f62145ea6d56d0cfce658", + "pushdate": "2012-01-20 13:34:45", + "desc": "Bug 455553 - Part 2 - Assets / CSS / Images; r=dao" + }, + "backout_commit": { + "node": "816b9e460e28ce232ba2cdb6ea814bf474143c02", + "pushdate": "2012-01-20 13:34:45", + "desc": "Backed out changeset ce8a25a34c2a (bug 455553)" + }, + "fixing_commit": { + "node": "84c998ef1689174fa1b1d26b4b95066963b90ac8", + "pushdate": "2012-01-20 13:34:45", + "desc": "Backed out changeset c389d719d4ec (bug 455553)" + } + }, + { + "bug_id": 455553, + "inducing_commit": { + "node": "6fd9a7eb3b011e07b7b6d093095fc5dd85a90c52", + "pushdate": "2012-01-20 13:34:45", + "desc": "Bug 455553 - Part 3 - about:newtab integration; r=gavin" + }, + "backout_commit": { + "node": "6fd01ecaaa3721d263dfc79cd7efc626b7f0c076", + "pushdate": "2012-01-20 13:34:45", + "desc": "Backed out changeset 6fd9a7eb3b01 (bug 455553)" + }, + "fixing_commit": { + "node": "84c998ef1689174fa1b1d26b4b95066963b90ac8", + "pushdate": "2012-01-20 13:34:45", + "desc": "Backed out changeset c389d719d4ec (bug 455553)" + } + }, + { + "bug_id": 455553, + "inducing_commit": { + "node": "34e078df2ed6616b203661efcaff990990e2e5a9", + "pushdate": "2012-01-20 13:34:45", + "desc": "Bug 455553 - Part 4 - Shared Module; r=blair,mak,dietrich" + }, + "backout_commit": { + "node": "e3a59e6affd3cea57240954850a2d3183c2d850d", + "pushdate": "2012-01-20 13:34:45", + "desc": "Backed out changeset 34e078df2ed6 (bug 455553)" + }, + "fixing_commit": { + "node": "84c998ef1689174fa1b1d26b4b95066963b90ac8", + "pushdate": "2012-01-20 13:34:45", + "desc": "Backed out changeset c389d719d4ec (bug 455553)" + } + }, + { + "bug_id": 455553, + "inducing_commit": { + "node": "34157f4059bac86d59c587d861e3e2173fd062ad", + "pushdate": "2012-01-26 07:46:03", + "desc": "Bug 455553 - Part 1 - XUL/HTML Page and Scripts; r=blair,dietrich" + }, + "backout_commit": { + "node": "d1cdc35292f19c9c9ca1563871e694dfa3e4f1e6", + "pushdate": "2012-01-26 17:29:59", + "desc": "Backed out changeset 34157f4059ba (bug 455553)" + }, + "fixing_commit": { + "node": "3677a84a568b1d65383d83e8abc74db5041ff84c", + "pushdate": "2012-01-26 17:29:59", + "desc": "Backed out changeset 38eda0c8b0fd (bug 455553)" + } + }, + { + "bug_id": 455553, + "inducing_commit": { + "node": "3f30da5d0bc30bfd7142b9a3c8b7145f24d2d16b", + "pushdate": "2012-01-26 07:46:03", + "desc": "Bug 455553 - Part 2 - Assets / CSS / Images; r=dao" + }, + "backout_commit": { + "node": "8d1334baf2c1b9d4e5a1a5d2daaaa1d04e17c843", + "pushdate": "2012-01-26 17:29:59", + "desc": "Backed out changeset 3f30da5d0bc3 (bug 455553)" + }, + "fixing_commit": { + "node": "3677a84a568b1d65383d83e8abc74db5041ff84c", + "pushdate": "2012-01-26 17:29:59", + "desc": "Backed out changeset 38eda0c8b0fd (bug 455553)" + } + }, + { + "bug_id": 455553, + "inducing_commit": { + "node": "746adaa9c9da7d82a3bf6615123d56f0967c2d55", + "pushdate": "2012-01-26 07:46:03", + "desc": "Bug 455553 - Part 3 - about:newtab integration; r=fryn,gavin" + }, + "backout_commit": { + "node": "02512dac94c9e2efaa0560388b6e3dd92bffed2c", + "pushdate": "2012-01-26 17:29:59", + "desc": "Backed out changeset 746adaa9c9da (bug 455553)" + }, + "fixing_commit": { + "node": "3677a84a568b1d65383d83e8abc74db5041ff84c", + "pushdate": "2012-01-26 17:29:59", + "desc": "Backed out changeset 38eda0c8b0fd (bug 455553)" + } + }, + { + "bug_id": 455553, + "inducing_commit": { + "node": "95143a881557a97de2e7f4a342d1c669656d3be3", + "pushdate": "2012-01-26 07:46:03", + "desc": "Bug 455553 - Part 4 - Shared Module; r=blair,mak,dietrich" + }, + "backout_commit": { + "node": "330a6839466e51946209f8c67881dd7c510b2b8e", + "pushdate": "2012-01-26 17:29:59", + "desc": "Backed out changeset 95143a881557 (bug 455553)" + }, + "fixing_commit": { + "node": "3677a84a568b1d65383d83e8abc74db5041ff84c", + "pushdate": "2012-01-26 17:29:59", + "desc": "Backed out changeset 38eda0c8b0fd (bug 455553)" + } + }, + { + "bug_id": 734691, + "inducing_commit": { + "node": "a76566398d36a8768f4c397bb2e835cbedbfbded", + "pushdate": "2012-03-12 02:41:18", + "desc": "Bug 734691 - Part 1: Rename Stack/Profile to imply their thread specific. r=mstange" + }, + "backout_commit": { + "node": "801514b8c35f1fa3968933122e2b7ad947940636", + "pushdate": "2012-03-12 02:41:18", + "desc": "Backout changeset a76566398d36" + }, + "fixing_commit": { + "node": "16e0066edea646a7e22c88f9dc0815ef7e3edb31", + "pushdate": "2012-03-13 10:17:55", + "desc": "Bug 734691 - Rename Stack/Profile to imply their thread specific. r=mstange" + } + }, + { + "bug_id": 734691, + "inducing_commit": { + "node": "5f5fc6a1133e42289efc32e32de6068d44c7b003", + "pushdate": "2012-03-12 02:41:18", + "desc": "Bug 734691 - Part 2: Move Stack to ThreadProfile since it's thread specific. r=mstange" + }, + "backout_commit": { + "node": "4db15a238ba4eeb53890f9d88b9e074051239ba7", + "pushdate": "2012-03-12 02:41:18", + "desc": "Backed out changeset 5f5fc6a1133e" + }, + "fixing_commit": { + "node": "16e0066edea646a7e22c88f9dc0815ef7e3edb31", + "pushdate": "2012-03-13 10:17:55", + "desc": "Bug 734691 - Rename Stack/Profile to imply their thread specific. r=mstange" + } + }, + { + "bug_id": 607417, + "inducing_commit": { + "node": "d1a44d2ec5c36f19fe78d2a982065754bd0d91ba", + "pushdate": "2012-05-24 14:48:49", + "desc": "Bug 607417 - Fix reverse translation of shadow layer clip rects. r=\n\nWhen asynchronous scrolling happens and the translation is compensated for,\nthis was incorrectly applied to the clip rects of shadow layers." + }, + "backout_commit": { + "node": "856e995bc57300dd5e5d18f0f121dbcafce640cd", + "pushdate": "2012-05-24 14:48:49", + "desc": "Backout d1a44d2ec5c3 due to missing r=" + }, + "fixing_commit": { + "node": "1fa2ea5986524db86ac7eeab79b4be76e10a44a3", + "pushdate": "2012-05-24 14:48:49", + "desc": "Bug 607417 - Reconcile async scrolling for fixed position layers. r=ajuma\n\nUntranslate fixed position layers when doing async scrolling so that they don't\njump about as content re-renders them in the correct place." + } + }, + { + "bug_id": 711793, + "inducing_commit": { + "node": "25663e7d7f56f5c0b085e470d29ab49e29e7a1c2", + "pushdate": "2012-06-29 07:42:23", + "desc": "Bug 711793 - Delay websocket reconnection after abnormal termination. r=mcmanus" + }, + "backout_commit": { + "node": "ebd6773acf2aa1bef051f0105704ade9d27faeaa", + "pushdate": "2012-06-29 07:42:23", + "desc": "Backed out changeset 25663e7d7f56 a=memory leak" + }, + "fixing_commit": { + "node": "25663e7d7f56f5c0b085e470d29ab49e29e7a1c2", + "pushdate": "2012-06-29 07:42:23", + "desc": "Bug 711793 - Delay websocket reconnection after abnormal termination. r=mcmanus" + } + }, + { + "bug_id": 706179, + "inducing_commit": { + "node": "f4f5189b1d0ca5b0c3d53d710c886a00cad1fdd7", + "pushdate": "2012-07-24 09:54:00", + "desc": "Bug 706179: Add support for animations to the Layers API r=roc, dbaron, cjones" + }, + "backout_commit": { + "node": "442e36401b38aa8bc8e8889c973503d4e0ee38cb", + "pushdate": "2012-07-24 09:54:00", + "desc": "Back out f4f5189b1d0c, 3b4f0606c547, b8a5a1ab8a5f, 5078933d6954, 7e0260c45de9 (bug 768440, bug 755084, bug 706179) because of reftest failures" + }, + "fixing_commit": { + "node": "876726b632c04fec7ea5b726a9aad030290fb672", + "pushdate": "2012-07-26 12:04:56", + "desc": "Bug 706179: Add support for animations to the Layers API r=roc, dbaron, cjones" + } + }, + { + "bug_id": 706179, + "inducing_commit": { + "node": "169ff207ed19ed2761784511ef568ee2764609a6", + "pushdate": "2012-07-28 21:54:39", + "desc": "Bug 706179: Add support for animations to the Layers API r=roc, dbaron, cjones" + }, + "backout_commit": { + "node": "9d2a7a8ca1c7a1440b9ab7cdbb7ab8a43449bf8d", + "pushdate": "2012-07-30 18:37:34", + "desc": "Backout 169ff207ed19, a34baed70c1b, f9ccdd490bd7, 39550ed860e6, 2194a2dd66b2, 908eb2e26843, a76e0a267f26 due to mobile viewport bustage (bug 778580)" + }, + "fixing_commit": { + "node": "a76e0a267f2673952a0e50952a56bac8aaaffbad", + "pushdate": "2012-07-28 21:54:39", + "desc": "Bug 706179 Part 2: Add a BaseTransform to layers r=roc" + } + }, + { + "bug_id": 775463, + "inducing_commit": { + "node": "e0e33c1c7c17aeff411248076b5280011a138d26", + "pushdate": "2012-07-28 21:54:39", + "desc": "Bug 775463: Recognize double tap gestures while still supporting single taps" + }, + "backout_commit": { + "node": "02d63f48e7526de741d9f02610ec9e8f53d0fa6d", + "pushdate": "2012-07-28 21:54:39", + "desc": "Backout e0e33c1c7c17 and 3d0fb7ac961a (bug 775463) due to bustage." + }, + "fixing_commit": { + "node": "3d0fb7ac961a4bcd988c3b5aa2d3f0a70f8e1962", + "pushdate": "2012-07-28 21:54:39", + "desc": "Bug 775463: Fix a mistake in a comment r=none DONTBUILD" + } + }, + { + "bug_id": 725966, + "inducing_commit": { + "node": "183decadb9acf6825a364dc18685a8e9eb72831a", + "pushdate": "2012-09-11 17:34:27", + "desc": "Bug 725966 - Fast path for typeof x == y. r=jandem" + }, + "backout_commit": { + "node": "fdf520ad7dbc7528a11f361249b639299ae1af1f", + "pushdate": "2012-09-11 17:34:27", + "desc": "backout 183decadb9ac" + }, + "fixing_commit": { + "node": "6c77750e3b502f219285c7113dab16228fe24081", + "pushdate": "2021-10-15 09:50:04", + "desc": "Backed out 10 changesets (bug 725966) for causing build bustages on CodeGenerator.cpp.\n\nBacked out changeset 1708b6a2373d (bug 725966)\nBacked out changeset d085abe7302d (bug 725966)\nBacked out changeset d90d0eeda9a7 (bug 725966)\nBacked out changeset fc925bdde132 (bug 725966)\nBacked out changeset 7659142f5ede (bug 725966)\nBacked out changeset 5508f47f0571 (bug 725966)\nBacked out changeset 25723de19680 (bug 725966)\nBacked out changeset 5d8a68d1f36b (bug 725966)\nBacked out changeset 1b847f9f911a (bug 725966)\nBacked out changeset 0c2849b874cb (bug 725966)" + } + }, + { + "bug_id": 696045, + "inducing_commit": { + "node": "52120672ee11dd5bc24637f7e65cb072589e6d80", + "pushdate": "2012-09-12 20:51:15", + "desc": "Bug 696045 - Implement Mac backend for Battery API. r=BenWa, mounir" + }, + "backout_commit": { + "node": "d28e07f4bec6c16b32ae4743eaeeae2a9e2f6381", + "pushdate": "2012-09-12 20:51:15", + "desc": "Backout 52120672ee11 due to OSX opt bustage." + }, + "fixing_commit": { + "node": "294643a303c1b9fa4351a793406daf1ec7b8f0cf", + "pushdate": "2012-09-22 12:28:38", + "desc": "Bug 696045 - Implement Mac backend for Battery API. r=BenWa,mounir" + } + }, + { + "bug_id": 784375, + "inducing_commit": { + "node": "94f06c75c3b5c5f1138c87ad4af596f9243e453a", + "pushdate": "2012-10-16 08:09:24", + "desc": "Bug 784375: Add a preference to control maximum font size inflation ratio." + }, + "backout_commit": { + "node": "811a86ca567e7a2e2cff1fb072d72bf596767251", + "pushdate": "2012-10-16 08:09:24", + "desc": "Backout 94f06c75c3b5 for lack of reviewer." + }, + "fixing_commit": { + "node": "c4b7708e04f4f04c849faad9d1c90d1a7f360bd2", + "pushdate": "2012-10-16 08:09:24", + "desc": "Backout e52a16b96738 (Bug 784375) for oranges on OSX 10.8." + } + }, + { + "bug_id": 788073, + "inducing_commit": { + "node": "a5dbfe84e1783b3208a86f45235ff49a6e50b915", + "pushdate": "2012-10-19 14:23:49", + "desc": "Bug 788073 - Use platform touch fluffing on Android. r=kats" + }, + "backout_commit": { + "node": "e0d611217c39b7d10cd1e8be3a8acf24a9a8511a", + "pushdate": "2012-10-19 14:23:49", + "desc": "backout a5dbfe84e178 and 1adde03021f9" + }, + "fixing_commit": { + "node": "c8e8e389d84fc0171cf743938861613edbe6282c", + "pushdate": "2014-09-23 01:26:08", + "desc": "Bug 788073 - Use platform touch redirection. r=kats,wesj" + } + }, + { + "bug_id": 623380, + "inducing_commit": { + "node": "dd103ec4c44ba305cc5a08350e1352a7afcdb8ce", + "pushdate": "2013-02-20 12:07:46", + "desc": "b=623380 destroy XtClient child window on unrealize r=stransky" + }, + "backout_commit": { + "node": "e8c8d9373eba3573dfaaf5ce90419eb574ac4722", + "pushdate": "2013-02-20 12:07:46", + "desc": "Back out dd103ec4c44b through fba3a342a530 because of B2G test failures on a CLOSED TREE" + }, + "fixing_commit": { + "node": "caf862ef5cf2d5fd48c73d78fe9771be3fa748bb", + "pushdate": "2013-02-20 12:07:46", + "desc": "b=623380 destroy XtClient child window on unrealize r=stransky" + } + }, + { + "bug_id": 716140, + "inducing_commit": { + "node": "275cd395f9fadaa42da633e20780d39193d817db", + "pushdate": "2013-03-24 15:38:48", + "desc": "Bug 716140 - Implement multithreaded decoding using a thread pool. r=seth" + }, + "backout_commit": { + "node": "aab4a115f06c7ef349c357c5e18c6868721ccc97", + "pushdate": "2013-03-25 00:58:18", + "desc": "backout 275cd395f9fa and 9e4b22851976 bug 716140 for breaking linux tp on a CLOSED TREE" + }, + "fixing_commit": { + "node": "9e4b22851976625f7e4d44b01a18f6400040903d", + "pushdate": "2013-03-24 15:38:48", + "desc": "Bug 716140 - Control multithreaded encoding with a pref. r=seth" + } + }, + { + "bug_id": 842130, + "inducing_commit": { + "node": "9eb6532ccfc3f0072dbaac5e60a6c62e3b587e11", + "pushdate": "2013-03-30 23:31:27", + "desc": "Bug 842130 - Fix fullscreen video which currently isn't working. r=mbrubeck" + }, + "backout_commit": { + "node": "85eedb253f255e287b80074668a8675435577529", + "pushdate": "2013-03-30 23:31:27", + "desc": "Backout 9eb6532ccfc3 for bustage on some slaves. r=me" + }, + "fixing_commit": { + "node": "0cfcf56f7b4ef5d80fc4d952f015b09be46c8264", + "pushdate": "2013-04-05 00:57:47", + "desc": "Bug 842130 - Fix fullscreen video which currently isn't working. r=mbrubeck" + } + }, + { + "bug_id": 734691, + "inducing_commit": { + "node": "cb37a2ae805f0793efcf445a1e886ce4efac6aa4", + "pushdate": "2013-04-11 19:19:41", + "desc": "Bug 734691 - Add multi-thread support to profiler r=benwa" + }, + "backout_commit": { + "node": "5f7ef72c2c000c44f6aafd3ec2e1506e51942a74", + "pushdate": "2013-04-11 19:19:41", + "desc": "Backout cb37a2ae805f on a CLOSED TREE" + }, + "fixing_commit": { + "node": "e92a339cb4bc004681b6f1b9659518c16d2101e2", + "pushdate": "2013-04-17 01:07:40", + "desc": "Backed out 2 changesets (bug 734691) for leaks.\n\nBacked out changeset ba88d9730af6 (bug 734691)\nBacked out changeset 7d2fbf7b0372 (bug 734691)" + } + }, + { + "bug_id": 734691, + "inducing_commit": { + "node": "e090321a025cd2c232de860feccc21ee686c425c", + "pushdate": "2013-04-11 19:19:41", + "desc": "Bug 734691 - Port multi-thread support to win/mac. r=snorp,smaug" + }, + "backout_commit": { + "node": "ee168b506dd7f70145327b585e998cbdf3e231fa", + "pushdate": "2013-04-11 19:19:41", + "desc": "Backout e090321a025c" + }, + "fixing_commit": { + "node": "e92a339cb4bc004681b6f1b9659518c16d2101e2", + "pushdate": "2013-04-17 01:07:40", + "desc": "Backed out 2 changesets (bug 734691) for leaks.\n\nBacked out changeset ba88d9730af6 (bug 734691)\nBacked out changeset 7d2fbf7b0372 (bug 734691)" + } + }, + { + "bug_id": 734691, + "inducing_commit": { + "node": "f7814e2bc3dd96b20e0ac154b107ba49857ced10", + "pushdate": "2013-04-11 19:19:41", + "desc": "Bug 734691 - Bustage fix on a CLOSED TREE. r=bustage" + }, + "backout_commit": { + "node": "c4787f90e6b877f9467fbf2284d7f7b3e5ff7843", + "pushdate": "2013-04-11 19:19:41", + "desc": "Backout f7814e2bc3dd" + }, + "fixing_commit": { + "node": "e92a339cb4bc004681b6f1b9659518c16d2101e2", + "pushdate": "2013-04-17 01:07:40", + "desc": "Backed out 2 changesets (bug 734691) for leaks.\n\nBacked out changeset ba88d9730af6 (bug 734691)\nBacked out changeset 7d2fbf7b0372 (bug 734691)" + } + }, + { + "bug_id": 856361, + "inducing_commit": { + "node": "0ad406a69f2cb08e5453527b5051db038b373c4d", + "pushdate": "2013-07-29 14:13:44", + "desc": "Bug 856361. Part 1: Fix documentation of MediaInputPort flags. r=jesup" + }, + "backout_commit": { + "node": "47f46080685f1a6d6058198b4b11d00e2c82aa51", + "pushdate": "2013-07-29 14:13:44", + "desc": "Backed out changeset 0ad406a69f2c (bug 856361) for mochitest-1 failures in test_mediaElementAudioSourceNode.html on a CLOSED TREE" + }, + "fixing_commit": { + "node": "6946b8d86502ef8994d309dcc4925f12529e41d9", + "pushdate": "2013-07-29 14:13:44", + "desc": "Backed out changeset f7496fddb076 (bug 856361)" + } + }, + { + "bug_id": 856361, + "inducing_commit": { + "node": "3f2c0edda4c265a9e34e791fa527d682b8de7be1", + "pushdate": "2013-07-29 14:13:44", + "desc": "Bug 856361. Part 2: Block data from a non-same-origin media resource entering a MediaStream from a media element. r=cpearce" + }, + "backout_commit": { + "node": "4382f83efcaf03d82dcab6dd122410daab3ccbda", + "pushdate": "2013-07-29 14:13:44", + "desc": "Backed out changeset 3f2c0edda4c2 (bug 856361)" + }, + "fixing_commit": { + "node": "6946b8d86502ef8994d309dcc4925f12529e41d9", + "pushdate": "2013-07-29 14:13:44", + "desc": "Backed out changeset f7496fddb076 (bug 856361)" + } + }, + { + "bug_id": 856361, + "inducing_commit": { + "node": "f211d675479689dc2b86ddb6ee3af4cee2e83e03", + "pushdate": "2013-07-29 14:13:44", + "desc": "Bug 856361. Part 3: Refactor AudioNodeStream to create ComputeFinalOuputChannelCount, AccumulateInputChunk and AdvanceOutputSegment, and make AudioNodeStreams be treated as always consumed by the MediaStreamGraph. r=ehsan" + }, + "backout_commit": { + "node": "fab0e9b04d8da8a58c71a0f7168650df1ae9d01c", + "pushdate": "2013-07-29 14:13:44", + "desc": "Backed out changeset f211d6754796 (bug 856361)" + }, + "fixing_commit": { + "node": "6946b8d86502ef8994d309dcc4925f12529e41d9", + "pushdate": "2013-07-29 14:13:44", + "desc": "Backed out changeset f7496fddb076 (bug 856361)" + } + }, + { + "bug_id": 856361, + "inducing_commit": { + "node": "2af84c01ac0cccad0d4003bfb9983d6bd2369d62", + "pushdate": "2013-07-29 14:13:44", + "desc": "Bug 856361. Part 4: Create AudioNodeExternalInputStream. r=ehsan" + }, + "backout_commit": { + "node": "0f30f29ffa1f2ea92d93e7328d978a2b029146e1", + "pushdate": "2013-07-29 14:13:44", + "desc": "Backed out changeset 2af84c01ac0c (bug 856361)" + }, + "fixing_commit": { + "node": "6946b8d86502ef8994d309dcc4925f12529e41d9", + "pushdate": "2013-07-29 14:13:44", + "desc": "Backed out changeset f7496fddb076 (bug 856361)" + } + }, + { + "bug_id": 856361, + "inducing_commit": { + "node": "9e90a81b9e37371a8c209ba1675d3391405a1afe", + "pushdate": "2013-07-29 14:13:44", + "desc": "Bug 856361. Part 5: Implement MediaStreamAudioSourceNode. r=ehsan" + }, + "backout_commit": { + "node": "6e72a4e894e14bf2b6fd7a42d4aeb3d68b5357a7", + "pushdate": "2013-07-29 14:13:44", + "desc": "Backed out changeset 9e90a81b9e37 (bug 856361)" + }, + "fixing_commit": { + "node": "6946b8d86502ef8994d309dcc4925f12529e41d9", + "pushdate": "2013-07-29 14:13:44", + "desc": "Backed out changeset f7496fddb076 (bug 856361)" + } + }, + { + "bug_id": 856361, + "inducing_commit": { + "node": "3d6f6f06da5ebd710e31ea1a0f5d5b84434c47ab", + "pushdate": "2013-07-29 14:13:44", + "desc": "Bug 856361. Part 6: Make MediaStreamAudioSourceNode keep its DOMMediaStream alive, and make the DOMMediaStream keep the MediaStreamAudioSourceNode alive. r=ehsan" + }, + "backout_commit": { + "node": "ebd005b9e9d742918b6557b05ce7e18cae4c2175", + "pushdate": "2013-07-29 14:13:44", + "desc": "Backed out changeset 3d6f6f06da5e (bug 856361)" + }, + "fixing_commit": { + "node": "6946b8d86502ef8994d309dcc4925f12529e41d9", + "pushdate": "2013-07-29 14:13:44", + "desc": "Backed out changeset f7496fddb076 (bug 856361)" + } + }, + { + "bug_id": 856361, + "inducing_commit": { + "node": "3fbe86d67b6ade0589f7feff72bface2eb461a8f", + "pushdate": "2013-07-29 14:13:44", + "desc": "Bug 856361. Part 7: Address review comment. r=ehsan" + }, + "backout_commit": { + "node": "c43900741e9a079cb960877aa4ca4441b6dcee0a", + "pushdate": "2013-07-29 14:13:44", + "desc": "Backed out changeset 3fbe86d67b6a (bug 856361)" + }, + "fixing_commit": { + "node": "6946b8d86502ef8994d309dcc4925f12529e41d9", + "pushdate": "2013-07-29 14:13:44", + "desc": "Backed out changeset f7496fddb076 (bug 856361)" + } + }, + { + "bug_id": 856361, + "inducing_commit": { + "node": "446410b692a094ab61a130ab194ae12688506948", + "pushdate": "2013-07-29 14:13:44", + "desc": "Bug 856361 and bug 855568 require a clobber on Windows due to bug 890744" + }, + "backout_commit": { + "node": "31453209a88adb6a30a84167f7cf4e5969cee414", + "pushdate": "2013-07-29 14:13:44", + "desc": "Backed out changeset 446410b692a0 (bug 856361)" + }, + "fixing_commit": { + "node": "6946b8d86502ef8994d309dcc4925f12529e41d9", + "pushdate": "2013-07-29 14:13:44", + "desc": "Backed out changeset f7496fddb076 (bug 856361)" + } + }, + { + "bug_id": 788073, + "inducing_commit": { + "node": "bf050e52851f1fcd9037a0bf1700b829e92848a8", + "pushdate": "2013-08-06 21:06:42", + "desc": "Bug 788073 - Use platform touch fluffing on Android. r=kats" + }, + "backout_commit": { + "node": "1fb5d14e8348b16014fafa5d746e0a8823df8187", + "pushdate": "2013-08-06 21:06:42", + "desc": "Backed out 2 changesets (bug 901151, bug 788073) for suspected robocop-2 orange.\n\nBacked out changeset 6e7a45127e07 (bug 901151)\nBacked out changeset bf050e52851f (bug 788073)" + }, + "fixing_commit": { + "node": "c8e8e389d84fc0171cf743938861613edbe6282c", + "pushdate": "2014-09-23 01:26:08", + "desc": "Bug 788073 - Use platform touch redirection. r=kats,wesj" + } + }, + { + "bug_id": 853388, + "inducing_commit": { + "node": "b3afaf3b4f3a66fcc4da0c4f5119338f46c915ad", + "pushdate": "2013-08-09 06:50:39", + "desc": "Bug 853388: Save and load XPIProvider state to/from a JSON file; r=unfocused" + }, + "backout_commit": { + "node": "917f586dd1422be9869bfea5c6c2cc31cc9dc8b9", + "pushdate": "2013-08-09 06:50:39", + "desc": "Backed out changeset b3afaf3b4f3a (bug 853388)" + }, + "fixing_commit": { + "node": "960ecd36a7147c7d566eb0c9986c15ace3f1c425", + "pushdate": "2013-08-09 06:50:39", + "desc": "Backed out changeset 607b35c777f0 (bug 853388)" + } + }, + { + "bug_id": 853388, + "inducing_commit": { + "node": "5861a7f63f25374b5438f42ff10a316e5b3fdada", + "pushdate": "2013-08-09 06:50:39", + "desc": "Bug 853388: Upgrade existing SQLITE databases to JSON; r=unfocused" + }, + "backout_commit": { + "node": "2467fe99d9b0dde6b847c1cdb4cb191d719850e2", + "pushdate": "2013-08-09 06:50:39", + "desc": "Backed out changeset 5861a7f63f25 (bug 853388)" + }, + "fixing_commit": { + "node": "960ecd36a7147c7d566eb0c9986c15ace3f1c425", + "pushdate": "2013-08-09 06:50:39", + "desc": "Backed out changeset 607b35c777f0 (bug 853388)" + } + }, + { + "bug_id": 853388, + "inducing_commit": { + "node": "ee904d911f2d828b13beff5e3893c99cff073f4d", + "pushdate": "2013-08-09 06:50:39", + "desc": "Bug 853388: Remove transaction model of database flush control and implement async save of database; r=unfocused" + }, + "backout_commit": { + "node": "59a3d59d9fb7db15b980b8cdefec744ca957c799", + "pushdate": "2013-08-09 06:50:39", + "desc": "Backed out changeset ee904d911f2d (bug 853388)" + }, + "fixing_commit": { + "node": "960ecd36a7147c7d566eb0c9986c15ace3f1c425", + "pushdate": "2013-08-09 06:50:39", + "desc": "Backed out changeset 607b35c777f0 (bug 853388)" + } + }, + { + "bug_id": 853388, + "inducing_commit": { + "node": "f3cf78d7e62dd8e21a0860ed3bd11259a00774f3", + "pushdate": "2013-08-09 06:50:39", + "desc": "Bug 853388: Trigger XPI database conversion from SQLITE based on schema version preference; r=unfocused" + }, + "backout_commit": { + "node": "a64c1ad76ba1b5e3b2631f86c7ae679eee78e9e3", + "pushdate": "2013-08-09 06:50:39", + "desc": "Backed out changeset f3cf78d7e62d (bug 853388)" + }, + "fixing_commit": { + "node": "960ecd36a7147c7d566eb0c9986c15ace3f1c425", + "pushdate": "2013-08-09 06:50:39", + "desc": "Backed out changeset 607b35c777f0 (bug 853388)" + } + }, + { + "bug_id": 853388, + "inducing_commit": { + "node": "40c48d65e38287193f978193268b10cbe9a051f1", + "pushdate": "2013-08-09 06:50:39", + "desc": "Bug 853388: Load JSON database asynchronously outside of startup; r=unfocused" + }, + "backout_commit": { + "node": "bc2cb7f532f2fee494a5c9ef68407f9c2c0a0b52", + "pushdate": "2013-08-09 06:50:39", + "desc": "Backed out changeset 40c48d65e382 (bug 853388)" + }, + "fixing_commit": { + "node": "960ecd36a7147c7d566eb0c9986c15ace3f1c425", + "pushdate": "2013-08-09 06:50:39", + "desc": "Backed out changeset 607b35c777f0 (bug 853388)" + } + }, + { + "bug_id": 853388, + "inducing_commit": { + "node": "74673d1b1718167b95069ab65d5e55ed7bc329f8", + "pushdate": "2013-08-11 07:28:28", + "desc": "Bug 853388: Upgrade existing SQLITE databases to JSON" + }, + "backout_commit": { + "node": "d673c2622b84c67b4f2aa97548e60b6fdc0ea99d", + "pushdate": "2013-08-11 07:28:28", + "desc": "Back out 74673d1b1718 for missing reviewer" + }, + "fixing_commit": { + "node": "acba57ca53b8eea32719dffb07b5cfb31908332c", + "pushdate": "2013-08-11 07:28:28", + "desc": "Bug 853388: Upgrade existing SQLITE databases to JSON; r=unfocused" + } + }, + { + "bug_id": 853388, + "inducing_commit": { + "node": "2015a41cdf709050c5c140ff3135ed43f82b6ef6", + "pushdate": "2013-08-11 07:28:28", + "desc": "Bug 853388: Remove transaction model of database flush control and implement async save of database" + }, + "backout_commit": { + "node": "12a2e6d1fe972bf3f82c205fa80f2bea6a582bc7", + "pushdate": "2013-08-11 07:28:28", + "desc": "Back out 2015a41cdf70 for missing reviewer" + }, + "fixing_commit": { + "node": "acba57ca53b8eea32719dffb07b5cfb31908332c", + "pushdate": "2013-08-11 07:28:28", + "desc": "Bug 853388: Upgrade existing SQLITE databases to JSON; r=unfocused" + } + }, + { + "bug_id": 853388, + "inducing_commit": { + "node": "816af0c07c46ab7b503127335276a06d8c06f44a", + "pushdate": "2013-08-11 07:28:28", + "desc": "Bug 853388: Trigger XPI database conversion from SQLITE based on schema version preference" + }, + "backout_commit": { + "node": "90b96c49dbfb7b6d28a9002ba9a38da6dd9e2648", + "pushdate": "2013-08-11 07:28:28", + "desc": "Back out 816af0c07c46 for missing reviewer" + }, + "fixing_commit": { + "node": "acba57ca53b8eea32719dffb07b5cfb31908332c", + "pushdate": "2013-08-11 07:28:28", + "desc": "Bug 853388: Upgrade existing SQLITE databases to JSON; r=unfocused" + } + }, + { + "bug_id": 853388, + "inducing_commit": { + "node": "629a3e8bd2b1850a62b6e5e0f37a0a7d17f7117b", + "pushdate": "2013-08-11 07:28:28", + "desc": "Bug 853388: Load JSON database asynchronously outside of startup" + }, + "backout_commit": { + "node": "28be87cdc09bf84a65f84d0c1482a150190a98cd", + "pushdate": "2013-08-11 07:28:28", + "desc": "Back out 629a3e8bd2b1 for missing reviewer" + }, + "fixing_commit": { + "node": "acba57ca53b8eea32719dffb07b5cfb31908332c", + "pushdate": "2013-08-11 07:28:28", + "desc": "Bug 853388: Upgrade existing SQLITE databases to JSON; r=unfocused" + } + }, + { + "bug_id": 853388, + "inducing_commit": { + "node": "20d83a7220ca36140d4edeb7444f05312c84d097", + "pushdate": "2013-08-11 07:28:28", + "desc": "Bug 853388: Keep trying to save JSON even if read or save fails" + }, + "backout_commit": { + "node": "3211c723d9fd81025c162d82cab75865d4506c6a", + "pushdate": "2013-08-11 07:28:28", + "desc": "Back out 20d83a7220ca for missing reviewer" + }, + "fixing_commit": { + "node": "acba57ca53b8eea32719dffb07b5cfb31908332c", + "pushdate": "2013-08-11 07:28:28", + "desc": "Bug 853388: Upgrade existing SQLITE databases to JSON; r=unfocused" + } + }, + { + "bug_id": 790923, + "inducing_commit": { + "node": "9a57f0f347e3fdb8b6b38c07eeaa5eff5a4049be", + "pushdate": "2013-08-13 10:34:53", + "desc": "Bug 790923: Adds seccomp-bfp sandboxing support for B2G. r=agal, r=dhylands, r=dkeeler, r=imelven, a=kang." + }, + "backout_commit": { + "node": "ca193619b815531e5afae4b4b596889cc3479aa1", + "pushdate": "2013-08-13 19:37:08", + "desc": "Backout changeset 9a57f0f347e3 for insufficient review." + }, + "fixing_commit": { + "node": "ded622a6ad19ed076e90aabae618c4966b1c20cb", + "pushdate": "2013-08-16 08:28:16", + "desc": "Bug 790923: Adds seccomp-bfp sandboxing support for B2G. r=khuey, r=gerv, r=agal, r=dhylands, r=keeler, r=imelven, a=kang." + } + }, + { + "bug_id": 847863, + "inducing_commit": { + "node": "7e8ff4c464f984bfc844bbf5aa1daaf20fc82097", + "pushdate": "2013-08-20 08:53:39", + "desc": "Bug 847863 - Part 6 of 8 - Convert tests for clearing recent history. r=paolo" + }, + "backout_commit": { + "node": "1d6bf2bd4003d23f9f726d85d2e75f83d26eae2a", + "pushdate": "2013-08-20 10:53:10", + "desc": "Backed out changeset 7e8ff4c464f9 (bug 847863) on suspicion of causing failures in browser_sanitize-timespans.js" + }, + "fixing_commit": { + "node": "363a8fb2e153f5fed60a025ea929db483fd91246", + "pushdate": "2013-08-20 10:53:10", + "desc": "Backed out changeset c2b4444ad9fd (bug 847863)" + } + }, + { + "bug_id": 847863, + "inducing_commit": { + "node": "36c994d08d1bc2e9781bf2f4ada7979444649447", + "pushdate": "2013-08-20 08:53:39", + "desc": "Bug 847863 - Part 7 of 8 - Convert Downloads Panel tests. r=enn" + }, + "backout_commit": { + "node": "0620357b639d3978179b0b5961fc1d75829491aa", + "pushdate": "2013-08-20 10:53:10", + "desc": "Backed out changeset 36c994d08d1b (bug 847863)" + }, + "fixing_commit": { + "node": "363a8fb2e153f5fed60a025ea929db483fd91246", + "pushdate": "2013-08-20 10:53:10", + "desc": "Backed out changeset c2b4444ad9fd (bug 847863)" + } + }, + { + "bug_id": 666816, + "inducing_commit": { + "node": "3734bebc9bfbd96727c6694248d21e16f7e6b8df", + "pushdate": "2013-09-13 20:07:11", + "desc": "Bug 666816 - Support findbar in e10s. r=mikedeboer" + }, + "backout_commit": { + "node": "32b0c06568e924acb9dad8b929719f8e4a39a29d", + "pushdate": "2013-09-13 20:07:11", + "desc": "backout changeset 3734bebc9bfb, because bad commit message and missed nit" + }, + "fixing_commit": { + "node": "295578d99074504f455e2b268c11df934b368d3a", + "pushdate": "2013-09-13 20:07:11", + "desc": "Bug 666816 - Refactor findbar to use a result listener and move most of the logic into a JSM. r=mikedeboer" + } + }, + { + "bug_id": 673875, + "inducing_commit": { + "node": "751bcb37cdb6404b8d4582aad47f96af8fcd4839", + "pushdate": "2013-10-11 19:39:21", + "desc": "Bug 673875: Reproduce the bounce behavior when reaching the top/bottom of the page on OSX. r=smichaud,felipe,masayuki" + }, + "backout_commit": { + "node": "1e935a380fb253c7bdb59c21914e392c33106258", + "pushdate": "2013-10-11 19:39:21", + "desc": "Backout 751bcb37cdb6 for bustage on a CLOSED TREE. r=me" + }, + "fixing_commit": { + "node": "b784c6dafa7da581970d474fe8f35685a140c5a1", + "pushdate": "2013-10-12 01:50:20", + "desc": "Bug 673875: Reproduce the bounce behavior when reaching the top/bottom of the page on OSX. r=smichaud,felipe,masayuki" + } + }, + { + "bug_id": 933882, + "inducing_commit": { + "node": "ce4011f334226ae21b698d04c30015102042ee73", + "pushdate": "2013-11-12 15:09:20", + "desc": "Bug 933882 - Invalidate JIT code instead of doing full GC on debug mode toggle. (r=bhackett)" + }, + "backout_commit": { + "node": "67f5d934127ce93057ad5c76d04af75337762434", + "pushdate": "2013-11-12 15:09:20", + "desc": "Backed out 7 changesets (bug 935228, bug 936143, bug 935470, bug 933882, bug 934799) for breaking ASAN browser-chrome tests on a CLOSED TREE\n\nBacked out changeset ae6f2151610f (bug 934799)\nBacked out changeset 82495f0c5da2 (bug 934799)\nBacked out changeset 77be849d81e7 (bug 935228)\nBacked out changeset 555e5759fe5f (bug 935470)\nBacked out changeset ce4011f33422 (bug 933882)\nBacked out changeset e13e98eab890 (bug 936143)\nBacked out changeset fb230c191a88 (bug 936143)" + }, + "fixing_commit": { + "node": "5c1d58a7dfc9747ae5e73d9ddf9cdfd2e9409e73", + "pushdate": "2013-11-15 03:19:28", + "desc": "Backed out changeset c6981912ff87 (bug 933882) as result of the discussion of Bug 937997 Comment 48 Trees Closed due to OOM on a CLOSED TREE" + } + }, + { + "bug_id": 933882, + "inducing_commit": { + "node": "2abeb02c477777d6322737f0a9cc67cb514fb049", + "pushdate": "2013-11-13 00:34:32", + "desc": "Bug 933882 - Invalidate JIT code instead of doing full GC on debug mode toggle. (r=bhackett)" + }, + "backout_commit": { + "node": "3382fad9edf06ebc578cc5dac4ccea00ac196a29", + "pushdate": "2013-11-15 03:19:28", + "desc": "Backed out changeset 2abeb02c4777 (bug 933882) as result of the discussion of Bug 937997 Comment 48 Trees Closed due to OOM on a CLOSED TREE" + }, + "fixing_commit": { + "node": "5c1d58a7dfc9747ae5e73d9ddf9cdfd2e9409e73", + "pushdate": "2013-11-15 03:19:28", + "desc": "Backed out changeset c6981912ff87 (bug 933882) as result of the discussion of Bug 937997 Comment 48 Trees Closed due to OOM on a CLOSED TREE" + } + }, + { + "bug_id": 879668, + "inducing_commit": { + "node": "1395d2a596985cef64497bfff650560c7d8df869", + "pushdate": "2014-01-19 20:40:59", + "desc": "Bug 879668 - Part 1: Make CreateMutedFrame static. r=roc" + }, + "backout_commit": { + "node": "7b655cd5cce89a49d6e76e5da12c74561b88cf52", + "pushdate": "2014-01-19 20:40:59", + "desc": "Backed out changeset 1395d2a59698 (bug 879668) for landing without review." + }, + "fixing_commit": { + "node": "ab65363c73e3ddd8b43c9458ef17e3a96eabefd7", + "pushdate": "2014-01-19 20:40:59", + "desc": "Bug 879668 - Part 2: Add utility function to convert codec data from OMX AVC/H.264 encoder for MP4 container writer. r=roc" + } + }, + { + "bug_id": 620935, + "inducing_commit": { + "node": "235d4c57787f311259119591bf245fbafdca3823", + "pushdate": "2014-01-24 21:51:09", + "desc": "Bug 620935 - __noSuchMethod__ support for WebIDL r=bz" + }, + "backout_commit": { + "node": "41559c2000f4166a0b4fe9d8ace7d71e44f6d95b", + "pushdate": "2014-01-24 21:51:09", + "desc": "Backed out changeset 235d4c57787f (bug 620935) for m13 perma-orange on a CLOSED TREE" + }, + "fixing_commit": { + "node": "ec91efbcc80e4b15e5a6e2b221bf68764062789b", + "pushdate": "2014-01-24 21:51:09", + "desc": "Backed out changeset 691a1d12372a (bug 620935) for m13 perma orange on a CLOSED TREE" + } + }, + { + "bug_id": 789096, + "inducing_commit": { + "node": "9f92527ff03ba3bad3b301633acdc637f392d3ec", + "pushdate": "2014-03-11 19:19:48", + "desc": "Use logical coordinates in nsBlockFrame::ReflowBullet. Bug 789096, r=jfkthame" + }, + "backout_commit": { + "node": "5bd692d15d02c87dc8a4197cd96be36201efa941", + "pushdate": "2014-03-11 19:19:48", + "desc": "Backed out changeset 9f92527ff03b (bug 789096) for Valgrind Test-Bustage on a CLOSED TREE" + }, + "fixing_commit": { + "node": "ccbb32d6a1ceda105c19dd9fe3fe38eb46b5368f", + "pushdate": "2014-03-11 19:19:48", + "desc": "Backed out changeset 534a0efe7d3d (bug 789096)" + } + }, + { + "bug_id": 789096, + "inducing_commit": { + "node": "aeff4052ef00d986d47bb7dcc10226b74066f884", + "pushdate": "2014-03-11 19:19:48", + "desc": "Use logical text layout API in nsLineLayout. Bug 789096, r=jfkthame" + }, + "backout_commit": { + "node": "010865dfe35ee6de7fb5607bc9084b7b21e9a04c", + "pushdate": "2014-03-11 19:19:48", + "desc": "Backed out changeset aeff4052ef00 (bug 789096)" + }, + "fixing_commit": { + "node": "ccbb32d6a1ceda105c19dd9fe3fe38eb46b5368f", + "pushdate": "2014-03-11 19:19:48", + "desc": "Backed out changeset 534a0efe7d3d (bug 789096)" + } + }, + { + "bug_id": 917226, + "inducing_commit": { + "node": "894e4012137063861210ef5372facd82a04b6798", + "pushdate": "2014-03-28 03:08:07", + "desc": "Bug 917226 - Build a canvas inspection tool, r=rcampbell" + }, + "backout_commit": { + "node": "882b91ce5a9fee04ad015dcc8bf6bd40048aa414", + "pushdate": "2014-03-28 03:08:07", + "desc": "Backed out changeset 894e40121370 (bug 917226) for mochitest-chrome failures" + }, + "fixing_commit": { + "node": "955336deb0ff3027385d47acd21e1aec76150af6", + "pushdate": "2014-03-28 03:08:07", + "desc": "Backed out changeset 882b91ce5a9f, as a relanding of Bug 917226, r=me" + } + }, + { + "bug_id": 917226, + "inducing_commit": { + "node": "9c456120ed575d39e6a52543077992ec8c017521", + "pushdate": "2014-03-28 03:08:07", + "desc": "Bug 917226 - Make test_loader_paths.html aware of the content-observer being added in Loader.jsm, r=jryans" + }, + "backout_commit": { + "node": "88e9a2e07261f20368a5188f07a908cf338a4909", + "pushdate": "2014-03-28 03:08:07", + "desc": "Backed out changeset 9c456120ed57 (bug 917226) for browser-chrome failures" + }, + "fixing_commit": { + "node": "955336deb0ff3027385d47acd21e1aec76150af6", + "pushdate": "2014-03-28 03:08:07", + "desc": "Backed out changeset 882b91ce5a9f, as a relanding of Bug 917226, r=me" + } + }, + { + "bug_id": 917226, + "inducing_commit": { + "node": "7b9fab28c5918398d66b730f4b3973d96afdb880", + "pushdate": "2014-03-28 03:08:07", + "desc": "Bug 917226 - Build a canvas inspection tool, r=rcampbell" + }, + "backout_commit": { + "node": "5ab9f9afe189b8e3c78060e462b3ff002db7137b", + "pushdate": "2014-03-28 03:08:07", + "desc": "Backed out changeset 7b9fab28c591 (bug 917226) for incorrect commit message generated by qbackout; DONTBUILD" + }, + "fixing_commit": { + "node": "88e9a2e07261f20368a5188f07a908cf338a4909", + "pushdate": "2014-03-28 03:08:07", + "desc": "Backed out changeset 9c456120ed57 (bug 917226) for browser-chrome failures" + } + }, + { + "bug_id": 946065, + "inducing_commit": { + "node": "c2350812b7f1188eebda30532d6108211697b97d", + "pushdate": "2014-04-14 13:20:46", + "desc": "Bug 946065 - Part 6: Move content/xml/ to dom/ and flatten subdirectories; sr=jst" + }, + "backout_commit": { + "node": "5c139817cf242e39e1401e191bd333456c171b0f", + "pushdate": "2014-04-14 13:20:46", + "desc": "Backed out changeset c2350812b7f1 (bug 946065) hoping this fix the B2G mochitest-7 perma-fail on a CLOSED TREE" + }, + "fixing_commit": { + "node": "c153aa5be1088073e57fe2a63d806f3b7a161b23", + "pushdate": "2014-04-14 13:20:46", + "desc": "Backed out changeset 6a0290190c1b (bug 946065)" + } + }, + { + "bug_id": 776027, + "inducing_commit": { + "node": "33bcd13d52f59caaed9607a526cd261cf2399743", + "pushdate": "2014-04-15 16:17:08", + "desc": "Bug 776027 - Move intent handling to IntentHelper. r=wesj" + }, + "backout_commit": { + "node": "c300fbbd1b1e7da6c3b7e82ce505de7d94b3d999", + "pushdate": "2014-04-15 16:17:08", + "desc": "Backed out changeset 33bcd13d52f5 (bug 776027) for Android M6 Test Failure" + }, + "fixing_commit": { + "node": "c2f254dc00d2838fb8f7fe1b75432c4d4232ed80", + "pushdate": "2014-04-15 16:17:08", + "desc": "Backed out changeset 46b4833e84c3 (bug 776027)" + } + }, + { + "bug_id": 776027, + "inducing_commit": { + "node": "f8c51b2092cad9b1d86035a80bf7074e0741f58e", + "pushdate": "2014-04-15 16:17:08", + "desc": "Bug 776027 - Pass activity options instead of name through nsIActivityUIGlue. r=fabrice" + }, + "backout_commit": { + "node": "d7f6864d857078e9bec2a884b0383036805706c8", + "pushdate": "2014-04-15 16:17:08", + "desc": "Backed out changeset f8c51b2092ca (bug 776027)" + }, + "fixing_commit": { + "node": "c2f254dc00d2838fb8f7fe1b75432c4d4232ed80", + "pushdate": "2014-04-15 16:17:08", + "desc": "Backed out changeset 46b4833e84c3 (bug 776027)" + } + }, + { + "bug_id": 776027, + "inducing_commit": { + "node": "2ada015179801c0889ac82e203774eaca2bbd5ef", + "pushdate": "2014-04-15 16:17:08", + "desc": "Bug 776027 - Allow nsIActivityUIGlueCallback to handle native and web activities. r=fabrice" + }, + "backout_commit": { + "node": "c1019516b76efd9476a2a76ebfefb19c747a43cb", + "pushdate": "2014-04-15 16:17:08", + "desc": "Backed out changeset 2ada01517980 (bug 776027)" + }, + "fixing_commit": { + "node": "c2f254dc00d2838fb8f7fe1b75432c4d4232ed80", + "pushdate": "2014-04-15 16:17:08", + "desc": "Backed out changeset 46b4833e84c3 (bug 776027)" + } + }, + { + "bug_id": 776027, + "inducing_commit": { + "node": "ec54368243da36dacccca850735876ea454a0fdf", + "pushdate": "2014-04-15 16:17:08", + "desc": "Bug 776027 - Pass web activities to Java. r=wesj" + }, + "backout_commit": { + "node": "361d1c3b9fc555aa2265a4cee0a5cebd435be3d8", + "pushdate": "2014-04-15 16:17:08", + "desc": "Backed out changeset ec54368243da (bug 776027)" + }, + "fixing_commit": { + "node": "c2f254dc00d2838fb8f7fe1b75432c4d4232ed80", + "pushdate": "2014-04-15 16:17:08", + "desc": "Backed out changeset 46b4833e84c3 (bug 776027)" + } + }, + { + "bug_id": 789096, + "inducing_commit": { + "node": "38b25d5e6cf93b3f7f781df32c01b436b5eb2b3e", + "pushdate": "2014-05-26 12:37:49", + "desc": "Add a WritingMode argument to nsHTMLReflowMetrics::ISize() and BSize(). Bug 789096, r=jfkthame" + }, + "backout_commit": { + "node": "94af2dca5c0cdd14c8f34c0eded48b662349437e", + "pushdate": "2014-05-26 12:37:49", + "desc": "Backout 38b25d5e6cf9 because assertions" + }, + "fixing_commit": { + "node": "2d9924eaa36c8b47bebb25d7932fa97773825c6f", + "pushdate": "2014-06-06 01:31:27", + "desc": "Add a WritingMode argument to nsHTMLReflowMetrics::ISize() and BSize(). Bug 789096, r=jfkthame" + } + }, + { + "bug_id": 958868, + "inducing_commit": { + "node": "f809a67a796e574fd7e942935c1cdb737095cfef", + "pushdate": "2014-06-24 15:52:34", + "desc": "Bug 958868 - Add support for GDK_SCROLL_SMOOTH; r=karlt" + }, + "backout_commit": { + "node": "e68dcb0c572cdf825ddcd9653e6341da360249f0", + "pushdate": "2014-06-24 15:52:34", + "desc": "Backed out changeset f809a67a796e (bug 958868) for m2 test failures on a CLOSED TREE" + }, + "fixing_commit": { + "node": "f8989df117ae3644164c949b972f0530bf6eb38a", + "pushdate": "2014-06-24 15:52:34", + "desc": "Backed out changeset 8499eefa342e (bug 958868) for m2 test failures on a CLOSED TREE" + } + }, + { + "bug_id": 949617, + "inducing_commit": { + "node": "daa9c46d19dc577fd034486dcd0b6003d0119beb", + "pushdate": "2014-06-25 01:13:54", + "desc": "Bug 949617 - Make the login manager work in e10s. r=dolske" + }, + "backout_commit": { + "node": "6f291b1b47c79117c8d6bfa4a9b6227b8fe8872f", + "pushdate": "2014-06-25 01:13:54", + "desc": "Backed out 5 changesets (bug 993197, bug 949617, bug 995489, bug 1029128) for Android test failures.\n\nBacked out changeset 033d6271fd19 (bug 1029128)\nBacked out changeset f568b1dc9880 (bug 1029128)\nBacked out changeset daa9c46d19dc (bug 949617)\nBacked out changeset 2baf5c61cbf5 (bug 995489)\nBacked out changeset 654c1f0c88bc (bug 993197)" + }, + "fixing_commit": { + "node": "8c1ee05fbbd6eabaaa438703b7018443a0e86fb3", + "pushdate": "2014-06-26 12:15:07", + "desc": "Bug 949617 - Make the login manager work in e10s. r=dolske" + } + }, + { + "bug_id": 1018583, + "inducing_commit": { + "node": "d9f9398b90dc60f33136891cbd63868983f2bbe5", + "pushdate": "2014-07-04 11:44:24", + "desc": "Bug 1018583 part 1. Remove the execute-in-sandbox mode for javascript: URIs, and use the don't-execute mode wherever we used the sandbox one. r=bholley,dao" + }, + "backout_commit": { + "node": "7231daefbb2857793fafdb9e5a37488f31db87df", + "pushdate": "2014-07-04 11:44:24", + "desc": "Backed out changeset d9f9398b90dc (bug 1018583) for bustage on a CLOSED TREE" + }, + "fixing_commit": { + "node": "397259c497fc80f376032997cc1495a47170fe45", + "pushdate": "2014-07-04 11:44:24", + "desc": "Backed out changeset df2b43d4581e (bug 1018583)" + } + }, + { + "bug_id": 966452, + "inducing_commit": { + "node": "207ccc9f5c2ccdd88bc7b8cc1f9ab9c683f6da08", + "pushdate": "2014-07-04 11:44:24", + "desc": "Bug 966452 part 1. Refactor the js_ReportUncaughtException to produce a (message, JSErrorReport*) pair before reporting. r=waldo" + }, + "backout_commit": { + "node": "88af1cfccc0ca90ece4f2bb09bcb37819404aed8", + "pushdate": "2014-07-04 11:44:24", + "desc": "Backed out changeset 207ccc9f5c2c (bug 966452)" + }, + "fixing_commit": { + "node": "aff86553457084994b767cb279df0779e4613b7f", + "pushdate": "2014-07-04 11:44:24", + "desc": "Backed out changeset 42f348168125 (bug 966452)" + } + }, + { + "bug_id": 1022612, + "inducing_commit": { + "node": "e5bacdd4594c4e86997ca37d417c1d2a92da55b2", + "pushdate": "2014-07-15 12:59:16", + "desc": "Bug 1022612. Part 1: Always pass a frame to AutoBuildingDisplayList. r=mattwoodrow" + }, + "backout_commit": { + "node": "17299e0f1029a10403113a0c8553725748861dec", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset e5bacdd4594c (bug 1022612) for bustage on a CLOSED TREE" + }, + "fixing_commit": { + "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset cc1776b2606d (bug 1022612)" + } + }, + { + "bug_id": 1022612, + "inducing_commit": { + "node": "4e502d50b8e1761e1d9fec4ed2ae7d2025b12166", + "pushdate": "2014-07-15 12:59:16", + "desc": "Bug 1022612. Part 2: Remove unused nsDisplayWrapList constructor. r=mattwoodrow" + }, + "backout_commit": { + "node": "10df1a89cdbd8f849a2e8f11543160147a5aabd2", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset 4e502d50b8e1 (bug 1022612)" + }, + "fixing_commit": { + "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset cc1776b2606d (bug 1022612)" + } + }, + { + "bug_id": 1022612, + "inducing_commit": { + "node": "18ffe0bb4d423f92be35a11d4bc4d09280ebb089", + "pushdate": "2014-07-15 12:59:16", + "desc": "Bug 1022612. Part 3: Rename \"cached frame\" to \"current frame\" in nsDisplayListBuilder and take advantage of the fact it's always set. r=mattwoodrow" + }, + "backout_commit": { + "node": "0b54a5aef1ab20d4c894cc1db211f17bfde2dc45", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset 18ffe0bb4d42 (bug 1022612)" + }, + "fixing_commit": { + "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset cc1776b2606d (bug 1022612)" + } + }, + { + "bug_id": 1022612, + "inducing_commit": { + "node": "cdaa916f6851fe278d16c48ce41b021c3cb8d421", + "pushdate": "2014-07-15 12:59:16", + "desc": "Bug 1022612. Part 4: Track current dirty rect in nsDisplayListBuilder. r=mattwoodrow\n\nWe need this to set the initial visible rect during display list construction.\nEventually we'll also be able to get rid of the dirty rect parameter to\nnsIFrame::BuildDisplayList." + }, + "backout_commit": { + "node": "2022db1bc58e3f9f3ce5a3f610c21b0a636cadfe", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset cdaa916f6851 (bug 1022612)" + }, + "fixing_commit": { + "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset cc1776b2606d (bug 1022612)" + } + }, + { + "bug_id": 1022612, + "inducing_commit": { + "node": "6d2fc524e961188e589a7a1bc15ec23be28d2d21", + "pushdate": "2014-07-15 12:59:16", + "desc": "Bug 1022612. Part 5: BuildDisplayListForExtraPage needs to pass the correct dirty rect in. r=mattwoodrow\n\nWhen printing, every page has the same origin. So doing this change naively\nwould result in the first page having all the display items for every page\nadded to it, and all but the first page's display items being pruned\naway by PruneDisplayListForExtraPage. This would making printing long documents\nvery slow. We avoid that problem with the new check for\nNS_FRAME_FORCE_DISPLAY_LIST_DESCEND_INTO, so the only pages other than the\ncurrent page we descend into are the ones with placeholders for abs-pos content\non the current page." + }, + "backout_commit": { + "node": "f365873fc32c12040c964fc4f4b9f006213ba167", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset 6d2fc524e961 (bug 1022612)" + }, + "fixing_commit": { + "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset cc1776b2606d (bug 1022612)" + } + }, + { + "bug_id": 1022612, + "inducing_commit": { + "node": "1ad096055f1d1d15a339fbe9e82edcf25a12ef74", + "pushdate": "2014-07-15 12:59:16", + "desc": "Bug 1022612. Part 6: Set the initial mVisibleRect for each display item to the dirty rect when we create the item. r=mattwoodrow" + }, + "backout_commit": { + "node": "3911f266ba7fb427a0dbcae47b4c54c59594dde0", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset 1ad096055f1d (bug 1022612)" + }, + "fixing_commit": { + "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset cc1776b2606d (bug 1022612)" + } + }, + { + "bug_id": 1022612, + "inducing_commit": { + "node": "b81f9a774059dd77b7ede60c5b656e1f3f9a0a6c", + "pushdate": "2014-07-15 12:59:16", + "desc": "Bug 1022612. Part 7: Enable APZC for IPC reftests. r=billm" + }, + "backout_commit": { + "node": "61e8bddfa22340e0d71c0feaa102d5ddc487ad5d", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset b81f9a774059 (bug 1022612)" + }, + "fixing_commit": { + "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset cc1776b2606d (bug 1022612)" + } + }, + { + "bug_id": 1022612, + "inducing_commit": { + "node": "5ebd2f6b65a6ca6553c587420210c4124bff76d3", + "pushdate": "2014-07-15 12:59:16", + "desc": "Bug 1022612. Part 8: nsDisplayWrapList (but not subclasses) should return true for ShouldFlattenAway. r=mattwoodrow\n\nAlso the assertion in TryMerge is going away because we're going to do TryMerge\nfirst in FrameLayerBuilder." + }, + "backout_commit": { + "node": "02f9978efef74d3c9ca96a0760ad28b3352f1509", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset 5ebd2f6b65a6 (bug 1022612)" + }, + "fixing_commit": { + "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset cc1776b2606d (bug 1022612)" + } + }, + { + "bug_id": 1022612, + "inducing_commit": { + "node": "e4e2a1dcadc8eb34ca162155534aa330c71efa26", + "pushdate": "2014-07-15 12:59:16", + "desc": "Bug 1022612. Part 9: nsDisplayScrollInfoLayer destructor does not need to destroy ScrollLayerCount. r=mattwoodrow\n\nGetting the timing of this right without processing display items in reverse\norder is hard. But it doesn't matter if this property sticks around anyway." + }, + "backout_commit": { + "node": "8eb056899512bc60a79f8d2ec871e5adef204b5b", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset e4e2a1dcadc8 (bug 1022612)" + }, + "fixing_commit": { + "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset cc1776b2606d (bug 1022612)" + } + }, + { + "bug_id": 1022612, + "inducing_commit": { + "node": "3bf33a32bfe0b3250acb3e4bfb68ae6525884c7b", + "pushdate": "2014-07-15 12:59:16", + "desc": "Bug 1022612. Part 10: Implement merging and flattening in ProcessDisplayItems. r=mattwoodrow\n\nBuildContainerLayerFor now has to be able to mutate the passed-in display item\nlist." + }, + "backout_commit": { + "node": "ca63ced85802827dcc4c3e9c55f5aecf66ada43d", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset 3bf33a32bfe0 (bug 1022612)" + }, + "fixing_commit": { + "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset cc1776b2606d (bug 1022612)" + } + }, + { + "bug_id": 1022612, + "inducing_commit": { + "node": "75fffcce9c4d66a33722673943b93abebae42e46", + "pushdate": "2014-07-15 12:59:16", + "desc": "Bug 1022612. Part 11: Set opaque flag on nsDisplayList if we find an opaque item that covers the whole list. r=mattwoodrow\n\nThis is less general than what nsDisplayItem::ComputeVisibility does. This means\nif multiple opaque items together cover the list bounds, but not individually,\nwe won't mark the list as opaque. I think that should be OK." + }, + "backout_commit": { + "node": "d469f5e7861ca2e31ec7cab7b8c7c8cec2d5e332", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset 75fffcce9c4d (bug 1022612)" + }, + "fixing_commit": { + "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset cc1776b2606d (bug 1022612)" + } + }, + { + "bug_id": 1022612, + "inducing_commit": { + "node": "cc140abf7b17677cd186c65d893887f5184f83e3", + "pushdate": "2014-07-15 12:59:16", + "desc": "Bug 1022612. Part 12: Propagate NeedsTransparentSurface in ProcessDisplayItems. r=mattwoodrow" + }, + "backout_commit": { + "node": "a88b23b616b0744f9f48ca14a30e041026d7c4b9", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset cc140abf7b17 (bug 1022612)" + }, + "fixing_commit": { + "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset cc1776b2606d (bug 1022612)" + } + }, + { + "bug_id": 1022612, + "inducing_commit": { + "node": "121bf69509b1ed83e8b8153f55ba5c6c6276c146", + "pushdate": "2014-07-15 12:59:16", + "desc": "Bug 1022612. Part 13: Set mDidComputeVisibility in ProcessDisplayItems. r=mattwoodrow" + }, + "backout_commit": { + "node": "fc50b7ecb9f88712457b2c2e5f64ced52b67674b", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset 121bf69509b1 (bug 1022612)" + }, + "fixing_commit": { + "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset cc1776b2606d (bug 1022612)" + } + }, + { + "bug_id": 1022612, + "inducing_commit": { + "node": "e95971991caa55a4f82570a47dce84ffb64e48f0", + "pushdate": "2014-07-15 12:59:16", + "desc": "Bug 1022612. Part 14: Don't compute a final transparent region anymore. r=mattwoodrow\n\nComputing this via FrameLayerBuilder is some work and we don't really have to.\n\nSuppressComponentAlpha will be true in more cases. This will be OK as long as\ntext in the chrome window is over opaque content in the same ThebesLayer. We\nwill miss some edge cases such as text in 'opacity' with no opaque background.\nThis should be OK." + }, + "backout_commit": { + "node": "db83c9131b1e453d7e1ec502921f65db17832cab", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset e95971991caa (bug 1022612)" + }, + "fixing_commit": { + "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset cc1776b2606d (bug 1022612)" + } + }, + { + "bug_id": 1022612, + "inducing_commit": { + "node": "c59ee68b19179b55cd9264817e6478698071e7a2", + "pushdate": "2014-07-15 12:59:16", + "desc": "Bug 1022612. Part 16: No need to exclude final transparent region from window opaque region. r=mattwoodrow\n\nThe removed code should be a no-op as long as the window opaque region is\naccurate enough." + }, + "backout_commit": { + "node": "bab3b499543e8a503cdfbe79107e97bb4c2080cd", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset c59ee68b1917 (bug 1022612)" + }, + "fixing_commit": { + "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset cc1776b2606d (bug 1022612)" + } + }, + { + "bug_id": 1022612, + "inducing_commit": { + "node": "549e3cb9e1118b1e26d48e3d637c961c51644380", + "pushdate": "2014-07-15 12:59:16", + "desc": "Bug 1022612. Part 17: RecordFrameMetrics should not set layer visible regions. r=mattwoodrow\n\nThis is unnecessary. FrameLayerBuilder sets the correct region." + }, + "backout_commit": { + "node": "96ab8745bcfb9e78a1f33de6112beea54a06c2a7", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset 549e3cb9e111 (bug 1022612)" + }, + "fixing_commit": { + "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset cc1776b2606d (bug 1022612)" + } + }, + { + "bug_id": 1022612, + "inducing_commit": { + "node": "376c45f4d905aff7b1f4161fd6bf8a52c7b286ba", + "pushdate": "2014-07-15 12:59:16", + "desc": "Bug 1022612. Part 18: When ComputeVisibility returns false, RecomputeVisibility should avoid painting the item. r=mattwoodrow" + }, + "backout_commit": { + "node": "572653d0538e1c41c35545ad09f780611cfc3c00", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset 376c45f4d905 (bug 1022612)" + }, + "fixing_commit": { + "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset cc1776b2606d (bug 1022612)" + } + }, + { + "bug_id": 1022612, + "inducing_commit": { + "node": "b4b6049145dcca3aef82b3514cf023d5c5b458b7", + "pushdate": "2014-07-15 12:59:16", + "desc": "Bug 1022612. Part 19: Test that merged display item lists merge their contents in the correct z-order. r=mattwoodrow\n\nPrior to this patch, the only tests that caught this were a couple of obscure\ncases on B2G. This test tests it on all platforms." + }, + "backout_commit": { + "node": "d43eac5bf947104a27af3a4d96d2a2fc3d4a285e", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset b4b6049145dc (bug 1022612)" + }, + "fixing_commit": { + "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset cc1776b2606d (bug 1022612)" + } + }, + { + "bug_id": 1022612, + "inducing_commit": { + "node": "2f6cb0f412f7e6bd0c76acf6820734f06b7ae640", + "pushdate": "2014-07-15 12:59:16", + "desc": "Bug 1022612. Part 20: Do the business. r=mattwoodrow" + }, + "backout_commit": { + "node": "702cc39137a1a52e7d1ff87cbf85e07810ed053d", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset 2f6cb0f412f7 (bug 1022612)" + }, + "fixing_commit": { + "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset cc1776b2606d (bug 1022612)" + } + }, + { + "bug_id": 1022612, + "inducing_commit": { + "node": "032ba47c66844cb8717ff954539e2707e655c178", + "pushdate": "2014-07-15 12:59:16", + "desc": "Bug 1022612. Part 21: Remove DidComputeVisibility checking. r=mattwoodrow" + }, + "backout_commit": { + "node": "33e5e2cf9d687d7c97a2e2b3f90573c070d4daf9", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset 032ba47c6684 (bug 1022612)" + }, + "fixing_commit": { + "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset cc1776b2606d (bug 1022612)" + } + }, + { + "bug_id": 1022612, + "inducing_commit": { + "node": "c081917e5626546ac07cbcaf0d377a1e015cd148", + "pushdate": "2014-07-15 12:59:16", + "desc": "Bug 1022612. Part 22: Add MOZ_COUNT_CTOR to nsDisplayWrapList. r=mattwoodrow" + }, + "backout_commit": { + "node": "f92a2745a979f42511840d17e97c35e8572b108c", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset c081917e5626 (bug 1022612)" + }, + "fixing_commit": { + "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset cc1776b2606d (bug 1022612)" + } + }, + { + "bug_id": 1022612, + "inducing_commit": { + "node": "f67228df9ae0dc097f80dc6fe9f10bbc58b5d852", + "pushdate": "2014-07-15 12:59:16", + "desc": "Bug 1022612. Part 23: Remove nsDisplayItem::IsVaryingRelativeToMovingFrame. r=mattwoodrow\n\nIt's obsolete and no-one calls it." + }, + "backout_commit": { + "node": "330e2f5330795fdb93bf06b0788f3f07f6f11fc5", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset f67228df9ae0 (bug 1022612)" + }, + "fixing_commit": { + "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset cc1776b2606d (bug 1022612)" + } + }, + { + "bug_id": 1022612, + "inducing_commit": { + "node": "f5ec6bcf251fc6f53ba7a235543399cfc4579c66", + "pushdate": "2014-07-15 12:59:16", + "desc": "Bug 1022612. Part 24: Simplify nsDisplayList::ComputeVisibilityForSublist now that FrameLayerBuilder does most of the work. r=mattwoodrow" + }, + "backout_commit": { + "node": "4aad800ab5d8126177553875bdfca172e3203d20", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset f5ec6bcf251f (bug 1022612)" + }, + "fixing_commit": { + "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset cc1776b2606d (bug 1022612)" + } + }, + { + "bug_id": 1022612, + "inducing_commit": { + "node": "79e0ce4662193e8acde253efffbe0088444b21c8", + "pushdate": "2014-07-15 12:59:16", + "desc": "Bug 1022612. Part 25: We don't need to explicitly worry about displayports anymore when computing occlusion. r=mattwoodrow" + }, + "backout_commit": { + "node": "438d855314ffea4a1fac46789060d1cab6dc4a20", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset 79e0ce466219 (bug 1022612)" + }, + "fixing_commit": { + "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset cc1776b2606d (bug 1022612)" + } + }, + { + "bug_id": 1022612, + "inducing_commit": { + "node": "f89950384bf2407cf6edd81e14f67e2c4351d8e3", + "pushdate": "2014-07-15 12:59:16", + "desc": "Bug 1022612. Part 26: nsDisplayList::mVisibleRect is no longer used. r=mattwoodrow" + }, + "backout_commit": { + "node": "9f403ca16d6efc2d63ac1ed339cf1d98702c62ee", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset f89950384bf2 (bug 1022612)" + }, + "fixing_commit": { + "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset cc1776b2606d (bug 1022612)" + } + }, + { + "bug_id": 1022612, + "inducing_commit": { + "node": "f9564f9f46488e95937b27c9dffeea3742f85670", + "pushdate": "2014-07-15 12:59:16", + "desc": "Bug 1022612. Part 27: Make FrameLayerBuilder responsible for setting all layer visible regions. r=mattwoodrow\n\nCalling Layer::SetVisibleRegion multiple times in a transaction can result in\nunnecessary IPC traffic.\n\nThis patch removes Intersect(childGfxBounds). This is only needed to\nrestrict the visible region to something sane for 3D transforms, and this will\nbe fixed up in a later patch." + }, + "backout_commit": { + "node": "80f5b926874132a0e741d618943481db53516fe0", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset f9564f9f4648 (bug 1022612)" + }, + "fixing_commit": { + "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset cc1776b2606d (bug 1022612)" + } + }, + { + "bug_id": 1022612, + "inducing_commit": { + "node": "c413b946dbc440645ec7308554ae3b3cdeb187c5", + "pushdate": "2014-07-15 12:59:16", + "desc": "Bug 1022612. Part 28: Make nsLayoutUtils::GetScrollableFrameFor return null for non-scrolled-frames. r=mattwoodrow" + }, + "backout_commit": { + "node": "69000c2fca489e4584db35315dd27baf3a1d6878", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset c413b946dbc4 (bug 1022612)" + }, + "fixing_commit": { + "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset cc1776b2606d (bug 1022612)" + } + }, + { + "bug_id": 1022612, + "inducing_commit": { + "node": "5e8625f91b68def08d922831912dd22d60996a91", + "pushdate": "2014-07-15 12:59:16", + "desc": "Bug 1022612. Part 29: Expose GetAnimatedGeometryRootForFrame. r=mattwoodrow" + }, + "backout_commit": { + "node": "4e37a22253404fc5375e02f1ec478aab2b50a3cc", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset 5e8625f91b68 (bug 1022612)" + }, + "fixing_commit": { + "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset cc1776b2606d (bug 1022612)" + } + }, + { + "bug_id": 1022612, + "inducing_commit": { + "node": "233345d8ffc6e8a8f81b458271537a57b3506c0e", + "pushdate": "2014-07-15 12:59:16", + "desc": "Bug 1022612. Part 30: Expose IsConstructingScrollLayerForScrolledFrame and IsDisplayPortOpaque on nsDisplayScrollLayer. r=mattwoodrow" + }, + "backout_commit": { + "node": "b605a83499c79f2d487a6ad96c3dc612fb9625b5", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset 233345d8ffc6 (bug 1022612)" + }, + "fixing_commit": { + "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset cc1776b2606d (bug 1022612)" + } + }, + { + "bug_id": 1022612, + "inducing_commit": { + "node": "f8b488c389e951842c1db4150859fe10d2098cb4", + "pushdate": "2014-07-15 12:59:16", + "desc": "Bug 1022612. Part 31: Perform layer-level occlusion culling in FrameLayerBuilder. r=mattwoodrow\n\nWe need this to avoid constructing and painting unncecessarily large\nThebesLayers." + }, + "backout_commit": { + "node": "066e949e61909fcea0fd1db5920dcfc9eab33582", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset f8b488c389e9 (bug 1022612)" + }, + "fixing_commit": { + "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset cc1776b2606d (bug 1022612)" + } + }, + { + "bug_id": 1022612, + "inducing_commit": { + "node": "21d141d01c979f777437809580acdcec72dc06d3", + "pushdate": "2014-07-15 12:59:16", + "desc": "Bug 1022612. Part 32: Remove nsDisplayItem::SetVisibleRegionOnLayer. r=mattwoodrow\n\nIt is no longer called because FrameLayerBuilder always sets the visible\nregions on layers now." + }, + "backout_commit": { + "node": "16db030a2bff9b6a7c0cb52bbff69b2231b3bfa1", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset 21d141d01c97 (bug 1022612)" + }, + "fixing_commit": { + "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset cc1776b2606d (bug 1022612)" + } + }, + { + "bug_id": 1022612, + "inducing_commit": { + "node": "7e9751c1302a7cf48228eaa0d9a2a88be95e93b2", + "pushdate": "2014-07-15 12:59:16", + "desc": "Bug 1022612. Part 33: Remove InFixedPos code. r=mattwoodrow\n\nThis hasn't been used for a while I guess." + }, + "backout_commit": { + "node": "c4de29a139bfd8d59ab03c6bdd1adbb1354f1361", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset 7e9751c1302a (bug 1022612)" + }, + "fixing_commit": { + "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset cc1776b2606d (bug 1022612)" + } + }, + { + "bug_id": 1022612, + "inducing_commit": { + "node": "6e190d419511e96b222fd7461fdb74b0e3a0dd88", + "pushdate": "2014-07-15 12:59:16", + "desc": "Bug 1022612. Part 34: Skip RecomputeVisibilityForItems in inactive layers. r=mattwoodrow\n\nRecomputeVisibilityForItems for the retained ThebesLayer already recomputes\nvisibility for all items in that layer, including items nested in other items." + }, + "backout_commit": { + "node": "e5807a2b482ec163f3f019306b4e8149355fb8c9", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset 6e190d419511 (bug 1022612)" + }, + "fixing_commit": { + "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset cc1776b2606d (bug 1022612)" + } + }, + { + "bug_id": 1022612, + "inducing_commit": { + "node": "1dd246b1436c0d8b201fb5b9beecfc142afe95e4", + "pushdate": "2014-07-15 12:59:16", + "desc": "Bug 1022612. Part 35: nsDisplayPluginReadback doesn't need to hack visible regions anymore. r=mattwoodrow\n\nOne nice bit of fallout from this bug is that handling plugin background\nreadback is simplified. We no longer have to fiddle with display item\nvisibility calculations; only layer occlusion culling has to know about\nreadback." + }, + "backout_commit": { + "node": "9547fa2b179ed4ca75e0514172177370e6444414", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset 1dd246b1436c (bug 1022612)" + }, + "fixing_commit": { + "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset cc1776b2606d (bug 1022612)" + } + }, + { + "bug_id": 1022612, + "inducing_commit": { + "node": "7e97b4516cbea2599be106695ba514793c7f22e3", + "pushdate": "2014-07-15 12:59:16", + "desc": "Bug 1022612. Part 36: Avoid redundant calls to ShouldPrerenderTransformedContent. r=mattwoodrow" + }, + "backout_commit": { + "node": "359000281f1dcf5fde83015461ac2ca461f84e4f", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset 7e97b4516cbe (bug 1022612)" + }, + "fixing_commit": { + "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset cc1776b2606d (bug 1022612)" + } + }, + { + "bug_id": 1022612, + "inducing_commit": { + "node": "3de27f6dcd31f45e2882e1ece261b0635bfe3e06", + "pushdate": "2014-07-15 12:59:16", + "desc": "Bug 1022612. Part 37: Remove aAllowVisibleRegionExpansion. r=mattwoodrow\n\nThis is no longer needed thanks to the readback simplification." + }, + "backout_commit": { + "node": "3fa59f8aa639ac08244c2b17579447ca0c3dd8c7", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset 3de27f6dcd31 (bug 1022612)" + }, + "fixing_commit": { + "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset cc1776b2606d (bug 1022612)" + } + }, + { + "bug_id": 1022612, + "inducing_commit": { + "node": "3773718e48702afca2740ea2bfb81304e1cfad23", + "pushdate": "2014-07-15 12:59:16", + "desc": "Bug 1022612. Part 38: Avoid test failure due to antialiased pixel leakage. r=mattwoodrow" + }, + "backout_commit": { + "node": "dcc9f1b202c0f73a380d788d76a2d0741b79c7a3", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset 3773718e4870 (bug 1022612)" + }, + "fixing_commit": { + "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset cc1776b2606d (bug 1022612)" + } + }, + { + "bug_id": 1022612, + "inducing_commit": { + "node": "6f857407b64e6c6cf79fba0906d3d9d782af2327", + "pushdate": "2014-07-15 12:59:16", + "desc": "Bug 1022612. Part 39: Add a little bit of reftest fuzzing. r=mattwoodrow" + }, + "backout_commit": { + "node": "ebf6185fafce3c71e087441dc3abe1d4bbb2b24d", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset 6f857407b64e (bug 1022612) for bustage on a CLOSED TREE" + }, + "fixing_commit": { + "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset cc1776b2606d (bug 1022612)" + } + }, + { + "bug_id": 1022612, + "inducing_commit": { + "node": "e6be65e455a2c99098c41b175c85c0ad4bb882fc", + "pushdate": "2014-07-15 12:59:16", + "desc": "Bug 1022612. Part 40: Restrict visible rect of 3D-transformed layers before converting to nsIntRect. r=mattwoodrow" + }, + "backout_commit": { + "node": "d3776838896d01b8dbf18e6b64e87353e655c053", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset e6be65e455a2 (bug 1022612)" + }, + "fixing_commit": { + "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset cc1776b2606d (bug 1022612)" + } + }, + { + "bug_id": 1022612, + "inducing_commit": { + "node": "5c1f3340c45f018d6653edfe0ddd7195bad28da2", + "pushdate": "2014-07-15 12:59:16", + "desc": "Bug 1022612. Part 41: Use itemType instead of calling GetType() again. r=mattwoodrow" + }, + "backout_commit": { + "node": "8121cd2778b55c79cc0e2db0d79ac7080ed08fa4", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset 5c1f3340c45f (bug 1022612)" + }, + "fixing_commit": { + "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset cc1776b2606d (bug 1022612)" + } + }, + { + "bug_id": 1022612, + "inducing_commit": { + "node": "f12d7d68b685bb894d4f23efc6af638c789eb9e6", + "pushdate": "2014-07-15 12:59:16", + "desc": "Bug 1022612. Part 42: Add opaque regions of ThebesLayer content to the \"exclude glass\" region. r=mattwoodrow" + }, + "backout_commit": { + "node": "2e46ba68c45a4ba082c7048ac5f7b3537505239c", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset f12d7d68b685 (bug 1022612)" + }, + "fixing_commit": { + "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", + "pushdate": "2014-07-15 12:59:16", + "desc": "Backed out changeset cc1776b2606d (bug 1022612)" + } + }, + { + "bug_id": 1037100, + "inducing_commit": { + "node": "f341384014d40ce7e8855bb69a9a3adab485c297", + "pushdate": "2014-07-22 01:00:35", + "desc": "Bug 1037100 - Remove all use of ScopedDeleteArray from mozglue/. r=glandium" + }, + "backout_commit": { + "node": "7ec6c6e1759bf902975a6f31f5b25ace77fa1c5d", + "pushdate": "2014-07-22 01:00:35", + "desc": "Back out f341384014d4, redness not trivially fixable. r=bustage affecting a CLOSED TREE" + }, + "fixing_commit": { + "node": "30e0030818354336dbd93108c35f7f836a7bad6b", + "pushdate": "2014-07-22 01:00:35", + "desc": "Backed out changeset edbc72909115 (bug 1037100) for build bustage on a CLOSED TREE" + } + }, + { + "bug_id": 1027713, + "inducing_commit": { + "node": "e0bba6f4966fe87744e042273d404a67f3d8225e", + "pushdate": "2014-07-25 22:59:38", + "desc": "Bug 1027713 - Part 1 - Add a volume API in cubeb and use it instead of doing our own soft gain. r=kinetik" + }, + "backout_commit": { + "node": "5dc0231d0153ba0326f6fdb81d74356547103dee", + "pushdate": "2014-07-25 22:59:38", + "desc": "Backed out 8 changesets (bug 1023947, bug 1027713) for frequent Cppunit test failures\n\nBacked out changeset 03edb1ab3182 (bug 1027713)\nBacked out changeset ad05dc816fa0 (bug 1023947)\nBacked out changeset a56aad94c7c9 (bug 1023947)\nBacked out changeset 63af4528bd9c (bug 1023947)\nBacked out changeset b6bb38846333 (bug 1027713)\nBacked out changeset c0045bb1849e (bug 1027713)\nBacked out changeset 274b2b25d167 (bug 1027713)\nBacked out changeset e0bba6f4966f (bug 1027713)" + }, + "fixing_commit": { + "node": "bf4ed2946c45eb7929063705f9356f327cc59b1f", + "pushdate": "2014-07-30 00:01:50", + "desc": "Bug 1027713 - Part 1 - Add a volume API in cubeb and use it instead of doing our own soft gain. r=kinetik" + } + }, + { + "bug_id": 1027713, + "inducing_commit": { + "node": "274b2b25d167f8fccfd0d4dc034e5392f09cec9f", + "pushdate": "2014-07-25 22:59:38", + "desc": "Bug 1027713 - Part 2 - Add a cubeb API to query the name of the audio output device in use. r=kinetik" + }, + "backout_commit": { + "node": "5dc0231d0153ba0326f6fdb81d74356547103dee", + "pushdate": "2014-07-25 22:59:38", + "desc": "Backed out 8 changesets (bug 1023947, bug 1027713) for frequent Cppunit test failures\n\nBacked out changeset 03edb1ab3182 (bug 1027713)\nBacked out changeset ad05dc816fa0 (bug 1023947)\nBacked out changeset a56aad94c7c9 (bug 1023947)\nBacked out changeset 63af4528bd9c (bug 1023947)\nBacked out changeset b6bb38846333 (bug 1027713)\nBacked out changeset c0045bb1849e (bug 1027713)\nBacked out changeset 274b2b25d167 (bug 1027713)\nBacked out changeset e0bba6f4966f (bug 1027713)" + }, + "fixing_commit": { + "node": "bf4ed2946c45eb7929063705f9356f327cc59b1f", + "pushdate": "2014-07-30 00:01:50", + "desc": "Bug 1027713 - Part 1 - Add a volume API in cubeb and use it instead of doing our own soft gain. r=kinetik" + } + }, + { + "bug_id": 1027713, + "inducing_commit": { + "node": "c0045bb1849ed7cbe7e06c92318a8e7b01314428", + "pushdate": "2014-07-25 22:59:38", + "desc": "Bug 1027713 - Part 3 - Add a cubeb API to signal that the output device changed. r=kinetik\n\nThe reentrant mutex is needed so that users can call back into cubeb's API from\nthe callback." + }, + "backout_commit": { + "node": "5dc0231d0153ba0326f6fdb81d74356547103dee", + "pushdate": "2014-07-25 22:59:38", + "desc": "Backed out 8 changesets (bug 1023947, bug 1027713) for frequent Cppunit test failures\n\nBacked out changeset 03edb1ab3182 (bug 1027713)\nBacked out changeset ad05dc816fa0 (bug 1023947)\nBacked out changeset a56aad94c7c9 (bug 1023947)\nBacked out changeset 63af4528bd9c (bug 1023947)\nBacked out changeset b6bb38846333 (bug 1027713)\nBacked out changeset c0045bb1849e (bug 1027713)\nBacked out changeset 274b2b25d167 (bug 1027713)\nBacked out changeset e0bba6f4966f (bug 1027713)" + }, + "fixing_commit": { + "node": "bf4ed2946c45eb7929063705f9356f327cc59b1f", + "pushdate": "2014-07-30 00:01:50", + "desc": "Bug 1027713 - Part 1 - Add a volume API in cubeb and use it instead of doing our own soft gain. r=kinetik" + } + }, + { + "bug_id": 1027713, + "inducing_commit": { + "node": "b6bb388463335a6129c386b3a3d0cc82a2725a00", + "pushdate": "2014-07-25 22:59:38", + "desc": "Bug 1027713 - Part 4 - Pan audio to the right when we are using gUM and outputing sound using MacBookPro speakers. r=jesup" + }, + "backout_commit": { + "node": "5dc0231d0153ba0326f6fdb81d74356547103dee", + "pushdate": "2014-07-25 22:59:38", + "desc": "Backed out 8 changesets (bug 1023947, bug 1027713) for frequent Cppunit test failures\n\nBacked out changeset 03edb1ab3182 (bug 1027713)\nBacked out changeset ad05dc816fa0 (bug 1023947)\nBacked out changeset a56aad94c7c9 (bug 1023947)\nBacked out changeset 63af4528bd9c (bug 1023947)\nBacked out changeset b6bb38846333 (bug 1027713)\nBacked out changeset c0045bb1849e (bug 1027713)\nBacked out changeset 274b2b25d167 (bug 1027713)\nBacked out changeset e0bba6f4966f (bug 1027713)" + }, + "fixing_commit": { + "node": "bf4ed2946c45eb7929063705f9356f327cc59b1f", + "pushdate": "2014-07-30 00:01:50", + "desc": "Bug 1027713 - Part 1 - Add a volume API in cubeb and use it instead of doing our own soft gain. r=kinetik" + } + }, + { + "bug_id": 1027713, + "inducing_commit": { + "node": "03edb1ab3182d06ec5730582e03b9bd8196953ab", + "pushdate": "2014-07-25 22:59:38", + "desc": "Bug 1027713 - Part 5 - Trigger the panning logic on stream creation. r=jesup\n\nUpdateStreamOrder is not called often because it's expensive (it's called only\nwhen the graph topology changed), and it's earlier in the MSG loop than the\naudio stream creation, so we need to tell the newly created AudioStream that a\nmicrophone is active on creation as well.\n\nThe panning logic is also now triggered on stream start, because it is async." + }, + "backout_commit": { + "node": "5dc0231d0153ba0326f6fdb81d74356547103dee", + "pushdate": "2014-07-25 22:59:38", + "desc": "Backed out 8 changesets (bug 1023947, bug 1027713) for frequent Cppunit test failures\n\nBacked out changeset 03edb1ab3182 (bug 1027713)\nBacked out changeset ad05dc816fa0 (bug 1023947)\nBacked out changeset a56aad94c7c9 (bug 1023947)\nBacked out changeset 63af4528bd9c (bug 1023947)\nBacked out changeset b6bb38846333 (bug 1027713)\nBacked out changeset c0045bb1849e (bug 1027713)\nBacked out changeset 274b2b25d167 (bug 1027713)\nBacked out changeset e0bba6f4966f (bug 1027713)" + }, + "fixing_commit": { + "node": "bf4ed2946c45eb7929063705f9356f327cc59b1f", + "pushdate": "2014-07-30 00:01:50", + "desc": "Bug 1027713 - Part 1 - Add a volume API in cubeb and use it instead of doing our own soft gain. r=kinetik" + } + }, + { + "bug_id": 1009628, + "inducing_commit": { + "node": "249413f56629aa546da09374ab0710c53ff1f558", + "pushdate": "2014-08-06 12:34:50", + "desc": "Bug 1009628 - Part 1: Need mozAfterRemotePaint event for remote iframes. r=smaug." + }, + "backout_commit": { + "node": "135d84fc684be2e759f8c8305080e9e365a0ae89", + "pushdate": "2014-08-06 12:34:50", + "desc": "Backed out changeset 249413f56629 (bug 1009628) for causing permanent orange." + }, + "fixing_commit": { + "node": "604268a63c4f68ae8eb4b19f44cd756e2ca37479", + "pushdate": "2014-08-06 12:34:50", + "desc": "Backed out changeset 0366dfc36340 (bug 1009628)" + } + }, + { + "bug_id": 1009628, + "inducing_commit": { + "node": "3fb0e4bb67f52ce2ee62fa19788728e8cceceda0", + "pushdate": "2014-08-06 12:34:50", + "desc": "Bug 1009628 - Part 2: Asynchronous tab switching for tabbrowser that waits on MozAfterRemotePaint to fire from a remote browser. r=dao,Enn." + }, + "backout_commit": { + "node": "eb6854a81836972e35a1eefa2182e097157ffeca", + "pushdate": "2014-08-06 12:34:50", + "desc": "Backed out changeset 3fb0e4bb67f5 (bug 1009628)" + }, + "fixing_commit": { + "node": "604268a63c4f68ae8eb4b19f44cd756e2ca37479", + "pushdate": "2014-08-06 12:34:50", + "desc": "Backed out changeset 0366dfc36340 (bug 1009628)" + } + }, + { + "bug_id": 946065, + "inducing_commit": { + "node": "4c4e45496cac9aed9b60898e42b91e341ea74c80", + "pushdate": "2014-08-07 03:31:37", + "desc": "Bug 946065 - Part 8: Move content/svg/ to dom/ and flatten subdirectories. r=jwatt" + }, + "backout_commit": { + "node": "8d97586ffcfca80adc6c3bafbba8ecfe1bf78a5c", + "pushdate": "2014-08-07 03:31:37", + "desc": "Backed out changeset 4c4e45496cac (bug 946065) for mochitest crashes on windows; CLOSED TREE" + }, + "fixing_commit": { + "node": "8b65ed5b350703c6c79c289bdc947d70991ce894", + "pushdate": "2014-08-07 03:31:37", + "desc": "Backed out changeset d99f8aaeb32b (bug 946065)" + } + } +] From 3eb6605a9e9721a7efbaa0c624b525483845939c Mon Sep 17 00:00:00 2001 From: Benjamin Mah Date: Fri, 3 May 2024 14:34:25 -0400 Subject: [PATCH 05/38] Removed old datasets --- dataset/cleaned_backout_data.json | 4505 -- dataset/processed_backout_data.json | 101119 ------------------------- dataset/raw_backout_data.json | 101119 ------------------------- 3 files changed, 206743 deletions(-) delete mode 100644 dataset/cleaned_backout_data.json delete mode 100644 dataset/processed_backout_data.json delete mode 100644 dataset/raw_backout_data.json diff --git a/dataset/cleaned_backout_data.json b/dataset/cleaned_backout_data.json deleted file mode 100644 index 3ecb1fcfad..0000000000 --- a/dataset/cleaned_backout_data.json +++ /dev/null @@ -1,4505 +0,0 @@ -[ - { - "node": "3a2a9e0c5c633a413efbf2db5110a978f7ebf055", - "bug_id": 439110, - "desc": "Backed out changeset f201baf7bf04 (bug 439110), was causing unit-test failures", - "pushdate": "2008-06-18 23:00:40", - "backsout": [ - "f201baf7bf047e4180a09b6106f2a8846ae572ee" - ] - }, - { - "node": "294bf662e8c0a3e3a1bc74a9dbd6d4d499c30e7f", - "bug_id": 433373, - "desc": "Backed out changeset 5bffc31ff797 (bug 433373) -- first attempt didn't handle page scaling correctly.", - "pushdate": "2008-06-24 18:54:31", - "backsout": [ - "5bffc31ff797e687688309eda37f407a3e5e82d8" - ] - }, - { - "node": "4f1b1553985c88372878dffe93a79988a4f1c8a1", - "bug_id": 363706, - "desc": "Back out 0b57ada5d4b2 due to mochitest failures on at least Windows. (Bug 363706)", - "pushdate": "2008-07-02 05:02:11", - "backsout": [ - "0b57ada5d4b243b60ac0834131c56bbadf8b935d" - ] - }, - { - "node": "487bd2c4044a093a8f1e108c7c925d1b55e85975", - "bug_id": 363706, - "desc": "Back out 0b1995eab10f due to mochitest failures on at least Windows. (Bug 363706)", - "pushdate": "2008-07-02 05:02:11", - "backsout": [ - "0b1995eab10f9e451d0060ee41819b9edfea12d5" - ] - }, - { - "node": "847ff9bffc86ff91a8da3ea1b9f5b38bc335bce0", - "bug_id": 442949, - "desc": "Backed out changeset c9b5882bf6f6 per bug 442949.\nThis changeset is only being backed out because it depends on the sqlite upgrade.", - "pushdate": "2008-07-08 14:15:34", - "backsout": [ - "c9b5882bf6f69406c24d4c8a277122b53b207dcd" - ] - }, - { - "node": "00f39bafc70ebf3fb8ee8911ad097624cf2383a0", - "bug_id": 442949, - "desc": "Backed out changeset 1d72dd9072ab for Bug 442949 (Ts regression)", - "pushdate": "2008-07-08 14:15:34", - "backsout": [ - "1d72dd9072ab4f8693258fd4221266c030793c86" - ] - }, - { - "node": "6d3ecb00edf7a48850ff6ea170af781d6339b363", - "bug_id": 442949, - "desc": "Backed out changeset e741c9c886f7 for bug 442949 (Ts regression)", - "pushdate": "2008-07-08 14:15:34", - "backsout": [ - "e741c9c886f780d08c40b9d84e65bb7f496a0203" - ] - }, - { - "node": "ad98cff74097a54fc30245d5f7747d095834e68a", - "bug_id": 443220, - "desc": "Backed out changeset 12412df591a0 (bug 443220)", - "pushdate": "2008-07-08 22:34:54", - "backsout": [ - "12412df591a0b599c76c2a19e0251a7c46a419d9" - ] - }, - { - "node": "337a43c872960010037890048fccfc08e2af8a96", - "bug_id": 374754, - "desc": "Backed out changeset 5c009a853d70 for hitting a fatal JS_Assert during xpcshell unit tests (xpcom/unit/test_bug374754.js) on the DO_NEXT_OP(JSOP_INCNAME_LENGTH) line on !JS_THREADED_INTERP platforms (Windows).", - "pushdate": "2008-07-19 04:53:17", - "backsout": [ - "5c009a853d70d952b2b2c209df33c00a02efb400" - ] - }, - { - "node": "16708f23daf5fbf23e298eeb28d7693e42ec6d34", - "bug_id": 446621, - "desc": "Backout 6831521f03ac to fix Bug 446621 - Slowdown on AutoComplete - AwesomeBar. a=beltzner", - "pushdate": "2008-07-22 15:50:07", - "backsout": [ - "6831521f03ac63ba33b6804656f78c4ea6108355" - ] - }, - { - "node": "cab5a570f46e10259bcd9152bcd3fab535a35e5c", - "bug_id": 432599, - "desc": "Backout changesets d811aa4cf0cf and 96ca77c43cb9 from bug 432599", - "pushdate": "2008-07-29 23:05:50", - "backsout": [ - "d811aa4cf0cf2c0c23fb423ed23a452bd4f94cf0", - "96ca77c43cb9addf18588d138e910a5d201a1111" - ] - }, - { - "node": "3bd5b0f13df3cce01677022941d92e14747eca78", - "bug_id": 449422, - "desc": "Backed out changeset 7362e63c648e (relanding bug 449422)", - "pushdate": "2008-08-14 04:20:03", - "backsout": [ - "7362e63c648e" - ] - }, - { - "node": "93a88a69a3df3d36b4b4c28126cd38ebd04026b4", - "bug_id": 449168, - "desc": "Backed out changeset 4b2c67fe7e6b (relanding bug 449168)", - "pushdate": "2008-08-14 04:51:30", - "backsout": [ - "4b2c67fe7e6b" - ] - }, - { - "node": "afeaf72a5266b81ccdc006fe1d923aea93f88811", - "bug_id": 121341, - "desc": "Backed out changeset db55605b2a4c (relanding bug 121341)", - "pushdate": "2008-08-14 05:00:00", - "backsout": [ - "db55605b2a4c" - ] - }, - { - "node": "573c5b6e8ec057ba45cc91e88b5ec74403fda2c8", - "bug_id": 31290, - "desc": "Backed out changeset e92e18d52d71 due to the following test failures on Windows:\n*** 31290 ERROR TEST-UNEXPECTED-FAIL | /tests/dom/tests/mochitest/general/test_offsets.xul | svgbase bounding rect width - got 45, expected 0\n*** 31291 ERROR TEST-UNEXPECTED-FAIL | /tests/dom/tests/mochitest/general/test_offsets.xul | svgbase bounding rect height - got 20, expected 0\n*** 31292 ERROR TEST-UNEXPECTED-FAIL | /tests/dom/tests/mochitest/general/test_offsets.xul | svgbase bounding rect right - got 45, expected 0\n*** 31293 ERROR TEST-UNEXPECTED-FAIL | /tests/dom/tests/mochitest/general/test_offsets.xul | svgbase bounding rect bottom - got 20, expected 0\n*** 31306 ERROR TEST-UNEXPECTED-FAIL | /tests/dom/tests/mochitest/general/test_offsets.xul | svgrect bounding rect width - got 45, expected 0\n*** 31307 ERROR TEST-UNEXPECTED-FAIL | /tests/dom/tests/mochitest/general/test_offsets.xul | svgrect bounding rect height - got 20, expected 0\n*** 31308 ERROR TEST-UNEXPECTED-FAIL | /tests/dom/tests/mochitest/general/test_offsets.xul | svgrect bounding rect right - got 45, expected 0\n*** 31309 ERROR TEST-UNEXPECTED-FAIL | /tests/dom/tests/mochitest/general/test_offsets.xul | svgrect bounding rect bottom - got 20, expected 0", - "pushdate": "2008-08-19 16:22:27", - "backsout": [ - "e92e18d52d714ded67f557aed34aed09e1883f0e" - ] - }, - { - "node": "2c020a9f03c14446c2b28966511240cc2883bcc5", - "bug_id": 430061, - "desc": "Backed out changeset e63a23edb90c due to Rlk regression (bug 430061).", - "pushdate": "2008-08-19 21:43:06", - "backsout": [ - "e63a23edb90c92f0cd591e0507906f14978a1f4f" - ] - }, - { - "node": "c82226c56072c7c85c7d9e614fa1c84b65d42592", - "bug_id": 261074, - "desc": "Backed out changeset c0f5a0af84dd to try to fix windows orange (Bug 261074).", - "pushdate": "2008-08-19 22:46:59", - "backsout": [ - "c0f5a0af84dd0fe9602953dcfa00d088716fde4a" - ] - }, - { - "node": "aa14280d31fb3486a3371581ae6a04461738d1eb", - "bug_id": 356295, - "desc": "Backed out changeset 30d900751ca9 to fix unit test orange (Bug 356295)", - "pushdate": "2008-08-20 00:57:00", - "backsout": [ - "30d900751ca93a98ccc4fca46179e44d4d900935" - ] - }, - { - "node": "695ba8eac3dc1e4a5206ff29f25a36267bc2d3e0", - "bug_id": 442812, - "desc": "Backed out changeset 1e3d4775197a (bug 442812)", - "pushdate": "2008-08-20 05:59:47", - "backsout": [ - "1e3d4775197af65a4f9bcebf2280ad0d710b722a" - ] - }, - { - "node": "f65e7540fe97621babc413d15060df2cb3d86e81", - "bug_id": 442806, - "desc": "Backed out changeset ea551e6f0f40 (bug 442806)", - "pushdate": "2008-08-20 05:59:47", - "backsout": [ - "ea551e6f0f409d0afd550d69cfbdd8a8d816c336" - ] - }, - { - "node": "2053bab906dc548240c7d3e279af04ffcac48843", - "bug_id": 442803, - "desc": "Backed out changeset bbaf0d5fef61 (bug 442803)", - "pushdate": "2008-08-20 05:59:47", - "backsout": [ - "bbaf0d5fef61d03cb6fbb41f334eeccb6e48599f" - ] - }, - { - "node": "a9d2103187b145aec59e893a66ef3eec6efec569", - "bug_id": 436531, - "desc": "Backed out changeset 2e3d61018e3d (Bug 436531)", - "pushdate": "2008-08-20 07:43:30", - "backsout": [ - "2e3d61018e3d21e3fd7cd178f0636a68cdc25fd0" - ] - }, - { - "node": "e2f89ccef0e4b9e4f7cd72206a148692472b38dc", - "bug_id": 418051, - "desc": "Backed out changeset af00b3f27c64 (Bug 418051)", - "pushdate": "2008-08-20 08:16:26", - "backsout": [ - "af00b3f27c646294873083d5e319b109810318ee" - ] - }, - { - "node": "ada680794b55d8ff552d5c3d73811725fef56e08", - "bug_id": 419562, - "desc": "Backed out changeset 1c69f587516b (Bug 419562)", - "pushdate": "2008-08-20 09:43:02", - "backsout": [ - "1c69f587516be67e1adae3f7a2b913d13e9fb958" - ] - }, - { - "node": "cafe838a9b87c8a80a674a2aa3acb890d2d4d37c", - "bug_id": 367052, - "desc": "Backed out changeset f468ae1633d4 (bug 367052)", - "pushdate": "2008-08-20 10:48:44", - "backsout": [ - "f468ae1633d421c84960427ce3550176449b7832" - ] - }, - { - "node": "da0fa455f1af06307d92b7a5a953a3d24b2641da", - "bug_id": 446529, - "desc": "Backed out changeset d55aac0ec553, bug 446529 - Disable discretionary ligatures on Mac, due to reftest failures on mac\n\nREFTEST TEST-UNEXPECTED-FAIL | file:///builds/slave/trunk_darwin_mini01/build/layout/reftests/text/wordwrap-01.html |\nREFTEST TEST-UNEXPECTED-FAIL | file:///builds/slave/trunk_darwin_mini01/build/layout/reftests/text/wordwrap-03.html |", - "pushdate": "2008-08-20 14:44:22", - "backsout": [ - "d55aac0ec553a9c93c1e3a33c867a98f1fc23b39" - ] - }, - { - "node": "e376bc87ac4ac55653d08eae143ceeff73f0c2bf", - "bug_id": 442806, - "desc": "Backed out changeset ebafb9df6ce0 (bug 442806)", - "pushdate": "2008-08-25 06:12:07", - "backsout": [ - "ebafb9df6ce0aaf17bb68508ceded54ce15114c1" - ] - }, - { - "node": "5e208ee3e1cc379390bf83d2acd5aa2d2d28a40c", - "bug_id": 449027, - "desc": "Backed out changeset 47db77d641d4 from bug 449027", - "pushdate": "2008-08-28 09:58:46", - "backsout": [ - "47db77d641d43037314e0993cf18d6e41b1548d6" - ] - }, - { - "node": "f1bb365372c6d7f74e199deea15cc6c632c5d180", - "bug_id": 422792, - "desc": "Backed out changeset 6b496b906af4, bug 422792", - "pushdate": "2008-08-29 20:37:43", - "backsout": [ - "6b496b906af4fedb878b3e9d5c47347d0444bae3" - ] - }, - { - "node": "62e63419dfb3f79ca8825b93434e34ab626a3efd", - "bug_id": 454186, - "desc": "Backed out changeset 18b48ea2b188\nto fix Bug 454186\nSM crashes when try to download file [@ nsString::ToInteger - nsTreeBodyFrame::PaintProgressMeter]", - "pushdate": "2008-09-08 13:47:42", - "backsout": [ - "18b48ea2b18863bf780186313d185f1b30bf3646" - ] - }, - { - "node": "4b5063537a0f9c4a6dfeafe5bffcd4db54c82d08", - "bug_id": 454186, - "desc": "Backed out changeset 54215f2cbc66\nto fix Bug 454186\nSM crashes when try to download file [@ nsString::ToInteger - nsTreeBodyFrame::PaintProgressMeter]", - "pushdate": "2008-09-08 13:47:42", - "backsout": [ - "54215f2cbc66b64699a179a76ee3d553d3104192" - ] - }, - { - "node": "713e17a251656ca02e552f7131ae0aa3e547b384", - "bug_id": 454896, - "desc": "Backed out changeset 38140c8a8327 to see if it fixes Bug 454896 (sporadic RLk)", - "pushdate": "2008-09-12 01:03:43", - "backsout": [ - "38140c8a8327cd44bffab609c00a732d7de8085b" - ] - }, - { - "node": "9d9569916616f85f22b692a02041af3026eb43de", - "bug_id": 451918, - "desc": "Backed out changeset 6772511dc81a (bug 451918) to see if it fixes broken linux leak stats (bug 455095)", - "pushdate": "2008-09-12 23:57:52", - "backsout": [ - "6772511dc81a32de19fcf3c71f89b9a18ad49e28" - ] - }, - { - "node": "d793ccba25a5557255063ef27f3a3ab373cac258", - "bug_id": 444864, - "desc": "Backed out changeset f82532e1b6b5 due to reftest failures (b=444864,444260,449111)", - "pushdate": "2008-09-15 17:33:09", - "backsout": [ - "f82532e1b6b5d31661a0f07c1d1d28350b85dda2" - ] - }, - { - "node": "0879f08590a9fe2a8b207ce82135408d878310cf", - "bug_id": 325842, - "desc": "Back out changeset 493bbc89ca54 / Bug 325842", - "pushdate": "2008-09-18 11:10:27", - "backsout": [ - "493bbc89ca54a6e6dd1d8a7b2142e51adf350d9e" - ] - }, - { - "node": "406532c41fca52eb8570b727f8e8a5a614e5e84c", - "bug_id": 455836, - "desc": "Backed out changeset b3783fc5a9c9 (bug 455836) - TREE IS CLOSED!", - "pushdate": "2008-09-18 14:54:30", - "backsout": [ - "b3783fc5a9c9a8d2a4553d895bbda08cdb4d8bc0" - ] - }, - { - "node": "118ab5caf67dcf39de83014ca5e95b1a8cd62bdb", - "bug_id": 455791, - "desc": "backout f51aad9e6a88 due to intermittent talos ts failures b=455791", - "pushdate": "2008-09-19 03:04:07", - "backsout": [ - "f51aad9e6a88703c2d22f8fd525ecea06c96ab34" - ] - }, - { - "node": "7aac9d9d651b0610c41d22707111c54271e625ff", - "bug_id": 455403, - "desc": "Backed out changeset aab6b12f4a2b (Bug 455403) due to reftest failures from landing patches in the wrong order, and unexplained reftest hangs.", - "pushdate": "2008-09-19 23:05:30", - "backsout": [ - "aab6b12f4a2b3108f273db2b8fac226c2f0a983d" - ] - }, - { - "node": "783541270c298725bcc433342ad12069551148fa", - "bug_id": 452899, - "desc": "Backed out changeset fa8fbd81159d\nBug 452899 - Don't explicitly create the statement wrapper - storage does it for us; r=(dolske + sdwilsh)\nto try to fix leak", - "pushdate": "2008-09-20 17:43:00", - "backsout": [ - "fa8fbd81159d415304e12c3273f040416f4e7fd5" - ] - }, - { - "node": "01d095208bdfd2fb3a09b91b5055f02dae58f02a", - "bug_id": 403174, - "desc": "Backed out changeset 84bbd1f88fac (bug 403174)", - "pushdate": "2008-09-22 08:24:43", - "backsout": [ - "84bbd1f88fac83254a04effe3f78803097c98d2c" - ] - }, - { - "node": "2f9f1ea54be78fe8fe754bfbc235d7a369f730cf", - "bug_id": 453388, - "desc": "Backed out changeset e2614011f194 - Bug 453388 - the better solution is to allow static objects and link libjs.so with g++ so that _init and _fini run static constructors/destructors correctly backout r=crowder", - "pushdate": "2008-09-23 07:43:09", - "backsout": [ - "e2614011f194b8d65b4cc912356372624ef69209" - ] - }, - { - "node": "71d860a3a3006a0ea8b2d3dedfcec3810c64928c", - "bug_id": 453388, - "desc": "Backed out changeset fc4a8cc07c9f - bustage fix from the first patch for bug 453388 which is also being backed out", - "pushdate": "2008-09-23 07:43:09", - "backsout": [ - "fc4a8cc07c9f" - ] - }, - { - "node": "6e6ac7a9540d42b871819923f441fd6d057e7718", - "bug_id": 455813, - "desc": "Backed out changeset 9841b5e5cf10\nBug 455813 - Windows PGO builds fail when --disable-tests is set; r=ted.mielczarek", - "pushdate": "2008-09-24 05:18:25", - "backsout": [ - "9841b5e5cf10b3c329906cd5293938143c8c19b7" - ] - }, - { - "node": "04a7c91e0f31b21d076ac52037ad6313dbefe0bd", - "bug_id": 454781, - "desc": "Backed out changeset fa432b23baa5. (Backing out bug 454781 to investigate mochitest leaks)", - "pushdate": "2008-09-25 00:19:08", - "backsout": [ - "fa432b23baa573eb0798e7507510f9cac6983739" - ] - }, - { - "node": "c2efb31d59857d6d3f8458080d44dbad60f4f135", - "bug_id": 385263, - "desc": "backout 23e255271851 b=385263", - "pushdate": "2008-09-26 08:01:41", - "backsout": [ - "23e255271851120a69110eea09f9f95aa3d4040f" - ] - }, - { - "node": "f523d647bc5d8392a3bc2c312820694cc0f87291", - "bug_id": 417037, - "desc": "Backed out changeset b2d48e54c537 (bug 417037)\nWe have to backout bug 449443 because we have to backout bug 456910 because of\na Tp regression, which means we need to back this out :(", - "pushdate": "2008-09-26 19:56:06", - "backsout": [ - "b2d48e54c5373f880099f13bc87a6fb2d7ec5788" - ] - }, - { - "node": "f2f0728d979fabd8d40cab94a5d653ceab06e360", - "bug_id": 454997, - "desc": "Backout changeset 8fe1cd2d3c66 (bug 454997) because of regressions and crashes", - "pushdate": "2008-09-28 05:53:26", - "backsout": [ - "8fe1cd2d3c6699e10d3aecd2557a0885687021dc" - ] - }, - { - "node": "3db739625352ee5e378899dc583193a1c1ba0f25", - "bug_id": 382690, - "desc": "Backed out changeset 93928936b1ab bug 382690 due to check-in during string freeze.", - "pushdate": "2008-09-28 14:56:16", - "backsout": [ - "93928936b1abfd86368b1d86fb649d7679c4bfbb" - ] - }, - { - "node": "996d2802d3f2762122f9cb25a4b2302d2facbb8f", - "bug_id": 364315, - "desc": "Backed out changeset 961d90be2ba8 from bug 364315 due to random crashes in\ntests.", - "pushdate": "2008-09-30 12:09:36", - "backsout": [ - "961d90be2ba80d1ecafb00edc027908beca1e733" - ] - }, - { - "node": "4e7a2d27d63649d9b58a772f6f29903f2601d607", - "bug_id": 433616, - "desc": "Backed out changeset c1f6a55626be (bug 433616, part 2) because it probably caused a Windows XP performance regression.", - "pushdate": "2008-09-30 16:53:08", - "backsout": [ - "c1f6a55626be9cf9fb4b5b35a90444c7d17f35bd" - ] - }, - { - "node": "abf1f4529de2161662d54fbc398943b5d0eef15d", - "bug_id": 426932, - "desc": "Backed out changeset 38a48d485876 (bug 426932).", - "pushdate": "2008-09-30 19:25:44", - "backsout": [ - "38a48d48587618f7a96c879afc96184593c5d9ea" - ] - }, - { - "node": "507fca9fa64116a2bf6829c6b5f5fbf9414f40da", - "bug_id": 453723, - "desc": "Backed out changeset 74aad43f37a5 (bug 453723).", - "pushdate": "2008-09-30 19:25:44", - "backsout": [ - "74aad43f37a5370a6e19893ccb631af1c54853b5" - ] - }, - { - "node": "2eade6ea592b184c39b36f93951cf4335de3e24e", - "bug_id": 457194, - "desc": "Backed out changeset a9838a973cdd from bug 457194 due to failing mochitest", - "pushdate": "2008-10-01 15:41:18", - "backsout": [ - "a9838a973cdd044ae123f2ddfbed41d6a591120b" - ] - }, - { - "node": "115934f340f058345955b0458f60fae44e4e41c8", - "bug_id": 114649, - "desc": "Backed out changeset 6f3797124c84: Relanding: Fire resize events every 200ms during resizing, not just 200ms after resizing stops. (Bug 114649) r+sr=roc", - "pushdate": "2008-10-02 03:12:35", - "backsout": [ - "6f3797124c84db28a4845fd90767837b711f092f" - ] - }, - { - "node": "f9dccfb26ec9faa5399d84113fcbfd572ed90393", - "bug_id": 373701, - "desc": "Backed out changeset d07aa0d0712a: Relanding: Bug 373701. Make sure to properly cancel multipart image loads when they need canceling. r=joedrew, sr=biesi", - "pushdate": "2008-10-02 13:53:43", - "backsout": [ - "d07aa0d0712a" - ] - }, - { - "node": "5df4c3d437eeaa49e2121fca1eae9cdd52d876eb", - "bug_id": 433616, - "desc": "Backed out changeset 4e7a2d27d636: relanding Bug 433616 part 2. Implement loading of external resource documents. r=jst, sr=roc", - "pushdate": "2008-10-04 20:01:17", - "backsout": [ - "4e7a2d27d63649d9b58a772f6f29903f2601d607" - ] - }, - { - "node": "a8eb5fc88c015017c7eaa662a81d8631df00e382", - "bug_id": 455311, - "desc": "Backed out changeset 6357eb31cec6 (bug 455311) for causing performance regression bug 458065.", - "pushdate": "2008-10-06 02:56:35", - "backsout": [ - "6357eb31cec64741a90e209cb55af1159fb30f25" - ] - }, - { - "node": "6681dc7f1293b6e328450ab0df24f73b5a96f536", - "bug_id": 455990, - "desc": "Backed out changeset a8cfcc9b6d5c: relanding Bug 455990 - Close button on last open tab should be hidden. r=gavin", - "pushdate": "2008-10-06 03:45:11", - "backsout": [ - "a8cfcc9b6d5c" - ] - }, - { - "node": "e3b597862e2a2d0f6556f7a6a439e1b1ee487521", - "bug_id": 455311, - "desc": "Back out changeset a8eb5fc88c01: relanding bug 455311. Treat .url files as redirects. r+sr=biesi", - "pushdate": "2008-10-06 20:45:30", - "backsout": [ - "a8eb5fc88c015017c7eaa662a81d8631df00e382" - ] - }, - { - "node": "cfaa8db2c177f79ebc5392db50bc0d7cdcc97b6f", - "bug_id": 365467, - "desc": "Backed out changeset 893b2c3b521f (Bug 365467 Focus controller's initial window and element can get out of sync r+sr=jst)", - "pushdate": "2008-10-08 16:44:01", - "backsout": [ - "893b2c3b521fe8fd24da4abada4efe94220b370b" - ] - }, - { - "node": "1d8c68c2989e53ab13b883ce0e2023e049b9894e", - "bug_id": 394611, - "desc": "Backed out changeset 2f36cde1694c (bug 394611, due to leaks)", - "pushdate": "2008-10-11 04:42:26", - "backsout": [ - "2f36cde1694c7f19488a10cbb6f15e38f3f1f02e" - ] - }, - { - "node": "d8a6df699a2635c9bf3c02a97941a0a540844200", - "bug_id": 398928, - "desc": "Backed out changeset 151e51ec625e (bug 398928) because of unit test orange", - "pushdate": "2008-10-13 12:34:11", - "backsout": [ - "151e51ec625e910335112572d678bdc9fecd6ad8" - ] - }, - { - "node": "726c49f3ea91e36175a708bafe4607194eadd56b", - "bug_id": 411726, - "desc": "Backed out changeset 82af7163534f\n(Bug 411726 -- Time offset and zone code are set wrong for some locales, r=mrbkap)", - "pushdate": "2008-10-14 21:21:14", - "backsout": [ - "82af7163534f427dfd880c82d3582de8011d25f0" - ] - }, - { - "node": "fdb6f474fc26c902aaeae57c9a2c39c37de65819", - "bug_id": 459780, - "desc": "Backed out changeset f678aac23eae from bug 459780 because it caused the regression in bug 460643.", - "pushdate": "2008-10-20 01:26:21", - "backsout": [ - "f678aac23eaead01ecc2794fd3253ca16356a759" - ] - }, - { - "node": "6db7098c04e46b24fc7731203602e19a3921c588", - "bug_id": 461410, - "desc": "Backed out changeset affcc1c08bc0 (deCOM frame enumerator) due to regression from it or bug 461410.", - "pushdate": "2008-10-28 06:59:42", - "backsout": [ - "affcc1c08bc0659efcc34c62edf3e1424b80a7dc" - ] - }, - { - "node": "b13e55f6cfda45d7fef4b6621e7681a7532edf2c", - "bug_id": 461410, - "desc": "Backed out changeset eda9709dc586 (deCOM frame enumerator) due to regression from it or bug 461410.", - "pushdate": "2008-10-28 06:59:42", - "backsout": [ - "eda9709dc586d8eb86eb9adb131a6999f6c13119" - ] - }, - { - "node": "66c23339bd12aca0833a922b63d10477ea5b224b", - "bug_id": 461212, - "desc": "Backed out changeset d4c9a0776667 (deCOM nsILineEnumerator) due to regression from it or bug 461212", - "pushdate": "2008-10-28 06:59:42", - "backsout": [ - "d4c9a0776667d05b8a1f62ec693c995ef4e327b3" - ] - }, - { - "node": "0370470de0650dabd61aac4d282eb60d1b7aa014", - "bug_id": 322475, - "desc": "Backed out changeset d7338fec7266 (from bug 322475, which made us construct all our image loaders at frame construction time) because of issues with propagation of backgrounds to the canvas (bug 460796).", - "pushdate": "2008-10-28 22:52:00", - "backsout": [ - "d7338fec726672f07714c7bfc57c765961a4d984" - ] - }, - { - "node": "01e2b22db875bc378c6668f160a7ef4630806295", - "bug_id": 322475, - "desc": "Backed out changeset 7f708623bf59 (from bug 322475, which made us construct all our image loaders at frame construction time) because of issues with propagation of backgrounds to the canvas (bug 460796).", - "pushdate": "2008-10-28 22:52:00", - "backsout": [ - "7f708623bf5973c81d07f80c8e0f405fcecfd6a9" - ] - }, - { - "node": "80654a9e4692b8cc671683911c2e53240be3df1c", - "bug_id": 322475, - "desc": "Backed out changeset 23eebebb8b48 (from bug 322475, which made us construct all our image loaders at frame construction time) because of issues with propagation of backgrounds to the canvas (bug 460796).", - "pushdate": "2008-10-28 22:52:00", - "backsout": [ - "23eebebb8b48ba5281f21e1da4d9873f4e9de918" - ] - }, - { - "node": "a935c0b1617856bc62d2aa0f2d12b3e109f831d8", - "bug_id": 456662, - "desc": "back out changeset 47259b642835, b=456662", - "pushdate": "2008-10-28 23:59:08", - "backsout": [ - "47259b6428353b03a48afcb9abd7a8690e8cb5d4" - ] - }, - { - "node": "429bfa1c5dea5601da90aba52524b302a1472ab9", - "bug_id": 454561, - "desc": "Backed out changeset b0d41235146a\nBug 454561 disable tracing when JavaScript-Debugger is enabled [ @ jsd_lock ]\nthis isn't the correct fix\nr=graydon", - "pushdate": "2008-10-31 11:54:34", - "backsout": [ - "b0d41235146aadb5a4bc0b86f61fa8e404e55dbb" - ] - }, - { - "node": "cf6c01973a893ff010964216f3e4d75b1bd12347", - "bug_id": 462050, - "desc": "Backed out changeset 84a9e53373c7\nBackout of bug 462050. We are going to try to reland this later to get reliable\nperformance numbers.", - "pushdate": "2008-11-01 00:43:02", - "backsout": [ - "84a9e53373c72d2ee0f6fc41eecc14813376b84c" - ] - }, - { - "node": "8b08744c500c3b7cb1929f2ab2a5b015f3b89eee", - "bug_id": 461422, - "desc": "Backed out changeset 157abfbcb96e (bug 461422) tree is closed", - "pushdate": "2008-11-03 22:30:47", - "backsout": [ - "157abfbcb96efce46c4cc7bfaae220f8a52a1509" - ] - }, - { - "node": "1830e12fe251edd7afb8671795bd127bebd70004", - "bug_id": 462986, - "desc": "Backed out changeset fbae114d6133 from bug 462986 due to test failures", - "pushdate": "2008-11-04 12:03:56", - "backsout": [ - "fbae114d613355dd05cb1926ad6291159ed2530f" - ] - }, - { - "node": "0d823e9893ad2dc95c4e402b280c01804c543721", - "bug_id": 436304, - "desc": "Backed out changeset 9b96bcff860b from bug 436304 - Implement All Tabs panel\nwith previews and search.", - "pushdate": "2008-11-04 14:21:32", - "backsout": [ - "9b96bcff860b407c869735835675a5a96c5376e7" - ] - }, - { - "node": "1a2fefd12905bbc6aae0b495c005959593b11fce", - "bug_id": 460811, - "desc": "Back out changeset b83d3c8ac166 (bug 460811) to try to fix bustage", - "pushdate": "2008-11-04 23:48:43", - "backsout": [ - "b83d3c8ac166e5f92f36fa44df498e74efd41832" - ] - }, - { - "node": "b5cba763fe6da4cd635d05a00ac63a13e62a3371", - "bug_id": 460811, - "desc": "Back out changeset b83d3c8ac166 (bug 460811) to try to fix bustage ... re-adding removed files", - "pushdate": "2008-11-05 00:04:07", - "backsout": [ - "b83d3c8ac166e5f92f36fa44df498e74efd41832" - ] - }, - { - "node": "5b1425e110372a469590cb5e2eeb641b321f7bc0", - "bug_id": 407110, - "desc": "Backed out changeset 10c21d116e5d from bug 407110 to investigate Ts\nregression.", - "pushdate": "2008-11-07 10:15:13", - "backsout": [ - "10c21d116e5dc358a9a11f38d50f79f429a87055" - ] - }, - { - "node": "9a2cbd5d3984c5ac673cef6fcebe32b89c5ae5ef", - "bug_id": 462973, - "desc": "Backed out changeset 4df50933e7cb from bug 462973 to investigate Ts\nregression.", - "pushdate": "2008-11-07 10:55:58", - "backsout": [ - "4df50933e7cb75bb212cfaaf6c19a765a1b5f4d0" - ] - }, - { - "node": "83c8769d5fd9358dad12acf73440372f4a0e9651", - "bug_id": 455057, - "desc": "Backed out changeset 673d1ba18849 from bug 455057 as the likely cause of the\nVista Ts regression", - "pushdate": "2008-11-07 15:21:44", - "backsout": [ - "673d1ba1884979e00447b0fe273c971a6ba5763a" - ] - }, - { - "node": "05c20a65b1df77e59275266e9a70cf3109344b45", - "bug_id": 458851, - "desc": "Backed out changeset d4fe79372140 (bug 458851) due to persistent orange on TraceMonkey tinderboxes.", - "pushdate": "2008-11-08 09:06:43", - "backsout": [ - "d4fe79372140ce13b145097d0c5c380b84eefb0a" - ] - }, - { - "node": "0a765c5ce37d5a6e9f6a9518e3b5df6d1d187530", - "bug_id": 454561, - "desc": "Backed out changeset b0d41235146a\nBug 454561 disable tracing when JavaScript-Debugger is enabled [ @ jsd_lock ]\nthis isn't the correct fix\nr=graydon", - "pushdate": "2008-11-08 09:06:43", - "backsout": [ - "b0d41235146aadb5a4bc0b86f61fa8e404e55dbb" - ] - }, - { - "node": "827edbbc90885ef4742de54252ced8ffbe0b82aa", - "bug_id": 462774, - "desc": "Backed out changeset ec9a1864d1fb from bug 462774, drop JSON.jsm due to OSX\nburning", - "pushdate": "2008-11-14 12:36:21", - "backsout": [ - "ec9a1864d1fbb4b2b4aec31f702004b7f588f8b8" - ] - }, - { - "node": "e10a0f54b14ea85629a77bf6ec0cb7f0e671efbf", - "bug_id": 462878, - "desc": "Backed out changeset 72088d2498c3 from bug 462878 as it was causing\nmochitests to crash", - "pushdate": "2008-11-14 14:51:28", - "backsout": [ - "72088d2498c330f87df142efaa9780e179943d12" - ] - }, - { - "node": "d0c342436fa89f4d72c4ff14e98115a640f52b4e", - "bug_id": 421885, - "desc": "Backed out changeset e4690fcf6f7c, due to reftest failures on linux (421885-1.xml and 403181-1.xml)", - "pushdate": "2008-11-14 21:17:30", - "backsout": [ - "e4690fcf6f7c741c62bb7793bc36afd0b81b1c9e" - ] - }, - { - "node": "75a38b047225e75426cc7ed74b1ab2e45e5ad513", - "bug_id": 453157, - "desc": "Backed out changeset 8329a91db67d - bug 453157, CLOSED TREE", - "pushdate": "2008-11-20 23:18:55", - "backsout": [ - "8329a91db67db793cd4b392318ba55ec3a4e2d77" - ] - }, - { - "node": "1f6bac1d9ed0bef5a0c9af637b63c5a905004de3", - "bug_id": 463384, - "desc": "Backed out changeset 4b5e00c182be from bug 463384 due to it causing bug 465883", - "pushdate": "2008-11-20 23:59:44", - "backsout": [ - "4b5e00c182beb9fef71dcc710258ca76bd94a323" - ] - }, - { - "node": "25a79f857a12b49dc3cf819331cb0457fdafa8db", - "bug_id": 453157, - "desc": "Backed out changeset c54f1957d564 - bug 453157 - build system changes caused mouchi test failures. CLOSED TREE", - "pushdate": "2008-11-21 23:13:52", - "backsout": [ - "c54f1957d56426d1c6e06c51d03dac01b1f116e1" - ] - }, - { - "node": "51249e968f249def386436609c6f2950197e2061", - "bug_id": 453157, - "desc": "Backed out changeset 700ae4e59496 - bug 453157 caused talos oranges. CLOSED TREE", - "pushdate": "2008-11-24 10:37:44", - "backsout": [ - "700ae4e594966339b34ef0467c82997293d32def" - ] - }, - { - "node": "21d4cb73f6fe401968c9f1f10da7ed1cb72e40db", - "bug_id": 435474, - "desc": "Backed out changeset 87f6ae0c4324 (bug 435474) for orange.", - "pushdate": "2008-11-27 21:18:19", - "backsout": [ - "87f6ae0c4324ce0d1b6133fbe6405e8d3baa6934" - ] - }, - { - "node": "ec6ae3ecb8815f3e272e5acf74321173a53ee171", - "bug_id": 453865, - "desc": "Backed out changeset 17842a2d0c7f (bug 453865) due to test failures", - "pushdate": "2008-11-27 22:23:09", - "backsout": [ - "17842a2d0c7f6b7f4dea7e7eb0119e1a8363f62b" - ] - }, - { - "node": "1b45760df6eefe25863b23b93cafc5bc73b6a559", - "bug_id": 561566, - "desc": "Backed out changeset 037f635ced9f (bug 561566)", - "pushdate": "2008-11-28 04:35:30", - "backsout": [ - "037f635ced9f8885ca36bf33edca1d436a1041b4" - ] - }, - { - "node": "3957258880e7d6f4a8a3c7b4aff5475666cbd3b1", - "bug_id": 457215, - "desc": "Backed out changeset 527249758771 (bug 457215) to investigate a performance regression (bug 467102)", - "pushdate": "2008-11-28 19:08:08", - "backsout": [ - "52724975877131b7607539dfd73d25c5bf7c5247" - ] - }, - { - "node": "a6d8a0bcac507df8008225e2683664f29145f395", - "bug_id": 460629, - "desc": "Backed out changeset 0586ee185c87 (bug 460629) to investigate possible performance regression (bug 467102)", - "pushdate": "2008-11-28 19:08:08", - "backsout": [ - "0586ee185c87bf8e109d390d93ddc5df09ca7100" - ] - }, - { - "node": "a3f9376ede1ea7fd6c56c4cb4e6f192267a97683", - "bug_id": 460520, - "desc": "Backed out changeset 6d9d920759cb (bug 460520) to investigate a performance regression (bug 467102)", - "pushdate": "2008-11-28 19:08:08", - "backsout": [ - "6d9d920759cbb115209f7aaf908515683f209e45" - ] - }, - { - "node": "de15a638ac3c89a392ecd313c3562e275e4f3f31", - "bug_id": 407725, - "desc": "Backed out changeset fdd5e4e34241 (bug 407725) to possibly fix random failures of browser/base/content/test/browser_customize.js", - "pushdate": "2008-11-28 23:22:07", - "backsout": [ - "fdd5e4e34241c888c97af7427bd8b15bf6d83446" - ] - }, - { - "node": "5d192e3eee829d162556c9ba7391222c32967154", - "bug_id": 464362, - "desc": "Backed out changeset 30adfe786ffa (bug 464362) in an attempt to fix red on tinderbox.", - "pushdate": "2008-11-29 00:15:56", - "backsout": [ - "30adfe786ffaf746040facfc35f1220f7e221415" - ] - }, - { - "node": "6dc4b85cd8a70d847b884dd841cccbbea3a25277", - "bug_id": 458397, - "desc": "Backed out changeset a4495a0cf2ff (bug 458397) to investigate Txul regression (bug 467102)", - "pushdate": "2008-11-29 01:07:07", - "backsout": [ - "a4495a0cf2ffb3f358b0f149b4a11c19bf5eb426" - ] - }, - { - "node": "09ec08895dea4dfdd86671846bacc89efd1c1114", - "bug_id": 427750, - "desc": "Backed out changeset 96956634349c, bug 427750 - Require python >= 2.4 to build Mozilla (and >=2.5 on Windows). Apparently scratchbox only ships with 2.3 by default.", - "pushdate": "2008-12-02 19:17:03", - "backsout": [ - "96956634349c34be4469035052ee2dcfe6b1853b" - ] - }, - { - "node": "b4b8f7a7212b6cf9a1cb5d84cc5f656d7be4970b", - "bug_id": 466486, - "desc": "Backed out changeset f71446b6fc7e: bug 466486- directories are getting skipped, causing things like xpcshell not to be built", - "pushdate": "2008-12-02 22:18:45", - "backsout": [ - "f71446b6fc7e115a4b81d078c1d27f315c48ecdb" - ] - }, - { - "node": "c0e30a87ce6381e10e3948f0877bd07f180e5caf", - "bug_id": 455381, - "desc": "backout changeset ce8fbd7d222e from bug 455381 to fix windows unit test bustage", - "pushdate": "2008-12-03 23:51:55", - "backsout": [ - "ce8fbd7d222e0a07dc0d9d9585dfe532732830c3" - ] - }, - { - "node": "212de1e1a1048edc5d3976b83694d0533a6c9b87", - "bug_id": 302561, - "desc": "Backed out changeset 7b553bbed53d (bug 302561) due to chrome test crash.", - "pushdate": "2008-12-04 17:57:59", - "backsout": [ - "7b553bbed53d49d4d4dbe486818866542396a5b3" - ] - }, - { - "node": "024fa1c26e347b5281a1cb57854f6eff6687dc90", - "bug_id": 335531, - "desc": "Backed out changeset 78d662c2c878 (Bug 335531) on suspicion of causing mochitest failures in test_bug399284.html on linux & windows unittest boxes.", - "pushdate": "2008-12-05 19:53:14", - "backsout": [ - "78d662c2c8785e04d47f04a584c654830ba20993" - ] - }, - { - "node": "6c07d6a8cd3344d35263acd501806ce01c661c2f", - "bug_id": 466582, - "desc": "Backed out changeset b6f762fde736 (bug 466582) for unit test orange.", - "pushdate": "2008-12-08 23:53:23", - "backsout": [ - "b6f762fde736dbbfec42b91a39c3d363ffc80310" - ] - }, - { - "node": "5af0a48a20d48baf754d6b71831334134effc6aa", - "bug_id": 432938, - "desc": "Backed out changeset 3744204c1576 (bug 432938) due to orange", - "pushdate": "2008-12-08 23:53:23", - "backsout": [ - "3744204c15769a48972e8376324afc78faf4ebfc" - ] - }, - { - "node": "3ce0936aef4054e10469b2af018aa2779f25de57", - "bug_id": 466104, - "desc": "Backed out changeset 957a4fed14af (bug 466104) due to leaks", - "pushdate": "2008-12-09 07:13:47", - "backsout": [ - "957a4fed14af1edfccedb05131ac3385f0d84881" - ] - }, - { - "node": "57c92d052aca6c275b7a08ed52cf7a084d664526", - "bug_id": 463887, - "desc": "Backed out changeset 00563815af18 (bug 463887) because it caused orange.", - "pushdate": "2008-12-12 01:27:07", - "backsout": [ - "00563815af185abbb0c0191666d07415697b11da" - ] - }, - { - "node": "c39b5108ca5184cafb529908608991022e2c63ae", - "bug_id": 468824, - "desc": "Backed out changeset 12f97a5bc3b6 (bug 468824) for causing failed unit test because of differences between config/system-headers and js/src/config/system-headers", - "pushdate": "2008-12-12 02:21:01", - "backsout": [ - "12f97a5bc3b6158d56ccae8d60cc81eae909c4f9" - ] - }, - { - "node": "3cbb1961f1f7047554228cbae0629112ffeaf5f5", - "bug_id": 460926, - "desc": "Backed out changeset 71c3a9d14712 - Bug 460926 - due to crash regression, bug 468845", - "pushdate": "2008-12-15 14:21:49", - "backsout": [ - "71c3a9d147120c5abe9dceb6aaa39991cdfce6d4" - ] - }, - { - "node": "44ef5053568e07019c19149684eae85c1b8a64e4", - "bug_id": 469809, - "desc": "Backed out changeset 0c0bf7bd8e7b for bug 469809", - "pushdate": "2008-12-16 19:54:02", - "backsout": [ - "0c0bf7bd8e7bebe4807bddb81c311d0a120db087" - ] - }, - { - "node": "eceb4663cfd926c4541e094756c1c0bc29500401", - "bug_id": 463806, - "desc": "Backed out changeset 98ea743c9156 (Bug 463806) due to crashes on OS X 10.4 talos boxes.", - "pushdate": "2008-12-17 21:03:07", - "backsout": [ - "98ea743c9156328763a87df55ce5f82e786df338" - ] - }, - { - "node": "e0740bbd7f753add0a5973e031f7388c2c87a2a1", - "bug_id": 470769, - "desc": "Backed out changeset 441f119f1a0c (Bug 470769) due to failures in layout/style/test/test_bug365932.html", - "pushdate": "2008-12-23 16:12:28", - "backsout": [ - "441f119f1a0c0ded15ad4c4e9b563befd64497cc" - ] - }, - { - "node": "f506b00d99f4bfcd16df58ff86c0e435ae3bbcc0", - "bug_id": 453157, - "desc": "Backed out changeset 7184e014cd05 - the patch for bug 453157 bursted tgfx test on Windows.", - "pushdate": "2008-12-26 01:26:36", - "backsout": [ - "7184e014cd05187008c3c579b66e79799e423710" - ] - }, - { - "node": "0928c4fc27901f10216e5ac2509530bea0c62c3b", - "bug_id": 467862, - "desc": "Backed out changeset 73be1c836d7f (bug 467862) to see if that fixes Windows bustage (bug 471097)", - "pushdate": "2008-12-26 03:30:08", - "backsout": [ - "73be1c836d7f066f200ad4565d74bbc9354d2689" - ] - }, - { - "node": "bac73f9f2d2b28630201fe2a2511b3a5bce0f68e", - "bug_id": 462004, - "desc": "Backed out changeset 55e23c647137 (bug 462004) so the backout for bug 467862 to solve bug 471097 can actually build", - "pushdate": "2008-12-26 03:52:55", - "backsout": [ - "55e23c6471379101a0e8a8e1f1f0e0b39b26c711" - ] - }, - { - "node": "de8572d5add0ea788427cc233df093a3e893d76d", - "bug_id": 466224, - "desc": "Backed out changeset e0cce6a738c9 (Bug 466224 - Make quickstubs call nsINode/nsINodeList methods) for failing mochitest", - "pushdate": "2009-01-01 02:43:25", - "backsout": [ - "e0cce6a738c9e2e69f5e4fc8a0bff2f0d71f2e91" - ] - }, - { - "node": "4a377a57eb8ef906c2381bc07212154f5323a402", - "bug_id": 441359, - "desc": "Backed out changeset e31d0d3c28fd (bug 441359)", - "pushdate": "2009-01-05 09:29:44", - "backsout": [ - "e31d0d3c28fd85fd96ae7194d13ec437927cf30a" - ] - }, - { - "node": "e3bab6e6bfc24812be67c4952811ffcd341f37a1", - "bug_id": 437366, - "desc": "Backed out changeset f87b46d44d22 (bug 437366)", - "pushdate": "2009-01-05 22:05:44", - "backsout": [ - "f87b46d44d22cfac0a7a075837827323b341aee6" - ] - }, - { - "node": "0f85bea9dea38a4923d328f57b6ab00d5d751669", - "bug_id": 453157, - "desc": "Backed out changeset adbe8e4b21dc due to tinderbox failures/timeouts (453157).", - "pushdate": "2009-01-08 04:49:11", - "backsout": [ - "adbe8e4b21dcd4dd78d505bf1026d2b02984f636" - ] - }, - { - "node": "d77eef73aeb6917ae4edb654a15fbdf8c9321bc8", - "bug_id": 464838, - "desc": "Backed out changeset b73e063a3f99 (bug 464838)", - "pushdate": "2009-01-08 19:59:07", - "backsout": [ - "b73e063a3f99066828df567b3f73308a6965f837" - ] - }, - { - "node": "48b1dea326bb61ab862b363b4223404e242b2e88", - "bug_id": 469613, - "desc": "Backed out changeset fe759e3fd895 from bug 469613 due to mochitest failures", - "pushdate": "2009-01-09 13:47:34", - "backsout": [ - "fe759e3fd8950cc6c3525b435ef1a389fffc9047" - ] - }, - { - "node": "864061941ee1bd4ae34deec261b8440e4a3a720d", - "bug_id": 396185, - "desc": "Backed out changeset 4c4df6ed1b41 - Bug 396185 - Make nsIFrame not inherit from nsISupports due to mochitest failures... these appear to be crashes in nsGenericHTMLElement::GetEditorInternal.", - "pushdate": "2009-01-09 16:36:02", - "backsout": [ - "4c4df6ed1b41131568d4659d62908214e8c81b7b" - ] - }, - { - "node": "a7489d8375cf34005f915e5bc93f997ae239ed11", - "bug_id": 471685, - "desc": "Backed out changeset 4de172f0d8b8 (bug 471685) with a CLOSED TREE", - "pushdate": "2009-01-09 21:19:50", - "backsout": [ - "4de172f0d8b8018f9a73494979798d6c7fd0f566" - ] - }, - { - "node": "f8a05a8b28eb977cf4a1a2e032e06489fead4d26", - "bug_id": 471685, - "desc": "Backed out changeset c569a8f91c0e (bug 471685) with a CLOSED TREE", - "pushdate": "2009-01-09 21:19:50", - "backsout": [ - "c569a8f91c0ee93e0a1976903b9f7b17070d441e" - ] - }, - { - "node": "e1da61348ddaee37776ea497c30e517b718caa6b", - "bug_id": 469558, - "desc": "Backed out changeset 8f347bf50a53 due to x86-64 build bustage, and the fact that the committed patch didn't match the reviewed patch in an important way (bug 469558)", - "pushdate": "2009-01-13 15:22:11", - "backsout": [ - "8f347bf50a53e16f8aa8e08f14ee92b10cff749f" - ] - }, - { - "node": "c573ff777cc4311b0b57bb909fd1eeac274e9e5f", - "bug_id": 471126, - "desc": "Back out changeset 9fd8740decb8 (Fix for bug 471126 (leak content nodes (and sometimes dom windows) after clicking on nytimes.com articles).) to try to fix orange.", - "pushdate": "2009-01-14 14:13:59", - "backsout": [ - "9fd8740decb8c166955527a0c3cd199de45f0cd9" - ] - }, - { - "node": "d7c6fc72e3cd032ee4c24f903d58730336372dd3", - "bug_id": 473837, - "desc": "Backout 6c571dc80a99, bug 473837", - "pushdate": "2009-01-16 19:16:17", - "backsout": [ - "6c571dc80a993be1b40e6a89cfad2892669d0982" - ] - }, - { - "node": "f5436f305f3a8917c651c798be17d63aa051cdaa", - "bug_id": 462188, - "desc": "Backed out changeset 9b832d90d637 (bug 462188) due to 7 test failures on Linux and 1 on Windows (0 on Mac).", - "pushdate": "2009-01-16 23:01:46", - "backsout": [ - "9b832d90d637d21c08ea8be077ebee04181e6037" - ] - }, - { - "node": "79043b10f34c01764ab4e9a542fdd48257d0e369", - "bug_id": 473721, - "desc": "Backed out changeset 562d8990f33a - with the fix for bug 473721 this workaround is no longer necessary.", - "pushdate": "2009-01-19 01:17:02", - "backsout": [ - "562d8990f33a007ffeb1f55faac701d95948b189" - ] - }, - { - "node": "6f2d2ef53d758d199d16ddb88ca982ecd6e67845", - "bug_id": 468645, - "desc": "Backed out changeset 6849ce51dfef (patch 3 from bug 468645) to fix bug 472353.", - "pushdate": "2009-01-20 21:59:23", - "backsout": [ - "6849ce51dfef0df9838e72af1acdd8a9f407a373" - ] - }, - { - "node": "929d0451c9b5ac985511f01d48d8347a5a788276", - "bug_id": 470971, - "desc": "Backed out changeset 700bca4b693f due to reftest failure (bug 470971)", - "pushdate": "2009-01-21 00:00:44", - "backsout": [ - "700bca4b693f4e21805bc035f36e5b66ae9fdf60" - ] - }, - { - "node": "3b4b3555239203608307ebb31e790e9345ac145c", - "bug_id": 269538, - "desc": "Backed out changeset 525e42406396, bug 269538 (jscpucfg-ectomy) due to Windows TUnit bustage.", - "pushdate": "2009-01-21 22:35:10", - "backsout": [ - "525e4240639636002dc72e6f3df213b1801d8312" - ] - }, - { - "node": "835e35dd544217fb4247d8060836be95497c9b59", - "bug_id": 466410, - "desc": "Backed out changeset e6566d187edd (bug 466410) on suspicion of causing linux reftest failures in 'ogg-video/basic-1.html' and 'ogg-video/zoomed-1.html'", - "pushdate": "2009-01-22 06:37:50", - "backsout": [ - "e6566d187edd0a16c6a630719f2cc49bb4fe7b73" - ] - }, - { - "node": "d27fe7afe11e276037b99a04b77481c687cd8241", - "bug_id": 464954, - "desc": "Backed out changeset 9fc993ac4427 (Bug 464954: Update Access-Control implementation to latest draft and fix some bugs. r/sr=bz) to fix orange.", - "pushdate": "2009-01-22 13:53:44", - "backsout": [ - "9fc993ac4427fd27314961058a0b708b7e8bb0cc" - ] - }, - { - "node": "dffc4413419a5c0b6a88fb51ef81a37bc6c814fe", - "bug_id": 464676, - "desc": "Back out changeset 32dc89bc34ad (Fix for bug 464676 (Cycle collector sometimes unlinks live cycles). r=bent, sr=jst.) to fix orange.", - "pushdate": "2009-01-23 16:06:05", - "backsout": [ - "32dc89bc34ad32b33cbaa6d03617540db6fa2ce7" - ] - }, - { - "node": "173e57cbce97ad7ed4710aacf6486fba023ddbc7", - "bug_id": 462106, - "desc": "Backed out changeset 97907892496f (Bug 462106 - Clear the data copied to clipboard inside the private browsing mode after leaving it; r,sr=roc a=blocking-firefox3.1+) to fix orange.", - "pushdate": "2009-01-24 13:28:32", - "backsout": [ - "97907892496fe9fe3533056e2c82ff6b5cbfa563" - ] - }, - { - "node": "6718f7e66778dc26dadec571c108b29b37df0822", - "bug_id": 464676, - "desc": "Back out changeset e919f0c1dfa9 (Fix for bug 464676 (Cycle collector sometimes unlinks live cycles). r=bent, sr=jst.) to try to fix red on leak tinderboxes.", - "pushdate": "2009-01-24 22:14:11", - "backsout": [ - "e919f0c1dfa9eff51063f3ba1df87e117cc76178" - ] - }, - { - "node": "4d6ed97f82f3c86991c11b90f7f8aabc19f05094", - "bug_id": 464676, - "desc": "Backed out changeset 81428de4b5dc (Fix for bug 464676 (Cycle collector sometimes unlinks live cycles). r=bent, sr=jst.).", - "pushdate": "2009-01-26 08:11:21", - "backsout": [ - "81428de4b5dc5de515d03ed6a3abd5b63f50fdd0" - ] - }, - { - "node": "73bfcdaa1a516a2c25ca7d9f6106ba30a3ca11c5", - "bug_id": 474801, - "desc": "Backed out changeset 6657640cbbb2 - the patch from the bug 474801 caused leak and crash test failures", - "pushdate": "2009-01-27 21:40:57", - "backsout": [ - "6657640cbbb202218a8a87fe0a37e20568b8a219" - ] - }, - { - "node": "2bed5117722e6f63ebf50ec02562946c129bed3f", - "bug_id": 462027, - "desc": "Backed out changeset 17663da1b840 (bug 462027).", - "pushdate": "2009-01-27 21:40:57", - "backsout": [ - "17663da1b840384852133b3b97f6fc0298682d91" - ] - }, - { - "node": "6e5e50fe7ca61ddf885122b938f825af08c81ee2", - "bug_id": 24106, - "desc": "Backed out changeset 05cbbc9f1ae2, which backed out bug 24106 (so this is re-landing 24106).", - "pushdate": "2009-01-27 21:40:57", - "backsout": [ - "05cbbc9f1ae27bc382dad2032c26df0341d1d1db" - ] - }, - { - "node": "799a55cfae002c1a1b0e8a6a089b3b3c007f0668", - "bug_id": 474771, - "desc": "Backed out changeset d50d3681b94e (attempted re-landing of 474771).", - "pushdate": "2009-01-28 18:59:34", - "backsout": [ - "d50d3681b94e" - ] - }, - { - "node": "0cbd3800749f3bffc26297d2307262908464c554", - "bug_id": 475128, - "desc": "Backed out changeset 24917a339f2e (bug 475128) because it didn't patch the IsRoot check nsRuleNode::Sweep, which it needs to.", - "pushdate": "2009-01-29 22:37:28", - "backsout": [ - "24917a339f2e1e6dbe955e5d318d2a6be975abc5" - ] - }, - { - "node": "6efc982bb051993be0ab7d97a8efc25745dbb945", - "bug_id": 451352, - "desc": "Backout changeset 8dd2e82503cd (bug 451352), it broke password manager.", - "pushdate": "2009-01-30 20:02:08", - "backsout": [ - "8dd2e82503cd3d6759178d1066193c07559251c3" - ] - }, - { - "node": "6a6d6d76ebc8fad447f77cf8d537dea380361855", - "bug_id": 469625, - "desc": "Backed out changeset 7246c4dcf997 (bug 469625) due to trace-test.js failures.", - "pushdate": "2009-01-31 19:45:42", - "backsout": [ - "7246c4dcf99709f0fe1e0aefbf812e701f1961ad" - ] - }, - { - "node": "143ac6c35cfacf6ec31a1cb8bce9d295d3889aaf", - "bug_id": 460515, - "desc": "Backed out changeset 7c7ec4bd36a6 (bug 460515 - Remove assumption that xpcshell etc in same directory as app executable) because it's broken on OS X.", - "pushdate": "2009-02-04 20:43:14", - "backsout": [ - "7c7ec4bd36a6aae629950758362b7c589b0e4564" - ] - }, - { - "node": "674246a64ed25f818e72b1982cc20168502c2988", - "bug_id": 474655, - "desc": "Backed out changeset eec3076f3bab (Bug 474655, Warn when nsIDOMCSSStyleDeclaration::GetPropertyCSSValue is called) because we trigger the warning too much ourselves (Bug 475311)", - "pushdate": "2009-02-04 21:25:12", - "backsout": [ - "eec3076f3bab68a031a39a4b01617a3e4c97834b" - ] - }, - { - "node": "c5044341110e9e79210a7547b1a3e75f01b6e58a", - "bug_id": 476345, - "desc": "Backed out changeset d9eff1fb5e60 (bug 476345) due to Windows bustage.", - "pushdate": "2009-02-04 22:39:56", - "backsout": [ - "d9eff1fb5e6034d114cfae7757b4af4542d31f28" - ] - }, - { - "node": "c1dabe868c329e83fc95183ba931d0da48e7d865", - "bug_id": 445087, - "desc": "Backed out changeset d679ac3a8de0 (Bug 445087. Add extra pixel on each side of the glyph's black box returned by GetGlyphOutlineW, to avoid clipping ClearType pixels. r=vlad) to fix orange.", - "pushdate": "2009-02-05 14:35:14", - "backsout": [ - "d679ac3a8de0c6de7339056d80c7d0470b7c0a95" - ] - }, - { - "node": "1dabc169a3c4f6afea7acec07e2fe983bdce6186", - "bug_id": 476643, - "desc": "Backed out changeset 64d5b7cdeb69 - bug 476643 because of Windows bustage (js_LeaveTrace is not a friend API)", - "pushdate": "2009-02-06 01:20:20", - "backsout": [ - "64d5b7cdeb698e8fc8543ff863680d22fce7748c" - ] - }, - { - "node": "27d46c33caddcf8b00b874230d539e283e9ddfa2", - "bug_id": 460882, - "desc": "Backed out changeset 423eea03fb54 (Bug 460882) for being one of the two changesets that's causing chrome and a11y tests not to start.", - "pushdate": "2009-02-07 04:58:06", - "backsout": [ - "423eea03fb546ce9c44c47b091d92068c8462eb7" - ] - }, - { - "node": "7a4f890c862d61c7d8d26f656a1f438e81c6c9d5", - "bug_id": 320954, - "desc": "Backed out changeset c8d43645a578 (bug 320954) for burning leak tests", - "pushdate": "2009-02-07 22:40:16", - "backsout": [ - "c8d43645a578b3e2d933328ed3088cbd4d98d371" - ] - }, - { - "node": "7581b9caf300976be72d4be0a74041533a586396", - "bug_id": 469831, - "desc": "Backed out changeset 92a47ed3d54e - Michael Ventnor \u2014 Bug 469831 - need gtk2 drawing code for test plugin - due to mochitest leak failures (crash?)", - "pushdate": "2009-02-10 00:37:27", - "backsout": [ - "92a47ed3d54e2e388b7fb4360a476fdc765d75d7" - ] - }, - { - "node": "4bb932755d5c4d2a79ce867b256e95cbb3118fcd", - "bug_id": 475522, - "desc": "Backout changeset 4767c92771e6 from bug 475522 because of burning tree", - "pushdate": "2009-02-12 14:37:38", - "backsout": [ - "4767c92771e658f69cc9d908b2fd147f9b0d37bc" - ] - }, - { - "node": "8dccd5c59ad200b7187886fd95d6847b11d03607", - "bug_id": 474536, - "desc": "Backed out changeset 4bd7dd7645c2 (Bug 474536)", - "pushdate": "2009-02-19 20:38:52", - "backsout": [ - "4bd7dd7645c209ec5065bab824994739587a7e51" - ] - }, - { - "node": "0590dccbad048faa84af827bb1eaefe978e95260", - "bug_id": 322475, - "desc": "Backed out changeset fde0b361f25e (bug 322475, main patch) due to Mac talos startup failures and hitting the NS_ABORT_IF_FALSE in SetupBackgroundClip, which may be related.", - "pushdate": "2009-02-19 21:52:07", - "backsout": [ - "fde0b361f25eb13e1b18cab08150e8d3f7a34272" - ] - }, - { - "node": "6e008e161a0fed680d40e4f811254f51ece7b7bf", - "bug_id": 474749, - "desc": "Backed out changeset 690209fc5b6b (bug 474749) due to unit test failures.", - "pushdate": "2009-02-22 06:44:40", - "backsout": [ - "690209fc5b6b4d2816f4d02b592c1ed0739a5cf5" - ] - }, - { - "node": "0e56b82242f20ff27016b2816acf79363ce9190e", - "bug_id": 479543, - "desc": "Backed out changeset f8926cd4a7b2 (bug 479543) since it breaks unit tests in\ndebug builds.", - "pushdate": "2009-02-23 22:35:40", - "backsout": [ - "f8926cd4a7b24a307d61d80dced150183ffd30de" - ] - }, - { - "node": "87097563da9eb475bae4354e8b4953530d70ab25", - "bug_id": 476245, - "desc": "Backed out changeset a328b5ae57e0 (bug 476245) for causing failures of test_videocontrols.html across platforms (although Linux hasn't cycled yet).", - "pushdate": "2009-02-24 21:39:20", - "backsout": [ - "a328b5ae57e0062d856efe7489d224d4f3df88cf" - ] - }, - { - "node": "596366a3c3413b7b303f75f0beb8e2ebb36ca3a9", - "bug_id": 479521, - "desc": "Backed out changeset 4130ff1e52f3 (bug 479521) due to test failures.", - "pushdate": "2009-02-24 23:38:22", - "backsout": [ - "4130ff1e52f30d3cd309448fc2b3cb825d5ae300" - ] - }, - { - "node": "34ee950622aa5c2f92b3143421fee9eef6952c5a", - "bug_id": 24968, - "desc": "Back out a2b6a4c57a05 (bug 24968). Cross-platform orange.", - "pushdate": "2009-02-25 09:05:38", - "backsout": [ - "a2b6a4c57a0557c922bef92bc96c388441192384" - ] - }, - { - "node": "939103e7a4abcecf6035ba8ff205410c958e4ec1", - "bug_id": 479393, - "desc": "Backed out changeset 209a7cc3150e (Bug 479393)", - "pushdate": "2009-02-26 05:51:42", - "backsout": [ - "209a7cc3150ef1ab3208a0702c426af9eb3185c6" - ] - }, - { - "node": "c395bb2cf30ab1144bc0e41da4e3accd44209589", - "bug_id": 479499, - "desc": "Backed out changeset fdbe218cdcc7 - Causing crashtest hangs on linux. Tracked by bug 479499.", - "pushdate": "2009-03-03 14:47:16", - "backsout": [ - "fdbe218cdcc70e324f22e689e697fce690abeb6c" - ] - }, - { - "node": "f8b100b574f316c48f77427708315ac7921e00a4", - "bug_id": 480700, - "desc": "Backed out changeset 5befb6301e9b for bug 480700 - the patch broke 32-bit linux build.", - "pushdate": "2009-03-09 18:47:08", - "backsout": [ - "5befb6301e9bfb47fd23ef695cfd1bc2017bdda8" - ] - }, - { - "node": "14bc4dbf10cb18b41e6a7e2f79039e6cd0eb71ea", - "bug_id": 480267, - "desc": "Backed out changeset 635b1c8783a6 - bug 480267 - because it seems to have\ncaused a reftest failure.", - "pushdate": "2009-03-10 16:26:18", - "backsout": [ - "635b1c8783a6dabfa80aab6b55d3815ea41606cc" - ] - }, - { - "node": "44cd744842422ca215443df7c86c7490686773ef", - "bug_id": 481881, - "desc": "backout dac7c3176b33 from bug 481881", - "pushdate": "2009-03-11 04:09:25", - "backsout": [ - "dac7c3176b331762557a4c3d74e32840cb002fe0" - ] - }, - { - "node": "ad96e3d1ab56c30857baab534d1b353d121dc61f", - "bug_id": 463256, - "desc": "Backed out changeset 113bda3be8df (bug 463256) due to test failures on Mac", - "pushdate": "2009-03-12 10:10:39", - "backsout": [ - "113bda3be8df2698fdd52a65b54c7d24b2eda2be" - ] - }, - { - "node": "73379b9ca6ce67e1c061de3b7f450f3f613f2915", - "bug_id": 464800, - "desc": "Backed out changeset 69322c1764ff (bug 464800) due to test failures on Mac", - "pushdate": "2009-03-12 10:10:39", - "backsout": [ - "69322c1764ffd21bd5756e54a4068fcb4c4ac077" - ] - }, - { - "node": "fbd0299ee9becb64574199c7c2ba727bf1a0055f", - "bug_id": 482800, - "desc": "Backout changeset 5e0cc374593c for bug 482800.", - "pushdate": "2009-03-13 01:56:58", - "backsout": [ - "5e0cc374593c24989fb28dd1e98022373204b8ca" - ] - }, - { - "node": "6ed065a2a0d82c1ecf4d7e15b8fbbca18075bb0d", - "bug_id": 437325, - "desc": "Backed out changeset 57de81309176 - bug 437325 - due to mochitest leaks on tinderbox", - "pushdate": "2009-03-13 20:34:49", - "backsout": [ - "57de813091765f87edb63835fda7e72b6de9df5b" - ] - }, - { - "node": "96fb69f98cc2c3ad734d89428918adfcf945a885", - "bug_id": 457065, - "desc": "Backed out changeset 10b781704400 (bug 457065).", - "pushdate": "2009-03-16 22:50:44", - "backsout": [ - "10b781704400c1b969761a460d787de171f5cb73" - ] - }, - { - "node": "33c68c49af9dc25355f3855452fc043c2c84b4d2", - "bug_id": 482659, - "desc": "Backed out changeset 55d159b75f41 from bug 482659.", - "pushdate": "2009-03-17 11:09:29", - "backsout": [ - "55d159b75f41141d92ad9bb2c52780d082ed11a0" - ] - }, - { - "node": "830772ae7bf41b96b9ad77c2ce55215d2f1d93cf", - "bug_id": 479110, - "desc": "Backed out changeset e71cb3993380 (bug 479110).", - "pushdate": "2009-03-18 06:58:56", - "backsout": [ - "e71cb3993380e6f98caffee8be67a3fff87adea0" - ] - }, - { - "node": "0424abce8965b1c95c1a6ff6a893bf21b43d6253", - "bug_id": 483634, - "desc": "Back out changeset 699fc684188c from bug 483634 due to unit test failures", - "pushdate": "2009-03-19 04:56:56", - "backsout": [ - "699fc684188c2ebba72ce592b644a12e3f02c6ff" - ] - }, - { - "node": "100e73c6c9e8b3315fb8b9eaec85dbb9b8b3040a", - "bug_id": 484764, - "desc": "Backed out changeset 83944488fbe6 (Preparation for fix for bug 484764 (Set up DOM prototype chains from PostCreateProto instead of PostCreate)).", - "pushdate": "2009-03-24 13:47:26", - "backsout": [ - "83944488fbe65335798cfc0e1f724e845beca785" - ] - }, - { - "node": "124a3d626d1e059fc0c13ff7549df8e2a69e6b34", - "bug_id": 437325, - "desc": "Backed out changeset e117c22cc1d1 - the landed patch for bug 437325 has a shutdown leak.", - "pushdate": "2009-03-24 17:50:03", - "backsout": [ - "e117c22cc1d1a33f058191484ea339556c5ee654" - ] - }, - { - "node": "a43288e59420590e1df46280dace88f4db30dbbe", - "bug_id": 484764, - "desc": "Backed out changeset 94673272aeab from bug 484764: Set up DOM prototype chain\nfrom nsDOMClassInfo::PostCreateProto.", - "pushdate": "2009-03-26 14:54:57", - "backsout": [ - "94673272aeab8bab601581b74567472e2985484d" - ] - }, - { - "node": "cc7213e51266945396c0f03f6bdff7e804e087b6", - "bug_id": 483980, - "desc": "Backed out changeset 2d1f7c7c7a2b (bug 483980)", - "pushdate": "2009-03-27 22:34:53", - "backsout": [ - "2d1f7c7c7a2b51459482072435cc6572f4ea7dec" - ] - }, - { - "node": "711c24ec63bd94e0c7d1c7993cc341ab60ec5b7e", - "bug_id": 485178, - "desc": "Backed out changeset 0b36bddcefe4 for bug 485178 to fix compiletaion errors on some platforms.", - "pushdate": "2009-03-29 20:42:33", - "backsout": [ - "0b36bddcefe45e07c2b4ead1f001062c9f1a4890" - ] - }, - { - "node": "b39c0c0674fb5f8f3cab177d0f25dae8096fcde3", - "bug_id": 427633, - "desc": "backout changeset 459c8e138144 \u2013 test for Bug 427633, due to failures on OS X", - "pushdate": "2009-03-30 22:59:52", - "backsout": [ - "459c8e138144c00e3b90d309a3284e18d7cf809e" - ] - }, - { - "node": "70cd538fd48aa091def4ad7c5df003283988b487", - "bug_id": 485390, - "desc": "Backed out changeset f66fabdbc090 (bug 485390) - the problem is not in utils.lockFile, and you shouldn't really need to hold the file descriptor", - "pushdate": "2009-03-31 14:39:36", - "backsout": [ - "f66fabdbc090034cab166dd4d823ba082c0466ed" - ] - }, - { - "node": "54dda9955a7fdc7f5dd468ce8ea06c3fa004f617", - "bug_id": 395668, - "desc": "Backed out changeset 5263468b1d60 (bug 395668) due to unit test timeouts in test_tooltip.xul and test_tooltip_noautohide.xul", - "pushdate": "2009-04-02 18:06:14", - "backsout": [ - "5263468b1d60cce3af4feba31a8a2d380f7b7c13" - ] - }, - { - "node": "b025b0c6e3806754edac056176b8132b80b37c08", - "bug_id": 481926, - "desc": "Backed out changeset 6f3c2171bbb2:\nBug 481926 - Rewrite color management component. r=joe,ted sr=vlad", - "pushdate": "2009-04-03 20:29:59", - "backsout": [ - "6f3c2171bbb22238f1e2dd13c7f748ac6e62145b" - ] - }, - { - "node": "a55a5e3c4276ff60142187e0e6c230032323337c", - "bug_id": 484693, - "desc": "Backed out changeset b512be855093 (bug 484693). See bug for details.", - "pushdate": "2009-04-06 01:25:14", - "backsout": [ - "b512be855093b30f1a232035e856387964dc13c4" - ] - }, - { - "node": "6eca563de031cb584b8a86fdd74238c3357fd198", - "bug_id": 484693, - "desc": "Backout changeset 143e997c858e (bug 484693) because it caused crashes on Mac tinderboxen.", - "pushdate": "2009-04-08 04:43:16", - "backsout": [ - "143e997c858e116553451c2b7566d1679db3bccb" - ] - }, - { - "node": "3c7cd3a8f785ec9a09fb4b5244f1c095f26c6fc1", - "bug_id": 484448, - "desc": "Backed out changeset 0ea22856b5d9 (bug 484448).", - "pushdate": "2009-04-08 19:58:02", - "backsout": [ - "0ea22856b5d9e25e2b687e3fb6f3da557274f42a" - ] - }, - { - "node": "f12b13dbd0530765cb71c97e5c80a1da2af14038", - "bug_id": 483552, - "desc": "Backed out changeset 510bd328a29d (bug 483552) due to landing on orange tree.", - "pushdate": "2009-04-09 16:04:18", - "backsout": [ - "510bd328a29d5025f7137d9f03506a41e693bc42" - ] - }, - { - "node": "781e16e5112d9d75ea5c5045c35d27ed20c462ba", - "bug_id": 486933, - "desc": "Backed out changeset 86c8e18f20eb (bug 486933) due to landing on orange tree.", - "pushdate": "2009-04-09 16:04:18", - "backsout": [ - "86c8e18f20eb21fd20cd63e7fbb69203365a900d" - ] - }, - { - "node": "a3185147886829944da575f05300b2f5599db234", - "bug_id": 485563, - "desc": "Backed out changeset 0233d2bb8a07 (bug 485563) on suspicion of causing intermittent leak orange.", - "pushdate": "2009-04-09 16:04:18", - "backsout": [ - "0233d2bb8a0787ca9e26180f8ec0258ee5b5a050" - ] - }, - { - "node": "2d6fa1ee649a41e608968c51ff46c2a002ef1d23", - "bug_id": 419612, - "desc": "Backed out changeset 17abd3beeabf (bug 419612) on suspicion of causing intermittent leak orange.", - "pushdate": "2009-04-09 16:04:18", - "backsout": [ - "17abd3beeabfc5a00a44e5f2157017300c94920b" - ] - }, - { - "node": "1a29fad0c1bbab453c89bf79dec70018e96eff0a", - "bug_id": 481598, - "desc": "Backed out changeset b1237eca3670 (bug 481598) on suspicion of causing intermittent leak orange.", - "pushdate": "2009-04-09 16:04:18", - "backsout": [ - "b1237eca36703defb4b7b1e3a42b843b523b4dfc" - ] - }, - { - "node": "fca91e13946daba978e4a7f5d394abbfac8aeec3", - "bug_id": 486821, - "desc": "Backed out changeset 716fc2e4f7d3 (bug 486821) on suspicion of causing intermittent leak orange.", - "pushdate": "2009-04-09 16:04:18", - "backsout": [ - "716fc2e4f7d393f1f54a7602485549600beb128e" - ] - }, - { - "node": "686e89bbc76494c130f48b5fb11cbabd9b6c3ae4", - "bug_id": 473732, - "desc": "Backed out changeset 50940a1eb1e9 (bug 473732) because it causes Linux unit\ntest orange.", - "pushdate": "2009-04-09 18:48:24", - "backsout": [ - "50940a1eb1e93bb1c788e79959bb5478ca62becd" - ] - }, - { - "node": "c0542ed38b98aebddcfdc1ee39bbd6774cfeb04e", - "bug_id": 487719, - "desc": "Backed out changeset dde29bfff639 (bug 487719)", - "pushdate": "2009-04-13 08:30:54", - "backsout": [ - "dde29bfff639502f81f585b3f83c584343132a81" - ] - }, - { - "node": "86fdfc20dccb81d978f338c850e5a028aad4e850", - "bug_id": 475317, - "desc": "Backed out changeset dddef115ddd2 (bug 475317)", - "pushdate": "2009-04-13 08:30:54", - "backsout": [ - "dddef115ddd26123f998caf97afc9affd635f8ce" - ] - }, - { - "node": "f82e3ab11e63ed737b47fcdc7ec9369931e4cb10", - "bug_id": 475318, - "desc": "Backed out changeset 1e38c7369a3d (bug 475318)", - "pushdate": "2009-04-13 08:30:54", - "backsout": [ - "1e38c7369a3d5d36b494f8827758fe0d1c34ef9f" - ] - }, - { - "node": "e9a0a746f0fa37a354e71dc69d4810d49e736b1f", - "bug_id": 477014, - "desc": "Backed out changeset 524ab31ef073 (bug 477014) in an attempt to fix the unit test orange on Mac.", - "pushdate": "2009-04-13 19:35:35", - "backsout": [ - "524ab31ef073f6c265a2e8b6657794bae66619e1" - ] - }, - { - "node": "d7567548bc8f4af71f62079afafb1e00f20c5405", - "bug_id": 487631, - "desc": "Backed out changeset 05fd6a9c8ff7 (bug 487631) on suspicion of causing Windows unit test orange in CLOSED TREE.", - "pushdate": "2009-04-13 21:50:07", - "backsout": [ - "05fd6a9c8ff7172fec210ebf36518785cc9853f0" - ] - }, - { - "node": "1e9079e22c18aadb40ebe1eba26c2cbf531bcfc2", - "bug_id": 487845, - "desc": "Backed out changeset 4c157cfe2289 (bug 487845).", - "pushdate": "2009-04-15 21:40:40", - "backsout": [ - "4c157cfe22891e402bbbdac575c1483713e97200" - ] - }, - { - "node": "c221393049dcc32dfa4a15f763372da262a6f888", - "bug_id": 480301, - "desc": "Backed out changeset f97f196dcb58 - bug 480301 needs more work", - "pushdate": "2009-04-16 00:13:30", - "backsout": [ - "f97f196dcb58542c4f2e242b0fa525e7f4242214" - ] - }, - { - "node": "64d7df1fe160a1e8f595e1d936c179699eba21ce", - "bug_id": 488203, - "desc": "Backed out changeset e8c23c42db7f (bug 488203) to see whether it causes the leak.", - "pushdate": "2009-04-18 15:37:12", - "backsout": [ - "e8c23c42db7f0165c370b45094780502d5d66936" - ] - }, - { - "node": "062ea62f9bda22be55d94c71dc98e780d91342e6", - "bug_id": 488203, - "desc": "Backed out changeset 64d7df1fe160 (re-landing 488203).", - "pushdate": "2009-04-18 15:37:12", - "backsout": [ - "64d7df1fe160a1e8f595e1d936c179699eba21ce" - ] - }, - { - "node": "4273c0708552544e8a0317e84c02e515b0a02476", - "bug_id": 488203, - "desc": "Backed out changeset 062ea62f9bda (backed out bug 488203 again).", - "pushdate": "2009-04-18 15:37:12", - "backsout": [ - "062ea62f9bda22be55d94c71dc98e780d91342e6" - ] - }, - { - "node": "5bd1161481752fa00ec6154dddf36fa239dd0dcc", - "bug_id": 487204, - "desc": "Backed out changeset d1a4ee3d0c59 (bug 487204, due to possible leak).", - "pushdate": "2009-04-18 15:37:12", - "backsout": [ - "d1a4ee3d0c595c2697bd586697d399d337e09c2a" - ] - }, - { - "node": "324bb9dc8372bc9353711fffa97ecaa9c61eef31", - "bug_id": 487204, - "desc": "Backed out changeset 5bd116148175 (attempting to re-land bug 487204).", - "pushdate": "2009-04-18 15:37:12", - "backsout": [ - "5bd1161481752fa00ec6154dddf36fa239dd0dcc" - ] - }, - { - "node": "9c63c15b92b5b606f14fc7b07f51d9edf91cd6bd", - "bug_id": 487204, - "desc": "Backed out changeset 324bb9dc8372 (bug 487204 is implicated in top site failures).", - "pushdate": "2009-04-18 15:37:12", - "backsout": [ - "324bb9dc8372bc9353711fffa97ecaa9c61eef31" - ] - }, - { - "node": "c0a409243f7b5262a069d05a91a70f160c4e55c8", - "bug_id": 488414, - "desc": "Backed out changeset f4662701526b (bug 488414) to fix !JS_THREADSAFE compilation errors", - "pushdate": "2009-04-20 18:44:02", - "backsout": [ - "f4662701526b6c7d3402fdd8021b576a295218ec" - ] - }, - { - "node": "f58de2414f51ac92548b9b52e2ee85abc9b35456", - "bug_id": 67752, - "desc": "Backed out changeset 6a452e522e07 - Boris Zbarsky \u2013 Bug 67752. Implement interruptible reflow. r=roc,dbaron - because of apparent Tp hangs.", - "pushdate": "2009-04-22 03:13:36", - "backsout": [ - "6a452e522e0775c1993c41085fb2851acd3aaf5b" - ] - }, - { - "node": "1a1611bb10630cda771042ef8089b7b6060c3f55", - "bug_id": 489585, - "desc": "Backed out changeset 88f76db49467 (bug 489585) due to test failures on OS X", - "pushdate": "2009-04-23 07:16:09", - "backsout": [ - "88f76db49467b87ce93ed43653b5855d19e6bcc9" - ] - }, - { - "node": "a0e5385d86c43e251b192f74e88de4b35753172f", - "bug_id": 487250, - "desc": "Backed out changeset 69f84bd26700 (bug 487250) to fix browser_privatebrowsing_searchbar.js failure", - "pushdate": "2009-04-23 09:48:27", - "backsout": [ - "69f84bd267008c385528fcb71c8fa9c842d6bde6" - ] - }, - { - "node": "0cb354f894d1ca1c72edf04893250e2d2513021c", - "bug_id": 490879, - "desc": "Backout revision 12536e9936b2 (bug 490879) because of unknown potential problems for Thunderbird 3.next", - "pushdate": "2009-05-03 18:02:56", - "backsout": [ - "12536e9936b2c43538eb5803937d5314ec3c4cf8" - ] - }, - { - "node": "38512deaca7e5ca4fcd39ca9c60f2640fa3ad773", - "bug_id": 491013, - "desc": "Backed out changeset 6534f8b9aa74 (bug 491013, assert on startup).", - "pushdate": "2009-05-05 18:41:02", - "backsout": [ - "6534f8b9aa74ba67ee31dc87e5250eeeb3c185aa" - ] - }, - { - "node": "f2151b06463e21d8546b27ffaf382a68c6314251", - "bug_id": 491834, - "desc": "Backed out changeset 7df4317278f5, bug 491834.", - "pushdate": "2009-05-07 13:25:33", - "backsout": [ - "7df4317278f56284fa394c0681a542f74275ce3c" - ] - }, - { - "node": "d525ab89ac0229543a0c14d0cfe1bd1ead465090", - "bug_id": 480080, - "desc": "Backed out changeset 9f9b05760fff, bug 480080, to see if it fixes orange", - "pushdate": "2009-05-08 17:43:16", - "backsout": [ - "9f9b05760fffaf3a5ec11c1ad4fd51514a4e7aa3" - ] - }, - { - "node": "c60c37d487cae83cbcbb7db59b1b867d6eba27e2", - "bug_id": 490833, - "desc": "Backed out changeset b6f09258a505 (bug 490833).", - "pushdate": "2009-05-09 02:58:20", - "backsout": [ - "b6f09258a505f54e81d64221d35b096d68e7a844" - ] - }, - { - "node": "88df6943633f8f75d3df5460ae720d860f4307a1", - "bug_id": 489864, - "desc": "Backed out changeset add33a95e3ef to fix talos crashes. b=489864", - "pushdate": "2009-05-11 20:41:08", - "backsout": [ - "add33a95e3ef643243db7d287251cacbadecf515" - ] - }, - { - "node": "29692abf4c295b6018f546a3a68e6309bf57cafd", - "bug_id": 492037, - "desc": "Backed out changeset 888aff8f57d2. Bug 492037", - "pushdate": "2009-05-13 00:05:00", - "backsout": [ - "888aff8f57d2309ea008b3aa86f865f4a1775948" - ] - }, - { - "node": "9a308a1a5a9436005c74d7209fbe1e84dc836283", - "bug_id": 492664, - "desc": "Backed out changeset c8a74fe0f9af (bug 492664).", - "pushdate": "2009-05-13 03:21:33", - "backsout": [ - "c8a74fe0f9af820db21be004f0aaabea1c085b8b" - ] - }, - { - "node": "3415a6e08696e5c501a8dc98e69cae825c33247d", - "bug_id": 492483, - "desc": "Backed out changeset 3e3d2d8cc70f (bug 492483 - fixing !JS_THREADSAFE build failure.) to try to fix Tshutdown regression.", - "pushdate": "2009-05-15 14:40:55", - "backsout": [ - "3e3d2d8cc70f30d55765cf414c69977ec1c2f266" - ] - }, - { - "node": "0f55d91d7724eccced6bc37570f08ec59c6c7ec0", - "bug_id": 490592, - "desc": "Backed out changeset 5e867032abe5 (Fix for bug 490592 (Possible to GC way too much during shutdown due to XUL and XBL prototypes).) to try to fix Tshutdown regression.", - "pushdate": "2009-05-15 14:40:55", - "backsout": [ - "5e867032abe58fde99cb01a689dc456eb47c98ea" - ] - }, - { - "node": "e720085bf9ba7617e54c9e64888e6fa91830268d", - "bug_id": 488042, - "desc": "Backed out changeset 7ff6eeaad3d1, bug 488042", - "pushdate": "2009-05-16 06:06:11", - "backsout": [ - "7ff6eeaad3d16a34be7d2cf3a0cb685693fde65f" - ] - }, - { - "node": "fb7f8956aff514c965cbe93b858369fe02d48cc9", - "bug_id": 475737, - "desc": "Backed out changeset 0c8d4f846be8 (Fix for bug 475737 (Windows stay alive too long because nsJSContext doesn't unlink correctly).) to try to fix Tshutdown regression.", - "pushdate": "2009-05-16 14:18:37", - "backsout": [ - "0c8d4f846be88e2b6c7c0ca131e51b4876c83bbd" - ] - }, - { - "node": "6e86393b03ad1e2e801dfc1b26d81f39a3087f4e", - "bug_id": 488181, - "desc": "Backed out changeset accd95d7ba9d. [OS/2] fix build break following bug 488181", - "pushdate": "2009-05-17 01:11:47", - "backsout": [ - "accd95d7ba9d1a85a2fbc2dfe3a0d8a3f9492018" - ] - }, - { - "node": "687daa472dd409cc7a175a7cf8fbe5b056296734", - "bug_id": 488181, - "desc": "Backed out changeset 7cd22106e8d9. Simplify code for exposing plugin file names vs. full path. b=488181", - "pushdate": "2009-05-17 01:11:47", - "backsout": [ - "7cd22106e8d9784eed2acc3c063f716ffaf2605e" - ] - }, - { - "node": "e3b0b664e5ddfc425fd84409b6dc8678508a4487", - "bug_id": 486974, - "desc": "Backed out changeset d88e6b8fab83 (bug 486974) due to reftest parsing issues.", - "pushdate": "2009-05-18 16:32:46", - "backsout": [ - "d88e6b8fab83f1f7fbbec25484a74e10cefbac7f" - ] - }, - { - "node": "6fecf8267e038e5e6709c46c8c37035539e1c220", - "bug_id": 493560, - "desc": "Backed out changeset 4480c18255f2 (bug 493560)", - "pushdate": "2009-05-19 20:47:31", - "backsout": [ - "4480c18255f27af5832ca804bec4dae58bdb8561" - ] - }, - { - "node": "e54a1c608d8cb0e3a801b9928c6b8bb7b7080cca", - "bug_id": 493560, - "desc": "Backed out changeset dd3d70e5849e (bug 493560)", - "pushdate": "2009-05-19 20:47:31", - "backsout": [ - "dd3d70e5849edf509953ab09422c6f49fec969d8" - ] - }, - { - "node": "c4cea7365f4e9199f0da846b74fee206d42b4c91", - "bug_id": 493657, - "desc": "Backed out changeset cec8ee353407 (bug 493657).", - "pushdate": "2009-05-20 16:22:49", - "backsout": [ - "cec8ee353407eb98805af87a926b19746139784b" - ] - }, - { - "node": "8f6c242a75ffee31f467c7d81fea114d226a4fd8", - "bug_id": 493657, - "desc": "Backed out changeset c4cea7365f4e (re-landing 493657).", - "pushdate": "2009-05-20 16:22:49", - "backsout": [ - "c4cea7365f4e9199f0da846b74fee206d42b4c91" - ] - }, - { - "node": "a18035c7c3d2016c4b347d5a6e4109f402125b80", - "bug_id": 493657, - "desc": "Backed out changeset 8f6c242a75ff (backing out bug 493657 again).", - "pushdate": "2009-05-20 16:22:49", - "backsout": [ - "8f6c242a75ffee31f467c7d81fea114d226a4fd8" - ] - }, - { - "node": "288e71bdc98a83a5b891129aa9ef4bf329f53866", - "bug_id": 480205, - "desc": "Backed out changeset 1abeb6c87131 (Bug 480205 - Implement a wrapper for exposing chrome objects to content (aka COWs)) due to mochitest failures and leaks.", - "pushdate": "2009-05-21 10:58:20", - "backsout": [ - "1abeb6c87131ef99f9a4b84ff3d0c6ddb3ba1e2a" - ] - }, - { - "node": "10908cb7ea5b38e13b19eb0f1d71cdc713054d4d", - "bug_id": 326628, - "desc": "Backed out changeset eea9639048b8, bug 326628 main patch, due to regression bug 494899", - "pushdate": "2009-05-27 13:28:12", - "backsout": [ - "eea9639048b867e81504e14b46515a1f07bfaef9" - ] - }, - { - "node": "4156a420a7325be68b97f67bf1d7b3fdb07bdc07", - "bug_id": 326628, - "desc": "Backed out changeset 1aaacee9b2d0, bug 326628 string removal due to regression bug 494899", - "pushdate": "2009-05-27 13:28:12", - "backsout": [ - "1aaacee9b2d0b18915088807125c0103767c358b" - ] - }, - { - "node": "a0154ac712c96a49c13a43bae52c8fa00dc75aa4", - "bug_id": 487980, - "desc": "Backed out changeset c41b9f3a9d83 - bug 487980 due to backing out 326628, due to regression bug 494899", - "pushdate": "2009-05-27 13:28:12", - "backsout": [ - "c41b9f3a9d83a8f9194b5103f22454642e46cf21" - ] - }, - { - "node": "30aa3539cedca522384c7a574ecfab59902cb40b", - "bug_id": 481406, - "desc": "Backed out changeset ddd616e58309 from bug 481406 due to tinderbox shortlog\nspam", - "pushdate": "2009-05-28 11:20:17", - "backsout": [ - "ddd616e583093f3079a7a6c29f55ef39bdf27fff" - ] - }, - { - "node": "f5e133f0c13282882e632df0129993dbeb36b51b", - "bug_id": 496482, - "desc": "Backed out changeset 17664f5cab40 (bug 496482, also backing out the bug that introduced this bug).", - "pushdate": "2009-06-05 08:41:32", - "backsout": [ - "17664f5cab40ca0cb7b807ae1e5b02898ba7371e" - ] - }, - { - "node": "47ae3c6dcf9ee2b9783fa4e2f9642965b035294a", - "bug_id": 495958, - "desc": "Backed out changeset 2ad658e9f42a (bug 495958, re-opened).", - "pushdate": "2009-06-05 08:41:32", - "backsout": [ - "2ad658e9f42ad5e92d0fe3439c464c21f1d32ce3" - ] - }, - { - "node": "6bced1a34c8f04226e23cc7021fe4fe6ebf68c92", - "bug_id": 482681, - "desc": "Backed out changeset 04f5a3303ebf, bug 482681 due to test failures", - "pushdate": "2009-06-11 11:15:19", - "backsout": [ - "04f5a3303ebf0c3c67c4872f028b4838eea84a68" - ] - }, - { - "node": "97e7f0da28d6c7c4e311a49eefd8c218ca563b7d", - "bug_id": 483980, - "desc": "Backed out changeset d891a7418d95 (bug 483980)", - "pushdate": "2009-06-11 23:08:59", - "backsout": [ - "d891a7418d9514991182f2a9df9e360ebd0848db" - ] - }, - { - "node": "06027b3d50d99bb1d03ed761fb8c6e99597b718f", - "bug_id": 119061, - "desc": "Backed out changeset f3fcd36fcbd1 (bug 119061) for linux orange.", - "pushdate": "2009-06-11 23:58:06", - "backsout": [ - "f3fcd36fcbd190362e1869607d5387e23a892a51" - ] - }, - { - "node": "f0b1b5b7ae6269b70c953d939a9231beb7c53472", - "bug_id": 493723, - "desc": "Backed out changeset 2928cc356e14 of bug 493723 to fix screen reader bustage", - "pushdate": "2009-06-12 14:32:48", - "backsout": [ - "2928cc356e14d01ffe4670a9657c5e7cc90970e4" - ] - }, - { - "node": "be99fcdb6addb56c5bd73d9b18fda04490ac7eda", - "bug_id": 450930, - "desc": "backout 06a7d2def034 and 58c89ce9719d as possible cause of failure in test_bug450930.xhtml", - "pushdate": "2009-06-15 06:41:26", - "backsout": [ - "06a7d2def034ecb21b9fb5658dcc1fe090e1b586" - ] - }, - { - "node": "72f6372d784a147d2335c0371aca0602ae0678d7", - "bug_id": 493701, - "desc": "Back out 7d502207183d (Bug 493701), it really did cause the windows dhtml regression", - "pushdate": "2009-06-16 12:44:37", - "backsout": [ - "7d502207183da020cfe9071055394ce9dc9df77d" - ] - }, - { - "node": "f9c14b122aa2ead4b62b6c3329c28d014cf711a3", - "bug_id": 474369, - "desc": "Back out b8e531a6c961 (Bug 474369), it really did cause the windows dhtml regression", - "pushdate": "2009-06-16 12:44:37", - "backsout": [ - "b8e531a6c961d7e4814efb7a0bb24c3ebfd3aacd" - ] - }, - { - "node": "83ba7296195e738749ce695f89d242ea98d4bcc6", - "bug_id": 490085, - "desc": "Backed out changeset d546bd2c46a4 (bug 490085) because it's broken (and thunderbird's test caught it)", - "pushdate": "2009-06-17 20:45:30", - "backsout": [ - "d546bd2c46a4271215bbae1cbe87fdc6975afe21" - ] - }, - { - "node": "78f649cdd7f81ab9a45d60a6daecb16f44aa4d26", - "bug_id": 498899, - "desc": "Backed out changeset 7ab1be136cfa - that patch for bug 498899 has a bug.", - "pushdate": "2009-06-19 13:23:15", - "backsout": [ - "7ab1be136cfa78376328f6de33f80d110a62149f" - ] - }, - { - "node": "1e873ec2be87523bc8b5a77e581859eef40a6151", - "bug_id": 488148, - "desc": "Backed out changeset 0997bcc75daf (bug 488148). Silly me - this patch is wrong!", - "pushdate": "2009-06-19 19:22:34", - "backsout": [ - "0997bcc75daf217886ccf010cdb0b37dc3e30b26" - ] - }, - { - "node": "3ffbe0634669f82d3b3b6a3f81b3080058575301", - "bug_id": 499777, - "desc": "Backed out c8297c309ab3 (Fix for bug 499777 (Cannot convert WrappedNative to function (NS_ERROR_XPC_CANT_CONVERT_WN_TO_FUN)). r/sr=mrbkap.) to fix orange.", - "pushdate": "2009-06-23 14:47:03", - "backsout": [ - "c8297c309ab3a9de623027c7f975c7da29a2a5d3" - ] - }, - { - "node": "a8fafd6b563eefb05f2c5bbef81312a075343ccb", - "bug_id": 499664, - "desc": "Backed out changeset 55a8910d8436 (no consensus whether patch should be applied, bug 499664).", - "pushdate": "2009-06-30 19:21:13", - "backsout": [ - "55a8910d8436234482f6d000f5d008dc65c34ac9" - ] - }, - { - "node": "dd5b7ac3f7d3e1ed9ae4410dcf0ece1ec6b4ca85", - "bug_id": 498143, - "desc": "backout a2d8f3384b3c due to mochitest failures b=498143", - "pushdate": "2009-07-09 03:36:29", - "backsout": [ - "a2d8f3384b3ca6aa22eaf843b624d53a580a4034" - ] - }, - { - "node": "9d7f4b459a18e821fa66f17d8d61f94a69ab748e", - "bug_id": 503990, - "desc": "Backed out changeset c5433450795f (Bug 503990: make isStmt() table-driven).", - "pushdate": "2009-07-14 09:23:52", - "backsout": [ - "c5433450795f1f6f4b560b82938f8bf217f6e6c2" - ] - }, - { - "node": "6b7b67ed41b913e9871c41dd956ad81e97783155", - "bug_id": 503463, - "desc": "Backed out changeset 2073d5aae8b6 (Avoid integer math for GC trigger factor calculation in allocation path (bug 503463)).", - "pushdate": "2009-07-14 09:50:08", - "backsout": [ - "2073d5aae8b6d4fd5ae00b8c560f1ba44a2d5da4" - ] - }, - { - "node": "17a10b614f99d9486cc5e3f14585a49216ef1f45", - "bug_id": 503718, - "desc": "Backed out changeset 705ef05105e8 for causing bug 503718 on OS X", - "pushdate": "2009-07-15 11:14:22", - "backsout": [ - "705ef05105e82731347566a66da9151961fbf240" - ] - }, - { - "node": "980e61b2e20b207ff3d0e2c63b1c6953d5be9a84", - "bug_id": 503718, - "desc": "Backed out changeset b6d407af386f for causing bug 503718 on Windows", - "pushdate": "2009-07-15 11:14:22", - "backsout": [ - "b6d407af386fac51cbc7c511aafc01c28f9f9aba" - ] - }, - { - "node": "191ef763e892a81b56685717adad3788fad266fd", - "bug_id": 503942, - "desc": "Backed out changeset ebea850caba8 (Bug 503942) for causing timeouts of dom/tests/mochitest/geolocation/test_allowCurrent.html and test_allowWatch.html", - "pushdate": "2009-07-15 23:52:59", - "backsout": [ - "ebea850caba803942ef77addabd73a0dd9ce9087" - ] - }, - { - "node": "c0d86da168885b0cd20af7eefacb33c5e330e128", - "bug_id": 503597, - "desc": "Backed out changeset 6e11834d07c9 (Bug 503597) until x86_64 Linux tinderboxes (bug 505215) and maybe other tinderboxes (bug 505203, bug 505204) are updated.", - "pushdate": "2009-07-20 12:58:59", - "backsout": [ - "6e11834d07c9e5eb2d5d0370119b072ba14b060f" - ] - }, - { - "node": "080ff82bff5ed421cc1e4f2c65bda3aab190fcca", - "bug_id": 504705, - "desc": "Backed out changeset 692e8a1325f8 (bug 504705). Crashes with TMFLAGS=full on browser startup.", - "pushdate": "2009-07-21 04:58:00", - "backsout": [ - "692e8a1325f8ed8744de4020523bf9e7ff0f1785" - ] - }, - { - "node": "d75d6cd530413239b644ed14ef8ec76d010ecd56", - "bug_id": 501232, - "desc": "Backed out changeset 8877e1f8645b (bug 501232).", - "pushdate": "2009-07-21 04:58:00", - "backsout": [ - "8877e1f8645b8e2d0ee5e91ac593fdead31d841b" - ] - }, - { - "node": "e81b6512fc4ae2668a847bcbd136b81145934aa6", - "bug_id": 448375, - "desc": "Backed out changeset 6722800f261e - bug 448375 because it broke at least x86-64... turns out we do actually use DBUS bits from within libxul.so, and the fix for that bug may be quite a bit more complicated.", - "pushdate": "2009-07-23 17:45:58", - "backsout": [ - "6722800f261ef0787bd1a767c6e3cd8e9a70c3db" - ] - }, - { - "node": "2772a410e518ffa9ef8aba6cfcb235f75c92297a", - "bug_id": 506116, - "desc": "Backed out changeset 870f451d8385 from bug 506116", - "pushdate": "2009-07-28 07:41:27", - "backsout": [ - "870f451d8385af4fdeee958e7b1067bbf69b96da" - ] - }, - { - "node": "069d94d0d7ef237e07669cc9399444bf08a5a5a5", - "bug_id": 495176, - "desc": "Backed out changeset 9d5e247b5052 to see whether bug 495176 might be causing\nthe WinXP Txul regression.", - "pushdate": "2009-07-28 18:39:06", - "backsout": [ - "9d5e247b505267fe6d1aaf9ae0db8a30c20d808b" - ] - }, - { - "node": "78b2c479870c73c5da37cdcf1b012061c60be326", - "bug_id": 495176, - "desc": "Backed out changeset b55e7e3c0bfb to see whether bug 495176 might be causing the WinXP Txul regression", - "pushdate": "2009-07-28 18:39:06", - "backsout": [ - "b55e7e3c0bfb2f1e09c54d41e64f6069e9987890" - ] - }, - { - "node": "0468583f64f4ba451040840369df0dd03ce35e75", - "bug_id": 496823, - "desc": "Backed out changeset 622a29736f33 to see whether bug 496823 causes the WinXP Txul regression.", - "pushdate": "2009-07-28 18:39:06", - "backsout": [ - "622a29736f33891b79d0187dabe1d0ea2ef4615b" - ] - }, - { - "node": "c1ab8650e0cee5e6e3592bdce8d8103fd16bea1a", - "bug_id": 505988, - "desc": "Backed out changeset 03c40c5a2d4b (bug 505988) to fix password manager test orange.", - "pushdate": "2009-07-30 15:03:51", - "backsout": [ - "03c40c5a2d4be8a6cf2e7fa37050e78ff064ac3c" - ] - }, - { - "node": "60b97c3496c4517e74445b2e741629f9d5373e95", - "bug_id": 504422, - "desc": "Backed out changeset 06433d3dafd9 (bug 504422) because the patch is wrong.", - "pushdate": "2009-07-30 17:34:32", - "backsout": [ - "06433d3dafd932539aa3c64d404e4ed04208da52" - ] - }, - { - "node": "236a7507a0f1e0127782daff0d5cb2d2683e5f69", - "bug_id": 504384, - "desc": "Backed out changeset 246b44df7dd3 (bug 504384).\nThis fix was wrong.", - "pushdate": "2009-07-30 17:34:32", - "backsout": [ - "246b44df7dd37aba850e536fdae31221f8de424b" - ] - }, - { - "node": "6fa97a14dde15f0c89160cc15a4e7ba928ea55f2", - "bug_id": 504311, - "desc": "Backed out changeset 8506b25206cf (bug 504311) because the test added uses enablePrivilege which hangs tinderbox asking for privileges.", - "pushdate": "2009-07-30 20:17:53", - "backsout": [ - "8506b25206cf63f5da2f4c4d7902c5140e2724e5" - ] - }, - { - "node": "c6cab4ce7379c19306d34d7e923a59ea538cd62a", - "bug_id": 499655, - "desc": "Backed out changeset 358af1196dc2 (bug 499655) until we get bug 507487 sorted out.", - "pushdate": "2009-07-31 16:41:01", - "backsout": [ - "358af1196dc2b298080cbe73efc9d5570153876e" - ] - }, - { - "node": "d556710b95a87c8f2d69e085c1d399d36886d25c", - "bug_id": 506812, - "desc": "Backed out changeset ad9a4a3a5409, bug 506812. CLOSED TREE", - "pushdate": "2009-07-31 20:50:50", - "backsout": [ - "ad9a4a3a54095479c020f18fc6c57d65dd4b28f6" - ] - }, - { - "node": "8e2681f2fcba3a5d56f421d28e6ee0a9a5f4658f", - "bug_id": 506812, - "desc": "Backed out changeset 4318f781ab87 to investigate Ts changes, b=506812 CLOSED TREE", - "pushdate": "2009-07-31 20:54:50", - "backsout": [ - "4318f781ab87deddf9d4f6f9bca7501567323bf2" - ] - }, - { - "node": "1708ccd0ffe4a65523cadc76d5e94c1f83cbd5ba", - "bug_id": 501608, - "desc": "Backed out changeset 8cd49a8cbb88 (bug 501608) on suspicion of causing lots of mochitest-browser-chrome timeouts and leaks (bug 507698).", - "pushdate": "2009-07-31 21:54:27", - "backsout": [ - "8cd49a8cbb88c1316079b79b7a10b5b135fb4e9a" - ] - }, - { - "node": "850b96d836c46b5c3aa67c7b9207e22ffc1f0822", - "bug_id": 507605, - "desc": "Backed out changeset 6a5f22ccbe0e (no bug) to see if it is the cause of the mozilla-browser-chrome orange (bug 507605 and bug 507698)", - "pushdate": "2009-08-01 02:38:15", - "backsout": [ - "6a5f22ccbe0e" - ] - }, - { - "node": "94e882183752b48c85bf046e13908bfe26a72ffe", - "bug_id": 125282, - "desc": "Backed out changeset 8366e5cc9f57 (bug 125282) because of four windows unit test oranges in a row (all timed out when running mochitest-plain)", - "pushdate": "2009-08-02 10:41:59", - "backsout": [ - "8366e5cc9f57cbcb1168385cdd38b7da124e95a4" - ] - }, - { - "node": "7fb86c108ae7981111030e5520593c10859d3562", - "bug_id": 502288, - "desc": "Backed out changeset 25462849adcc (bug 502288) to get some talos cycles for the tracemonkey merge without this patch in.", - "pushdate": "2009-08-03 19:12:58", - "backsout": [ - "25462849adcc87648a7fa7fc362b34dd3931a82b" - ] - }, - { - "node": "c29765db7521970a25767c46a0876f12ef39e1ee", - "bug_id": 459114, - "desc": "Backed out changeset 9ddc25fb2246 - bug 459114 - helper function to provide a clean profile directory for xpcshell tests. r=sdwilsh - for test failures", - "pushdate": "2009-08-05 19:36:30", - "backsout": [ - "9ddc25fb224655f0300f78c8fe9c8ebbd4a70488" - ] - }, - { - "node": "227c1358d161e4ec2745b8cb9f777d6ad9695d92", - "bug_id": 505718, - "desc": "Backed out changeset bae405b94b96 (testing to see if it affected bug 505718, bug 508767) to re-enable leaked url dump for unit test boxes.", - "pushdate": "2009-08-07 15:23:53", - "backsout": [ - "bae405b94b961ea90c8793b05e19992ffe7bed48" - ] - }, - { - "node": "b3631e1453f29a5020a393b960b1eb851a770279", - "bug_id": 429954, - "desc": "Backed out changeset b52fa2372a3a, bug 429954 because of test_popup_preventdefault_chrome.xul orange.", - "pushdate": "2009-08-12 23:44:06", - "backsout": [ - "b52fa2372a3aa6c622ab865987fa7d6e6f6354ea" - ] - }, - { - "node": "157b3aa1100f993e37b419c048e30c9d2b61b26f", - "bug_id": 510193, - "desc": "Backed out changeset a17cbb14793f (bug 510193) which caused trace-test.js to fail (spuriously) on x86.", - "pushdate": "2009-08-13 21:38:45", - "backsout": [ - "a17cbb14793f5db1218a2634a185715bf720c477" - ] - }, - { - "node": "6c04c1cdedcb5489ee4e2ea3871e574efbfefb65", - "bug_id": 494927, - "desc": "Backed out changeset 43fdf17e10a3, bug 494927, because of a 2.5% Mac Txul regression", - "pushdate": "2009-08-14 04:53:30", - "backsout": [ - "43fdf17e10a33aa10bee5fcbcb289e023c403802" - ] - }, - { - "node": "a6fa91f76877b834d4e7db0d5b847a9353156e3e", - "bug_id": 378528, - "desc": "Backed out changeset 21ad4f1ce214 - Ted Mielczarek \u2013 bug 378528 - crash reporter should allow resubmission of pending reports, due to leaks", - "pushdate": "2009-08-17 18:45:00", - "backsout": [ - "21ad4f1ce2145b76592c958153009bf35f66a442" - ] - }, - { - "node": "ae162a38f56ed5090f6b3b3ebf92d0ff13cff9b1", - "bug_id": 502307, - "desc": "Backed out changeset 405a715a4d81 from bug 502307 due to test failures", - "pushdate": "2009-08-19 09:38:41", - "backsout": [ - "405a715a4d8148131ccdc89a1dcd799bf96b0fe0" - ] - }, - { - "node": "36d3597620c7b8392cfb99cc056dcbd2caea2de4", - "bug_id": 482935, - "desc": "Backed out changeset 3a829715fd39 (Bug 482935) on suspicion of causing mochitest-plain leaks.", - "pushdate": "2009-08-20 19:23:10", - "backsout": [ - "3a829715fd3983cadb48d9de83b78bf85daffd2e" - ] - }, - { - "node": "85899e12310f9eb9be0db8ec7fd421c238c40a26", - "bug_id": 445765, - "desc": "Backed out changeset 6b686281f9ac (Bug 445765) for causing a 3% Txul (Twinopen) regression on Linux.", - "pushdate": "2009-08-23 15:07:40", - "backsout": [ - "6b686281f9acdf3af782754eb1bac0966eea0851" - ] - }, - { - "node": "201784b33fc94a3a55139cc7dc8684e66aee803c", - "bug_id": 488249, - "desc": "Backed out changeset eb32cbfba7f5 (bug 488249 followup) to fix test orange.", - "pushdate": "2009-08-25 00:52:50", - "backsout": [ - "eb32cbfba7f58425d354abb870ce697465bed3c2" - ] - }, - { - "node": "7687616b2a35d841691da03b55eb482965eb1548", - "bug_id": 488249, - "desc": "Backed out changeset 59ae87416f96 (bug 488249 followup) to fix test orange.", - "pushdate": "2009-08-25 00:52:50", - "backsout": [ - "59ae87416f96691b00ea478036eb2ef04546eb18" - ] - }, - { - "node": "2e8b6f1bf670fc64652d0f82cd140fc339b96daf", - "bug_id": 488249, - "desc": "Backed out changeset 4aa19414e651 (bug 488249) to fix test orange.", - "pushdate": "2009-08-25 00:52:50", - "backsout": [ - "4aa19414e651669fa16f4c4a5ac53567f8f471c9" - ] - }, - { - "node": "b5c5bf855c53870a43f0681f68012ce2bf362366", - "bug_id": 474536, - "desc": "Backed out changeset 6ee269c6c118 (test for bug 474536) because it hangs on Tinderbox", - "pushdate": "2009-09-02 17:35:49", - "backsout": [ - "6ee269c6c118762de6d21b86025c2792290750f6" - ] - }, - { - "node": "941346617e4fa0946dea86a611917d7362765d10", - "bug_id": 510920, - "desc": "Backed out changeset e8c01867056a, breakpad update b=510920", - "pushdate": "2009-09-04 04:02:57", - "backsout": [ - "e8c01867056a2dea44260030f35f743f73c7e272" - ] - }, - { - "node": "845b66a2eb91290ec6ef4a5cf2c2ec587b5c8ca3", - "bug_id": 514891, - "desc": "Backed out changeset b652e12fc7e3 because of bug 514891", - "pushdate": "2009-09-07 12:18:27", - "backsout": [ - "b652e12fc7e3a68a2a0aca08f6515477be3d32c5" - ] - }, - { - "node": "ce62745a7c9c72cd51034b9f9710af3d2e45d038", - "bug_id": 514891, - "desc": "Backed out changeset 83ba2c6e25eb because of bug 514891", - "pushdate": "2009-09-07 12:18:27", - "backsout": [ - "83ba2c6e25eb1fb9f3962eebeb4e041176133fb9" - ] - }, - { - "node": "c1e5dcec20dd02e3de3d6f785408840aaa91b48d", - "bug_id": 506812, - "desc": "Back out changeset 845b625b5eb5. b=506812", - "pushdate": "2009-09-09 13:59:18", - "backsout": [ - "845b625b5eb532b65346e0ca5f3e199d8fbfe13e" - ] - }, - { - "node": "6119349e864e7d27faf80076cb7ceb790a846fc5", - "bug_id": 514803, - "desc": "Backout ffcfaed61bed: Taras Glek \u2013 Bug 514803 - Fix for new Date().toLocaleString() triggers \"An error occured throwing an exception\". Moved more charset files to jar r=bsmedberg\n\nThis caused an unexplained Ts improvement and obj-c exceptions during Ts.", - "pushdate": "2009-09-14 20:55:06", - "backsout": [ - "ffcfaed61bedaeed17963c98015d8beb53d39e9b" - ] - }, - { - "node": "71e1c4bdc3c8c9be8e849c871e294dc8a11c8be7", - "bug_id": 497495, - "desc": "Backed out changeset a3f33def2dca (bug 497495 part 4)", - "pushdate": "2009-09-15 00:27:03", - "backsout": [ - "a3f33def2dca968d2b335c55c2daf92a10499282" - ] - }, - { - "node": "dc2598d08078bade237e66b83bf0b29ebc6b7db7", - "bug_id": 504516, - "desc": "Backed out changeset 48c039f7ac4f (bug 504516).", - "pushdate": "2009-09-16 23:16:27", - "backsout": [ - "48c039f7ac4f41126099492743718e83095baea0" - ] - }, - { - "node": "0ae65841fcf88595e023f93b86451f5fd341824e", - "bug_id": 471214, - "desc": "Back out changeset aff171a8c4f0 (bug 471214).", - "pushdate": "2009-09-16 23:16:27", - "backsout": [ - "aff171a8c4f0009224cb87eb97b47372318bc493" - ] - }, - { - "node": "3a8acec844913490ca457c9daa16663cbaf5a411", - "bug_id": 504516, - "desc": "Backed out changeset dc2598d08078 (re-landing bug 504516).", - "pushdate": "2009-09-16 23:16:27", - "backsout": [ - "dc2598d08078bade237e66b83bf0b29ebc6b7db7" - ] - }, - { - "node": "cda3d0eefedd79d3741d474678ab396d56c56ba1", - "bug_id": 515290, - "desc": "Backed out changeset 5c7fbeed8f96 (bug 515290, accidentally committed unrelated changes with the bug).", - "pushdate": "2009-09-16 23:16:27", - "backsout": [ - "5c7fbeed8f96bc2a23341f5ed895e72253b6654b" - ] - }, - { - "node": "68b5e9772b4cd613caad675815d949a7528526a8", - "bug_id": 494165, - "desc": "Backed out changeset e5f6affc4c88 for breaking Mochitest\nBug 494165 - Support --total-chunks, --this-chunk, --chunk-by-dir, and --shuffle arguments to runtests.py. r=ted", - "pushdate": "2009-09-21 13:10:14", - "backsout": [ - "e5f6affc4c8868f65c61c9dafb4540c88991e463" - ] - }, - { - "node": "80f8fb6eb86e72f39cd3f6ff0f6af48329e8b380", - "bug_id": 517804, - "desc": "Backed out changeset 7799cfb99362 (Bug 517804 - Flush reflows and invalidations during viewWillDraw) because it caused a ts_shutdown regression.", - "pushdate": "2009-09-22 20:54:29", - "backsout": [ - "7799cfb993623e112a2555d6de0c4a45d29c1c90" - ] - }, - { - "node": "75a5fcf1a393cfccab3141f4774307d4b05c31fd", - "bug_id": 512865, - "desc": "Backed out changeset cb4f078cc8cb (bug 512865)\n\nWas causing crashes on the leak test box.", - "pushdate": "2009-09-25 03:36:19", - "backsout": [ - "cb4f078cc8cb1b9f136986e7716305099dec8a47" - ] - }, - { - "node": "687f2a1f5ad278bbc52e6e4ff3ef829d18339ef0", - "bug_id": 500431, - "desc": "Backed out changeset eafee0100926 (bug 500431) due to Tinderbox orangeness", - "pushdate": "2009-09-26 03:38:06", - "backsout": [ - "eafee0100926764290cd41a5564f00df140315f1" - ] - }, - { - "node": "873dd3e379db6061c9f0cb4c0c401fb0bc656421", - "bug_id": 500431, - "desc": "Backed out changeset 8abad92fd850 (bug 500431) due to Tinderbox orangeness", - "pushdate": "2009-09-26 03:38:06", - "backsout": [ - "8abad92fd850559cfb11adfb1077371e8eca110d" - ] - }, - { - "node": "31b6f6e8a56d0074eb82807a47162054b6fd522d", - "bug_id": 500431, - "desc": "Backed out changeset 3f508cfdfa36 (bug 500431) due to tinderbox orangeness", - "pushdate": "2009-09-26 03:38:06", - "backsout": [ - "3f508cfdfa36efe22be8c40415a24bbe28b35356" - ] - }, - { - "node": "0f39d12ba50518f25c340f088103ba6f1c607b26", - "bug_id": 500431, - "desc": "Backed out changeset 2fbd2420ef8b (bug 500431) due to Tinderbox orangeness.", - "pushdate": "2009-09-26 03:38:06", - "backsout": [ - "2fbd2420ef8b793672ccc6a9fd3cb65b2b9c9340" - ] - }, - { - "node": "2c67a109e6265c64b3126c111de59482018242f0", - "bug_id": 518448, - "desc": "Backed out changeset f5ea964eb493. (Brendan Eich \u2014 High-level CSE for shape guards (518448, r=jorendorff).", - "pushdate": "2009-09-26 15:23:09", - "backsout": [ - "f5ea964eb493458189bb2ff20cfff74a04e3e4d0" - ] - }, - { - "node": "744a11942d04650232e02df7954db4dc5452ef79", - "bug_id": 506812, - "desc": "Backed out changeset 65aff8912e7c. b=506812", - "pushdate": "2009-09-27 07:10:24", - "backsout": [ - "65aff8912e7c92d424ce046c976a29ced1266f99" - ] - }, - { - "node": "08c4c88536854e24ec9cc9bc14f5d148e39bc661", - "bug_id": 506812, - "desc": "Backed out changeset 76c570389975. b=506812", - "pushdate": "2009-09-27 09:55:57", - "backsout": [ - "76c570389975acff5eac2dc5d7c443f09d666dd9" - ] - }, - { - "node": "7eab054403ff5dc04f3ce061125a32049476041a", - "bug_id": 517604, - "desc": "Backed out changeset 467f14a11325 (bug 517604)", - "pushdate": "2009-10-01 00:04:41", - "backsout": [ - "467f14a11325660510a69ec0f2240f7bd685cc0e" - ] - }, - { - "node": "2144fdf97e50c3a09502d25f593785a66b237102", - "bug_id": 518940, - "desc": "Backed out changeset e22b5d4e8ce9 (bug 518940) on suspicion of causing Linux orange.", - "pushdate": "2009-10-01 03:19:04", - "backsout": [ - "e22b5d4e8ce934f01713a8c51357564a79147e7a" - ] - }, - { - "node": "fb9d4a6b8330adff5022ccdaeb52285f3d95a693", - "bug_id": 518991, - "desc": "Backed out changeset 58c5864cb9c6 (Bug 518991) due to linux orange (test failure in test_bug408328.html & 9240-byte leak)", - "pushdate": "2009-10-01 06:43:45", - "backsout": [ - "58c5864cb9c6614dbcb3a652f2112f8a189cb3f0" - ] - }, - { - "node": "f0bf246917580c878b38181ad1ed519b2a181934", - "bug_id": 517199, - "desc": "Backed out changeset 31682547b6f1 - bug 517199 has shown persistent failure on Windows tinderboxes.", - "pushdate": "2009-10-07 06:47:58", - "backsout": [ - "31682547b6f1367b15f8dc2206310160ea72a3f7" - ] - }, - { - "node": "0416997adea8dea5e38e9ff5ed802fd1d29857b3", - "bug_id": 517199, - "desc": "Backed out changeset 19b4c1cacdb8 - everything related to bug 517199.", - "pushdate": "2009-10-07 06:47:58", - "backsout": [ - "19b4c1cacdb8566e50754fa077448f82f5fdb333" - ] - }, - { - "node": "5f550d67ae78e4db972d23f5132d3d304996cdc3", - "bug_id": 517196, - "desc": "Backed out changeset 542fa9413bd0, fix for bug 517196 (The JSClass of wrappers shouldn't change when morphing from slim to XPCWrappedNative), to try to fix orange.", - "pushdate": "2009-10-08 20:42:17", - "backsout": [ - "542fa9413bd08e153155cee686a99e445d32b6c8" - ] - }, - { - "node": "8d2de8ddfa3b79064d583a93d239153849decef6", - "bug_id": 456646, - "desc": "Backed out changeset 8c4658f8f0dc, bug 456646 (Cocoa print dialog) - we can do better.", - "pushdate": "2009-10-09 07:14:00", - "backsout": [ - "8c4658f8f0dc147ef1d39486bb18b7557174deb6" - ] - }, - { - "node": "505a2a075e1125d4e22bd39de319aba6b75fd275", - "bug_id": 516013, - "desc": "Backed out changeset 5f03363ae12d (Bug 516013) due to xpcshell test failure (test_LightweightThemeManager) caused by exception thrown from the code added in that changeset.", - "pushdate": "2009-10-09 20:32:36", - "backsout": [ - "5f03363ae12d29d35a2a6b5d416e7facd3d39cab" - ] - }, - { - "node": "b40bf2ef14a7abd4780f5e27b3f1b6a6eeaf2040", - "bug_id": 489925, - "desc": "Backed out changeset c5fe17b1caa9 (bug 489925)", - "pushdate": "2009-10-13 20:51:31", - "backsout": [ - "c5fe17b1caa9260622d530c0bc881cd5ce365a93" - ] - }, - { - "node": "86a6cd7011186bb5f48d02df639989627ce159bc", - "bug_id": 511761, - "desc": "Backed out changeset 89f53914ecd9 (bug 511761)", - "pushdate": "2009-10-14 19:44:25", - "backsout": [ - "89f53914ecd9ef406178ba6d8cdbde8db65610bf" - ] - }, - { - "node": "c0af5f72e7a8c6ad41dfa35b404487eb98bde2a8", - "bug_id": 521880, - "desc": "Backed out changeset 1a747dd43904 (bug 521880).", - "pushdate": "2009-10-16 17:35:08", - "backsout": [ - "1a747dd439049f11fcdc9fb0abfff4530e72f88c" - ] - }, - { - "node": "39b3dbc393bf8996d58e6b2289d6d15622c5175c", - "bug_id": 505315, - "desc": "Backed out changeset 487b81c753c0 - landing of bug 505315 caused talos crashes across platforms.", - "pushdate": "2009-10-16 17:35:08", - "backsout": [ - "487b81c753c0cb8080343beb4013424d6fe162df" - ] - }, - { - "node": "ef149d6975fba3847d8fa31a0913b8669e39bfd7", - "bug_id": 519843, - "desc": "Backed out changeset 9992a4a638e2 due to Tp regression (was bug 519843)", - "pushdate": "2009-10-21 14:58:16", - "backsout": [ - "9992a4a638e2598850d67f02672c038cb624513a" - ] - }, - { - "node": "f702deeb07be290c488489585cb969ee202ff537", - "bug_id": 517109, - "desc": "Backed out changeset 899023a9fbb0 due to Ts regression (was bug 517109)", - "pushdate": "2009-10-21 14:59:50", - "backsout": [ - "899023a9fbb058ef5a75986a393d8298a8cbd9bf" - ] - }, - { - "node": "e3f00dd9617b2918b6ee116026914972eef95a61", - "bug_id": 300904, - "desc": "Backed out changeset 3ee95c194798, bug 300904 (tracking rects) in order to investigate the Mac DHTML performance regression.", - "pushdate": "2009-10-21 15:10:31", - "backsout": [ - "3ee95c194798dfee926d4485165dfa650a0a27fc" - ] - }, - { - "node": "9e086fa7728869c161e37deefacb75ddcda34f65", - "bug_id": 523934, - "desc": "Backed out changeset 1aea70ef6f63 (temporary debugging code for bug 523934).", - "pushdate": "2009-10-23 14:47:50", - "backsout": [ - "1aea70ef6f63b5a55b8f80de9c3d6367305987be" - ] - }, - { - "node": "2909091fb254aa31b11cdfb4f4e9a25ab4253d85", - "bug_id": 524346, - "desc": "Backed out changeset 14c76164f4c2 - patch for bug 524346 caused test fails", - "pushdate": "2009-10-29 21:11:42", - "backsout": [ - "14c76164f4c27bd969eec08f31f36f0101fff59f" - ] - }, - { - "node": "fdc781e5774d92e5cd542b878ef2d33eceb00f4f", - "bug_id": 515211, - "desc": "Backed out changeset 109b74e8e902 due to tinderbox bustage (was bug 515211)", - "pushdate": "2009-10-30 18:15:48", - "backsout": [ - "109b74e8e90201e3061449731e10fd502fb32a27" - ] - }, - { - "node": "6258b513a554c5098972f89716461dd5460f09c2", - "bug_id": 526178, - "desc": "Backed out changeset 2fa27d8cd3d2 (bug 526178) to fix browser-chrome orange.", - "pushdate": "2009-11-05 01:42:46", - "backsout": [ - "2fa27d8cd3d20fbad807a7f9fc4a9b2728d8b8f4" - ] - }, - { - "node": "811e1602f0ab7f1c533ad8e1e54f756b9b8eab08", - "bug_id": 526789, - "desc": "Backed out changeset a696d331ebf7 (bug 526789) for test failures", - "pushdate": "2009-11-10 03:48:53", - "backsout": [ - "a696d331ebf79713e699db5675c7edc6bdf1a4e0" - ] - }, - { - "node": "e8f791a62494b867be1757d44fe4e045afd406d6", - "bug_id": 525221, - "desc": "Backed out changeset 3e1290bba902 - Bug 525221 which was committed accidentally.", - "pushdate": "2009-11-10 14:54:29", - "backsout": [ - "3e1290bba9029798016d7106237fea5850f8840c" - ] - }, - { - "node": "eb6ad91709a7d298f32e70dbee18e9babc4a420a", - "bug_id": 528776, - "desc": "Backed out changeset fa212b6a9d72 to see if it caused bug 528776", - "pushdate": "2009-11-18 08:23:36", - "backsout": [ - "fa212b6a9d72832a0c76ddf50c2bf4096570c264" - ] - }, - { - "node": "ac278013c79942a704e998304c58067803d41e2d", - "bug_id": 478047, - "desc": "Backed out changeset 975b36c50d33; bug 478047's fix was misguided and contra ES5, and moving to ES5 semantics at this late date in the release cycle seems unwise. We'll move from old and busted directly to ES5 shortly after 3.6 so as to provide maximum time for ironing out incompatibilities in the wild. r=gal", - "pushdate": "2009-11-19 10:58:47", - "backsout": [ - "975b36c50d33c8de608e798fcde43043db10bf68" - ] - }, - { - "node": "6432560e430e1db22fe038e4450a4912221837f4", - "bug_id": 495392, - "desc": "Back out changeset c9c35333436b / Bug 495392 due to build bustage", - "pushdate": "2009-11-24 22:31:04", - "backsout": [ - "c9c35333436bbc7b67f0414ee039d1b26d598f8c" - ] - }, - { - "node": "e101dddbc4324f9ef356207c1bcf8a65b184f5ff", - "bug_id": 424558, - "desc": "Backed out changeset b774250f04d3 - the landed patch for bug 424558 has regressed.", - "pushdate": "2009-12-01 18:15:12", - "backsout": [ - "b774250f04d3cfe7a8caeaca641ade1c95edb18a" - ] - }, - { - "node": "fb34a7163a43fbf79f8d1a460804452df4cf86c7", - "bug_id": 530507, - "desc": "Backed out changeset c696751593d6. Tolerate race condition or broken resolve hook (530507, r=jorendorff).", - "pushdate": "2009-12-01 18:15:12", - "backsout": [ - "c696751593d6056cdc40e31d4c5604338ec1d0a6" - ] - }, - { - "node": "ee7bfc1923adbc60e9223103e88b3d14286137d7", - "bug_id": 473228, - "desc": "Backed out changeset c03ebf340688. Bye-bye middle-deletes and their O(n^2) worst case complexity; hello dictionary-mode scopes (473228, r=jorendorff).", - "pushdate": "2009-12-01 18:15:12", - "backsout": [ - "c03ebf340688227093e8fece0634afc31813919b" - ] - }, - { - "node": "1da324b951822655298a68e7ed122531ce36d59d", - "bug_id": 525356, - "desc": "Backed out changeset a93d705bb969 (bug 525356).", - "pushdate": "2009-12-01 23:07:52", - "backsout": [ - "a93d705bb969573e1298e95bee43281822d20880" - ] - }, - { - "node": "8e986811ab388f741166aa7b34e2caa0f8088cd4", - "bug_id": 526601, - "desc": "Backed out changeset e9f64cd044f3 (bug 526601)", - "pushdate": "2009-12-01 23:07:52", - "backsout": [ - "e9f64cd044f3af6a40f6fac1f4d377890b92badc" - ] - }, - { - "node": "78faeda5e9702c28f7ac40bdd2ec5bc2cce13c85", - "bug_id": 496019, - "desc": "Backed out changeset f91a016416d1 (bug 496019)", - "pushdate": "2009-12-01 23:07:52", - "backsout": [ - "f91a016416d11272380828cc0b20c97a7c8cf851" - ] - }, - { - "node": "0af1f99d2cb05b4412464758b7f3b16ca0586ceb", - "bug_id": 524745, - "desc": "Back out 7856366bcd76 (Bug 524745 - \"Session restore sets focus to minimized windows\") to fix orange, also doesn't have approval yet.", - "pushdate": "2009-12-03 11:27:44", - "backsout": [ - "7856366bcd7639c1fbef1c9c2f311a7d3fff9bb0" - ] - }, - { - "node": "4bbe26190c7dc6dad0c1c3440a9064b92a2a8bd7", - "bug_id": 525047, - "desc": "Back out revision dbdbe3ad0234 from bug 525047 - every leak test box that's clobbered since it landed has failed, not finding the first thing it tries to import from automationutils", - "pushdate": "2009-12-16 04:36:11", - "backsout": [ - "dbdbe3ad0234dd583e5e79e790d68d5eaa29b7a4" - ] - }, - { - "node": "31067e0bf8bf4d1f532db455e07e710b4a1ac657", - "bug_id": 532542, - "desc": "Backed out changeset a6d5fda15815 for bug 532542 due to a test failure.", - "pushdate": "2009-12-16 08:22:45", - "backsout": [ - "a6d5fda1581505489181e12dea7de232aa854b43" - ] - }, - { - "node": "ada564e50e86a6285a5a6773cadf7b2f5bc16885", - "bug_id": 533688, - "desc": "Backed out changeset 08e208698ef0: Bug 533688 (Firefox 3.6 failed to start with AT-SPI2 0.1.3) because of consistent orange on Mac/Linux:\n\n1001 ERROR TEST-UNEXPECTED-FAIL | chrome://mochikit/content/a11y/accessible/test_events_doc.html | Test timed out.\n1011 ERROR TEST-UNEXPECTED-FAIL | chrome://mochikit/content/a11y/accessible/test_events_draganddrop.html | [SimpleTest/SimpleTest.js, window.onerror] An error occurred - nsIAccessibleEvent is not defined at chrome://mochikit/content/a11y/accessible/events.js:766\nand subsequent errors and leaks", - "pushdate": "2009-12-16 15:33:14", - "backsout": [ - "08e208698ef06722b65e7bd79c09bb9440481584" - ] - }, - { - "node": "382b527f32a5a15af9d5387b5061a67e03b40145", - "bug_id": 474500, - "desc": "Backed out changeset 94561cb0f0bd, bug 474500 because of static-analysis bustage.", - "pushdate": "2009-12-21 15:00:07", - "backsout": [ - "94561cb0f0bd8890f86cbdfb782f8426a32af5b7" - ] - }, - { - "node": "f32e7f33b01530d2dba7594c3899a1922da92f3c", - "bug_id": 531585, - "desc": "Backout revisions fa5326c011b8, 8b22441911b0, and cfa10b01b1f6 (bug 531585) on suspicion of causing random orange bug 536382.", - "pushdate": "2009-12-22 20:49:25", - "backsout": [ - "fa5326c011b8d22f132d59d191b8f3316be5dda9", - "cfa10b01b1f657b7ac20ccaef5a666ffc334881c", - "8b22441911b036039ea3927cb2859ac4d67ae8b5" - ] - }, - { - "node": "03bec0d8715431e0ce811be9d7fe98e37c970978", - "bug_id": 535004, - "desc": "Backed out changeset 2752efeb2fdd (Bug 535004: Check if we've fired an unload event before calling OnPageShow, in DocumentViewerImpl::LoadComplete) because the NS_ABORT_IF_FALSE that it added is firing in reftest and crashtest, at least on Linux.", - "pushdate": "2009-12-24 04:06:14", - "backsout": [ - "2752efeb2fddf68d810ccc9194b9fa24b0b45088" - ] - }, - { - "node": "a7e65c58693ee91a2756dcf0f5effd79237b5297", - "bug_id": 529597, - "desc": "Backed out changeset 06e4ea15db72 (bug 529597) because of test_bug_405924.html failure", - "pushdate": "2009-12-29 12:35:10", - "backsout": [ - "06e4ea15db723b87686b2c9095c9418c8d7bccdc" - ] - }, - { - "node": "ba2968f7fe46a45b9805a3c133aa1a052d18c964", - "bug_id": 530374, - "desc": "backout changeset dfc79d02e945, bug 530374 due to build failure", - "pushdate": "2009-12-31 00:07:12", - "backsout": [ - "dfc79d02e945f241872e0b1009fc09b581c398a3" - ] - }, - { - "node": "387da540301942dae8f4385322ff1a611f4449e8", - "bug_id": 396367, - "desc": "Backed out changeset 640bf652618a (bug 396367)", - "pushdate": "2010-01-02 02:30:58", - "backsout": [ - "640bf652618a494751c80f5df9077d0833109a31" - ] - }, - { - "node": "35fec83dd2c53414d021c2bbae436f5b4d30b7d7", - "bug_id": 396367, - "desc": "Backed out changeset 63d4a49fbec1 (bug 396367)", - "pushdate": "2010-01-02 02:30:58", - "backsout": [ - "63d4a49fbec16b375f4a6cd72978d27573413eb1" - ] - }, - { - "node": "ee9b5d13cbaf7f63bf6d757629d4f745f1e84350", - "bug_id": 324278, - "desc": "Backed out changeset 3862a7e48e79 due to tinderbox failures on js1_5/GC/regress-324278.js.", - "pushdate": "2010-01-11 16:41:31", - "backsout": [ - "3862a7e48e79354ba53cb9c966114810ea6095a3" - ] - }, - { - "node": "2332266baf4de6387cd6572e5de9ff391e9f19d8", - "bug_id": 539165, - "desc": "Backed out changeset 4b725bb53baa from bug 539165 due to reftest failure", - "pushdate": "2010-01-13 00:28:11", - "backsout": [ - "4b725bb53baada5ccecf0c37c51042f821413743" - ] - }, - { - "node": "974d9ffda7b6ae093fa49de036c60a7780af4e8e", - "bug_id": 461291, - "desc": "Backed out changeset bde448aad47c, bug 461291, due to SunSpider and DHTML performance regression.", - "pushdate": "2010-01-13 19:56:38", - "backsout": [ - "bde448aad47ccb0215415f3cdc8abc58cb7d8638" - ] - }, - { - "node": "1ef1d73eb050f79d35b528150c425022ee61f0ba", - "bug_id": 461291, - "desc": "Backed out changeset bde448aad47c, bug 461291, due to SunSpider and DHTML performance regression.", - "pushdate": "2010-01-13 19:56:38", - "backsout": [ - "bde448aad47ccb0215415f3cdc8abc58cb7d8638" - ] - }, - { - "node": "ffab97de1041b4ef62a31b104dd399033c7c773d", - "bug_id": 521377, - "desc": "Backout 76cdc8296409 and 9baa220b27c0 (Bug 521377 - 'NPRuntime: Segfault when NPP_GetValue_NPPVpluginScriptableNPObject returns a null actor') to try fo fix orange.", - "pushdate": "2010-01-19 12:01:49", - "backsout": [ - "76cdc829640917cfeddfb7324c761ea9609560fe" - ] - }, - { - "node": "b7008e0642660abcb74fccec100c3cbd45edc6bb", - "bug_id": 541739, - "desc": "Backed out changeset 4d7bde383df5 from bug 541739 due to test failures", - "pushdate": "2010-01-27 03:05:52", - "backsout": [ - "4d7bde383df56ee5910b7aa18a6a59f7461e377c" - ] - }, - { - "node": "6d50455cabaa3c695ad6e23200782d0790d6d59d", - "bug_id": 543034, - "desc": "Backed out changeset dc7a04be6904 on suspicion of causing bug 543034.", - "pushdate": "2010-01-30 03:08:18", - "backsout": [ - "dc7a04be6904be41a95c33d70ba5908c3b8a2fc0" - ] - }, - { - "node": "aefe5d2d14d87caa20f4ee572888fc01d46e0a2d", - "bug_id": 540910, - "desc": "backout ebca6061298f as an immediate flush should not be necessary b=540910", - "pushdate": "2010-02-02 06:01:17", - "backsout": [ - "ebca6061298fdd3c51bb10e097c4fa943162a82c" - ] - }, - { - "node": "a8d05daa31921404c46e258857f0e9c4513382ae", - "bug_id": 355548, - "desc": "backout 4dc8bdb7af6d due to 355548-2 reftest failure", - "pushdate": "2010-02-02 07:30:20", - "backsout": [ - "4dc8bdb7af6da21a247874bc54b1349d154a4738" - ] - }, - { - "node": "e03e9d4315d8b99f9135ea3e971c74a6eda8ef30", - "bug_id": 542263, - "desc": "Backed out changeset 8006ad2d0c06 (tests for bug 542263), since its test 'test_GCrace.html' failed on OSX in its first cycle.", - "pushdate": "2010-02-03 02:59:54", - "backsout": [ - "8006ad2d0c066e0ec0f6810bfedfb1a93d487e56" - ] - }, - { - "node": "29795c58dd72f74e5cde8365503544a8e851a8f8", - "bug_id": 542263, - "desc": "Backed out changeset c502a1a0900a (patch for bug 542263), since its test 'test_GCrace.html' failed on OSX in its first cycle.", - "pushdate": "2010-02-03 02:59:54", - "backsout": [ - "c502a1a0900af4ae6f4db3f21ecad87f7738c79b" - ] - }, - { - "node": "56a02566af5364f799d5fb319e26e43d9f2b318c", - "bug_id": 543034, - "desc": "Backed out changeset 0949b169357b (possible workaround for Bug 543034), since it didn't help.", - "pushdate": "2010-02-03 03:33:23", - "backsout": [ - "0949b169357bddaaabb90b68d8fdd151407a9114" - ] - }, - { - "node": "6b2bbb23d53a0767158a7ebebb8a179e8a612956", - "bug_id": 398289, - "desc": "Backed out changeset 8c2e7ae5cceb because of test_bug398289.html failure", - "pushdate": "2010-02-04 16:18:05", - "backsout": [ - "8c2e7ae5cceba14fe8c491d3ac0a03be3fa29d68" - ] - }, - { - "node": "609a51758b08110dd0fe738a88c95783d6fea658", - "bug_id": 544505, - "desc": "Backed out changeset db1f6446efda (flip pref, bug 544505), which is intended only for 1.9.3a1 and not to stay on trunk.", - "pushdate": "2010-02-05 19:37:29", - "backsout": [ - "db1f6446efda7f9bd61ef05337ffb10c1a74d9ca" - ] - }, - { - "node": "edbd3823dceb5ddb8cb16722fb98f34d571787e5", - "bug_id": 543111, - "desc": "Backed out changeset df90f0171ba7 (bug 543111)", - "pushdate": "2010-02-09 19:35:07", - "backsout": [ - "df90f0171ba7d51f932769131d4d0992b6debaa9" - ] - }, - { - "node": "83adba23046790d0de32384c4c12cf5974cb839e", - "bug_id": 540692, - "desc": "Backed out changeset 0ddf975663a0 (Bug 540692: Blocklist vksaver.dll) to test the theory that it is the cause of number 1 topcrash bug 545195.", - "pushdate": "2010-02-11 05:54:10", - "backsout": [ - "0ddf975663a00d272f07e689799aa18c3133ed87" - ] - }, - { - "node": "9ce73c19f74a239c5deda19cdaed34ce7c627058", - "bug_id": 517097, - "desc": "Backed out changeset fe08cc555248 - bug 517097 - make enabling debug symbols more sane because it added -fno-inline to opt builds and a 50% perf regression", - "pushdate": "2010-02-11 22:17:32", - "backsout": [ - "fe08cc55524896c2d51697c1f7fdb7d7d5bab0b6" - ] - }, - { - "node": "4e883e25a86ca9a2cf9d18294c04e25c2f1830e4", - "bug_id": 545593, - "desc": "Backed out changeset 93c7b23284b8 (Bug 545593) for causing Md oth failures on linux.", - "pushdate": "2010-02-12 22:36:40", - "backsout": [ - "93c7b23284b828d28423bfcf0f9f8f59b6f625c6" - ] - }, - { - "node": "8098e1f09e779ef5234a73446b487a80705598b3", - "bug_id": 543764, - "desc": "Backed out changeset 4d8d4fd97c4f - bug 543764, because of deadlocks.", - "pushdate": "2010-02-18 15:27:52", - "backsout": [ - "4d8d4fd97c4ffd5a0776bb3c6a15b3c4d281f533" - ] - }, - { - "node": "f17dbc97dae0154c797e0b35e79ed887533efa34", - "bug_id": 520659, - "desc": "Backed out changeset 2c60006b6c1f (bug 520659) because of resulting orange.", - "pushdate": "2010-02-22 23:33:54", - "backsout": [ - "2c60006b6c1fedd09095b3153dd6415765f478ff" - ] - }, - { - "node": "639c6e42ee38ee67252f2400fe15d900a936b256", - "bug_id": 193911, - "desc": "Backed out changeset bb9e847a02c8 (bug 193911) due to performance regressions.", - "pushdate": "2010-02-24 01:11:56", - "backsout": [ - "bb9e847a02c8775f7ec1ead5f4b9cc93413c4522" - ] - }, - { - "node": "1fe0f3ad7b08a85ca25cec112e138b8ff6cf41b9", - "bug_id": 538463, - "desc": "Backed out changeset b9700adc3951 - the landing for the bug 538463 had wrong changes", - "pushdate": "2010-02-24 20:41:25", - "backsout": [ - "b9700adc3951772b747de841adcaa97efda50e3e" - ] - }, - { - "node": "636964f611b3e4f72815f9f9306f26303c816816", - "bug_id": 507089, - "desc": "Backed out changeset 3c673457c90b for bug 507089 due to mysterious Windows bustage.", - "pushdate": "2010-02-24 20:41:25", - "backsout": [ - "3c673457c90be7687423746c61bb79fddfb58a4e" - ] - }, - { - "node": "7594db5d213a7364f6bd375064eacbc3b80a53ad", - "bug_id": 532208, - "desc": "Backed out changeset e4a7ea0bb90f bug 532208 - asynchronous stream delivery because write events were being dispatched in odd re-entrant states and NPP_DestroyStream was being delivered before all the stream data was delivered.", - "pushdate": "2010-02-25 11:05:10", - "backsout": [ - "e4a7ea0bb90f194343f128880d45f99be27860a7" - ] - }, - { - "node": "3fa8aa3c951ce7b1c604cc764ff2f85536a88a6e", - "bug_id": 548217, - "desc": "Backed out changeset 77dc38d8196e - bug 548217 because even though this patch is correct, it exposes a bug in the OOPP code which got backed out.", - "pushdate": "2010-02-25 11:59:26", - "backsout": [ - "77dc38d8196e827f0099ce97b1abffd9de408644" - ] - }, - { - "node": "840e6ea115dbc3f4fccc1c78101426bc45013a98", - "bug_id": 548217, - "desc": "Backed out changeset f829f942873d - bug 548217 because of topcrash bug 549112", - "pushdate": "2010-02-27 22:44:12", - "backsout": [ - "f829f942873d897d26a8c88f65db2c38ed3b13c9" - ] - }, - { - "node": "81b2e55ea5b454ac88c2894961709a984eaa572c", - "bug_id": 547333, - "desc": "Backed out changeset e9ab6e4d121d (Bug 547333 followup) due to debug mochitest orange.", - "pushdate": "2010-03-02 16:30:18", - "backsout": [ - "e9ab6e4d121d97c2f8be97229e05ac3c53d43091" - ] - }, - { - "node": "44ef1e2129706317a17b29e7ff8bdb04b2424342", - "bug_id": 503832, - "desc": "Backed out changeset 2da8ac54d264 (followup to bug 503832)", - "pushdate": "2010-03-09 14:37:10", - "backsout": [ - "2da8ac54d264738d4a40d1d26c7bd6c7e37572ee" - ] - }, - { - "node": "d11772a5043cbc951328ba53c188f1c7fcc7e73b", - "bug_id": 550882, - "desc": "Backed out changeset c7c0db9074c7 (bug 550882) on suspicion of causing a Tsspider regression.", - "pushdate": "2010-03-09 14:37:10", - "backsout": [ - "c7c0db9074c70f9d5ed3966fa1bb2283800a69b4" - ] - }, - { - "node": "eaf1574b10b627e935444b631df4e9db2e4db496", - "bug_id": 503832, - "desc": "Backed out changeset dc835fb21c0c (bug 503832) on suspicion of causing a Tsspider regression.", - "pushdate": "2010-03-09 14:37:10", - "backsout": [ - "dc835fb21c0c9bc4eb03c956c76963d8947396c8" - ] - }, - { - "node": "76a071c6dfd0e74dd1f672eaa2394a037eb5afec", - "bug_id": 550882, - "desc": "Backed out changeset f0239b3789d9 (bug 550882) because it causes a Tsspider regression.", - "pushdate": "2010-03-11 06:00:37", - "backsout": [ - "f0239b3789d997dc94989c0ae67c4566c979a8c5" - ] - }, - { - "node": "55f6e18f71cd0906e457317f45f4bdf14f28ec53", - "bug_id": 538187, - "desc": "Backed out changeset d906e4dd1e49, bug 538187 - CSS changes for :-moz-window-inactive pseudoclass because of test_righttoleft.xul test failures.", - "pushdate": "2010-03-17 19:06:03", - "backsout": [ - "d906e4dd1e4957d46aaad39dfbd6f64990ca52dd" - ] - }, - { - "node": "11d4bebe3514ef47021734d052468df2ed7315ff", - "bug_id": 508482, - "desc": "Backed out changeset e17c076aceea, bug 508482 (:-moz-window-inactive pseudoclass) because of test_righttoleft.xul test failures.", - "pushdate": "2010-03-17 19:06:03", - "backsout": [ - "e17c076aceea1afeb0d105c1a3b701d698a6c134" - ] - }, - { - "node": "33925fdc28073fc9a47ed32da1a20ee2c2e246b5", - "bug_id": 541588, - "desc": "Backed out changeset 59f507847beb (bug 541588) to see if it was responsible for minor SVG perf regression.", - "pushdate": "2010-03-18 14:58:59", - "backsout": [ - "59f507847bebe3248f436d9c95e9acfd14871efc" - ] - }, - { - "node": "09b395158b415b7f18dbc6c744d7d04f73fb57a5", - "bug_id": 553075, - "desc": "Backed out changeset 665b48fbfd28 (bug 553075) to see if it was responsible for 1% SVG/DHTML regressions on Win7.", - "pushdate": "2010-03-21 05:57:22", - "backsout": [ - "665b48fbfd2840e6d309c9703cbef46a9df0cad2" - ] - }, - { - "node": "f85c2efb4eaf76c06c6a8438e77c5701cb8ba604", - "bug_id": 538242, - "desc": "Backed out changeset 77e1ae41987e, bug 538242, because of window bounds related test failures.", - "pushdate": "2010-03-25 10:31:30", - "backsout": [ - "77e1ae41987e11e348b4a60047694308b2425e6c" - ] - }, - { - "node": "670efad709bfa3ba522ba3a2f61b48cde4152f99", - "bug_id": 551298, - "desc": "Backed out changeset 13819d2e9bd8 (Bug 551298) due to Linux debug mochitest-5 orange", - "pushdate": "2010-04-01 16:46:48", - "backsout": [ - "13819d2e9bd852c11f7ed0c7774dd03867283054" - ] - }, - { - "node": "d3acd60e4d5361a9e8729f365dc3ba68cee131ba", - "bug_id": 551298, - "desc": "Backed out changeset afcaf3670c21 (Bug 551298) due to Linux debug mochitest-5 orange", - "pushdate": "2010-04-01 16:46:48", - "backsout": [ - "afcaf3670c21042a3baa51fdd712f241725f37a5" - ] - }, - { - "node": "50731f2bd852892bc11944485f5f93e0c27fce4b", - "bug_id": 551298, - "desc": "Backed out changeset 29bc09de2f77 (Bug 551298) due to Linux debug mochitest-5 orange", - "pushdate": "2010-04-01 16:46:48", - "backsout": [ - "29bc09de2f77959309d104ce26e3877f76c3d1e0" - ] - }, - { - "node": "c0395cad35f39dbcc3d0514c16f468a1a4ae84b9", - "bug_id": 551298, - "desc": "Backed out changeset e94819033c77 (Bug 551298) due to Linux debug mochitest-5 orange", - "pushdate": "2010-04-01 16:46:48", - "backsout": [ - "e94819033c77aab855f2661b9fe3d61c41bfa381" - ] - }, - { - "node": "df2717c37e7f70da06d2e1f46a288743b3414264", - "bug_id": 551298, - "desc": "Backed out changeset fe801c8a2090 (Bug 551298) due to Linux debug mochitest-5 orange", - "pushdate": "2010-04-01 16:46:48", - "backsout": [ - "fe801c8a20904bb40bd2a64fd8fb5a0bd463e104" - ] - }, - { - "node": "f843e0928e1119d1fbafba72e5ed1aea575fbbe5", - "bug_id": 549427, - "desc": "Backed out changeset 7886dc6ae0c8 - bug 549427 - tests tarball should be zip files (CLOSED TREE)", - "pushdate": "2010-04-07 17:34:08", - "backsout": [ - "7886dc6ae0c8ca8d769b956561174c0acc8b4340" - ] - }, - { - "node": "85454945336e2c5bac27ff125e2ae27200cb416c", - "bug_id": 557768, - "desc": "backout e88d2327e25d, bug 557768", - "pushdate": "2010-04-08 14:00:43", - "backsout": [ - "e88d2327e25d600ce326615f682db1d79d2bb10e" - ] - }, - { - "node": "47ef6d724773f2eb7157f93c1da8d53a8589f26a", - "bug_id": 553366, - "desc": "Backout 761790684f3b (Bug 553366) for suspicion of causing tsvg_opacity regression.", - "pushdate": "2010-04-11 02:54:10", - "backsout": [ - "761790684f3be4ebb9c30895d1864dbd12516a9a" - ] - }, - { - "node": "a5009861bd1b4c01663aa01a4c219379b85178b8", - "bug_id": 553359, - "desc": "Backed out changeset b4fcd21cb6e5 (bug 553359) to try to fix tsvg_opacity regression.", - "pushdate": "2010-04-11 05:13:09", - "backsout": [ - "b4fcd21cb6e54755c4efb4fbe0cb53dfc71bf2d6" - ] - }, - { - "node": "e4496c8a44e560c48cb228851239b177c08859a4", - "bug_id": 553363, - "desc": "Backed out changeset 633cc14c86b8 (bug 553363) to try to fix tsvg_opacity regression.", - "pushdate": "2010-04-11 05:13:09", - "backsout": [ - "633cc14c86b81a341d461982504b5366843add39" - ] - }, - { - "node": "df3a1a39837f15a5a51507b6af84deb81a1e9ce6", - "bug_id": 222436, - "desc": "Backed out changeset 3a27158cbdd6 (bug 222436) to try to fix tsvg_opacity regression.", - "pushdate": "2010-04-11 05:13:09", - "backsout": [ - "3a27158cbdd697fe5528658c4676cea537e50b6a" - ] - }, - { - "node": "e69034463eebbd368322b97559b4ae95b7722aaf", - "bug_id": 505835, - "desc": "Backed out changeset 02e8391669c3 (Bug 505835) for suspicion of causing tsvg_opacity regression.", - "pushdate": "2010-04-11 07:11:24", - "backsout": [ - "02e8391669c3975821e20d9a5485eaa27cf0a39d" - ] - }, - { - "node": "83bf27b04ddc38081b87125daa2468b17089cef5", - "bug_id": 553359, - "desc": "Backed out changeset ae2093359899 (Bug 553359) for tsvg_opacity regression.", - "pushdate": "2010-04-12 00:28:43", - "backsout": [ - "ae2093359899b9db68d3343fc9420cd770746098" - ] - }, - { - "node": "23e71fa6bd6e058498c18f6f7a9a8875fc245115", - "bug_id": 557914, - "desc": "Backed out changeset 687d1e4c213e (bug 557914).", - "pushdate": "2010-04-15 16:08:37", - "backsout": [ - "687d1e4c213ef0fc1d22e28deeb4a0643e807cbf" - ] - }, - { - "node": "0fc19b24294756c136b02ec922c3eba656c2f623", - "bug_id": 556830, - "desc": "Backed out changeset 698ace1f1027 (bug 556830) for causing jsreftest failures.", - "pushdate": "2010-04-15 16:08:37", - "backsout": [ - "698ace1f10272d60078844f428be76fd98ab1537" - ] - }, - { - "node": "57f8cd34cf6e0ca264e00e73ac9eea979136090c", - "bug_id": 558058, - "desc": "Backed out changeset 61de331861af (bug 558058).", - "pushdate": "2010-04-15 16:08:37", - "backsout": [ - "61de331861afee87bb0e9c369b06b6c663a8336e" - ] - }, - { - "node": "5896d4f94aee0ceb07c2a877b26a498855f4cb77", - "bug_id": 393760, - "desc": "backout e1e1143be432 due to reftest failure in layout/reftests/bugs/393760-1.xml b=552044", - "pushdate": "2010-04-21 05:21:59", - "backsout": [ - "e1e1143be432679e02bce5f647f6de822835dfb6" - ] - }, - { - "node": "f1bc91ce880e02e519f271f9c9b608961f7a2533", - "bug_id": 561011, - "desc": "Backed out changeset 1af19eedbde2 -- Fix sharpSlots vs. with grudge-match (561011, r=mrbkap).", - "pushdate": "2010-04-24 21:50:01", - "backsout": [ - "1af19eedbde29a07c643cc407f9991d9742308b0" - ] - }, - { - "node": "9cefbeff6938b64e8b8310dcc804aab85f922222", - "bug_id": 559492, - "desc": "backout 32502a2c5671 b=559492 due to seg fault in storage/test/test_transaction_helper.cpp possibly in DumpLeakedURLs", - "pushdate": "2010-04-28 22:40:27", - "backsout": [ - "32502a2c5671185d801d91884579d1f93f516d82" - ] - }, - { - "node": "ff9f542d06831528ededff7c28bfeee7168ab45a", - "bug_id": 222436, - "desc": "Backed out changeset e6134e94c6cb (Bug 222436) for possible Tsvg_opacity regression.", - "pushdate": "2010-05-02 07:02:16", - "backsout": [ - "e6134e94c6cbb585cfba790bfa4a89d86e8cc502" - ] - }, - { - "node": "eb4e203caf33c1a4351b61987170e675b2e77b6d", - "bug_id": 560358, - "desc": "Backed out changeset 35c25547a135 (bug 560358).", - "pushdate": "2010-05-04 17:34:44", - "backsout": [ - "35c25547a135348070a3e42cc0b38b3ccd46783c" - ] - }, - { - "node": "8d256e7846959ca614b1da225d2786396888d770", - "bug_id": 559653, - "desc": "Backed out changeset ae857d818793 (bug 559653) due to test failures.", - "pushdate": "2010-05-04 17:34:44", - "backsout": [ - "ae857d81879311f67ff49e4f4e677e2279cc1bdd" - ] - }, - { - "node": "5aa83042d4d3147c0f9311dc38c714ce19783b5a", - "bug_id": 559653, - "desc": "Backed out changeset 73f23528bed6 (bug 559653, again)", - "pushdate": "2010-05-04 17:34:44", - "backsout": [ - "73f23528bed6843a1c3ece06425a3bbe9398f380" - ] - }, - { - "node": "1b3deed2d784997d6b35397fff8355832255d857", - "bug_id": 559854, - "desc": "Backed out changeset 510669ff9ba1 \"bug 559854 - Compile target xpidl only if libIDL is configured when cross compiling. r=ted\" for OS X bustage", - "pushdate": "2010-05-05 15:00:40", - "backsout": [ - "510669ff9ba1d9e25c0d131b8c2618e978312134" - ] - }, - { - "node": "90d08f21fbf0b78f42cd9e312097d9a295fdb978", - "bug_id": 563023, - "desc": "Backed out changeset 09a936531466 (bug 563023) due to Mac reftest failure.", - "pushdate": "2010-05-05 20:53:39", - "backsout": [ - "09a9365314664a2d6719ffe77ad76dc61e50606d" - ] - }, - { - "node": "ea445ca9c148e0996b4794c07b9e549d7d64cb31", - "bug_id": 533891, - "desc": "Backed out changeset e074757a15aa (bug 533891) due to xpcshell orange after a clobber", - "pushdate": "2010-05-11 04:41:14", - "backsout": [ - "e074757a15aa7bdf7430980f81186403886afcd7" - ] - }, - { - "node": "357d302157060b473fb7fe8c0a27918071f310d5", - "bug_id": 559996, - "desc": "Backed out changeset a6138098775f (bug 559996) for causing orange.", - "pushdate": "2010-05-12 02:24:53", - "backsout": [ - "a6138098775fcacd0030e7679206553bbef296ec" - ] - }, - { - "node": "01befa5163eed6f462d5b920bc0470599dc2cb2d", - "bug_id": 564705, - "desc": "back out e40cbab6a972 (Bug 564705) 590da60fd253 (Bug 507628 and bug 507991) b166415b8c3f (Bug 564368) 0dac5d3eeb97 (Bug 564063) 116e56d84770 (Bug 563407) c51c93f5240f (Bug 536495) for some orange", - "pushdate": "2010-05-12 03:01:28", - "backsout": [ - "e40cbab6a9726591312375194167c10e065471de" - ] - }, - { - "node": "c861185afd4a103b322aed36a12e4b7462790d9f", - "bug_id": 562649, - "desc": "Backed out changeset 6a71deda9822 (bug 562649) due to browser-chrome orange.", - "pushdate": "2010-05-14 17:04:31", - "backsout": [ - "6a71deda9822c26086498ca9b2bfe3427b169e13" - ] - }, - { - "node": "c95e1d49bc792d5ed6255c37f5403048be77559f", - "bug_id": 564979, - "desc": "Backed out changeset 90d627f2471e (bug 564979) because it broke mochitests.", - "pushdate": "2010-05-17 19:00:34", - "backsout": [ - "90d627f2471eb38d96d8b1ccef04465c8363da53" - ] - }, - { - "node": "9d40cce434865515df81912ce22d2fdfa6e80a61", - "bug_id": 560462, - "desc": "Back out ba983923066f (bug 560462 part 3c) to see if it fixes test_aria_imgmap.html orange.", - "pushdate": "2010-06-01 18:27:21", - "backsout": [ - "ba983923066fbbe4b5df8a872fdeb989386b5a4d" - ] - }, - { - "node": "c482200ed43651dec55ce38e56134d43e115a5aa", - "bug_id": 564591, - "desc": "Backout 69df59e99741 -- Bug 564591: Speed up BindToTree/UnbindFromTree by only doing XBL related work when needed.", - "pushdate": "2010-06-04 01:45:41", - "backsout": [ - "69df59e99741365f71372a7557e6fe4dc0d1cb8d" - ] - }, - { - "node": "b18beea31ad3fd3130cdcd7b8195b0a04fb5e681", - "bug_id": 559653, - "desc": "Back out changeset a72a9d72c028 (bug 559653, remove SetPropHit). Checking to see if this caused a 5% Dromaeo regression today.", - "pushdate": "2010-06-06 19:08:23", - "backsout": [ - "a72a9d72c0282ec34aec9014bc16ec8c475c69b2" - ] - }, - { - "node": "2fe89784cf66347487cbf5a9f010dce8fabbe043", - "bug_id": 569735, - "desc": "Back out changeset 96dbe8a784f1 (bug 569735) due to failing tests.", - "pushdate": "2010-06-06 19:08:23", - "backsout": [ - "96dbe8a784f15719031a8716921ad50a86650a15" - ] - }, - { - "node": "0ba3c58afb3abf493dabe321f29ea94072ffe2a3", - "bug_id": 556277, - "desc": "Backed out changeset 52be13ea0488. Bug 556277 - Compute this eagerly in more cases. r=brendan. Suspected of performance regression on SunSpider unpack-code. 80ms -> 135ms.", - "pushdate": "2010-06-06 19:08:23", - "backsout": [ - "52be13ea048813852b8c6e466d9d762433ce14c6" - ] - }, - { - "node": "3e15e567ae44cd4b2fdd044a7d973fb0089d5cc7", - "bug_id": 569342, - "desc": "Backed out changeset 33760547ecf7 from bug 569342 to fix the test failure.", - "pushdate": "2010-06-08 18:20:50", - "backsout": [ - "33760547ecf7edc099b4ca4abc5cb475d9dfb86a" - ] - }, - { - "node": "0bf458761ea2d29bc48e333a8d2afd38238d7e83", - "bug_id": 569425, - "desc": "Backed out changeset 2f539cc84d97 (bug 569425) because this may hide real a11y issues.", - "pushdate": "2010-06-08 20:44:03", - "backsout": [ - "2f539cc84d9750e6de1de5d44f8ade2b82cad024" - ] - }, - { - "node": "42a58530d41962e11cd20a2abfcf02e6c13b21c3", - "bug_id": 552938, - "desc": "Backed out changeset a8ac411e1653 (bug 552938) for causing some randomorange.", - "pushdate": "2010-06-10 00:17:54", - "backsout": [ - "a8ac411e1653c2a2359aa5a76e3f0bc45d99aca5" - ] - }, - { - "node": "ef715f78e927e46db86fd00b7a5ea89641767041", - "bug_id": 568818, - "desc": "Backed out changeset d1c910f2ec4d on suspicion of causing test crashes - Bug 568818 - sendSyncMessage fails with 'SyntaxError: JSON.parse' if one of the listeners does not return a value", - "pushdate": "2010-06-11 17:53:10", - "backsout": [ - "d1c910f2ec4dd7388fe57ac9defac792ee3f1fa6" - ] - }, - { - "node": "4dc9a5d9167b157b0867547ea14fe4a4e306af42", - "bug_id": 563327, - "desc": "Backed out changeset fee5701c664e and changeset dcfe95c71a04 to fix the mochitest-a11y crashes (bug 563327)", - "pushdate": "2010-06-14 22:14:46", - "backsout": [ - "fee5701c664e4ec3222483313ea71b52ac514d44" - ] - }, - { - "node": "7523ad2f395e9295ec597de3b8de5329cb17a18a", - "bug_id": 571459, - "desc": "Backed out changeset b54140961fa7 to fix more mochitest-a11y crashes (Bug 571459)", - "pushdate": "2010-06-14 23:19:27", - "backsout": [ - "b54140961fa705b38f1e927a4e8aac626ca567ea" - ] - }, - { - "node": "53510454716ebb1e760a0262ffdfb89276c9543b", - "bug_id": 572034, - "desc": "Backed out changeset f2835c78ef3f, Bug 572034.", - "pushdate": "2010-06-16 23:04:24", - "backsout": [ - "f2835c78ef3fa9e508ad2b9ecbcd48c818a63613" - ] - }, - { - "node": "3e0eb9fe8f481ce2257922ef08219bb364da24a7", - "bug_id": 572034, - "desc": "Backed out changeset d268e54fbfcf (bug 572034)", - "pushdate": "2010-06-18 23:44:31", - "backsout": [ - "d268e54fbfcfbbfab0e3b890fe376cd058498bb8" - ] - }, - { - "node": "5504cc6d31698a12ca86c443aca74c834b499ded", - "bug_id": 555121, - "desc": "Backed out changeset 4adab2629c3f (bug 555121)", - "pushdate": "2010-06-19 06:25:38", - "backsout": [ - "4adab2629c3f76da345a60cb55a3925db6c6241f" - ] - }, - { - "node": "063826c84e206d51231cdd4d2aeaf23544d1fc65", - "bug_id": 534398, - "desc": "Backed out changeset b805434e7e4b (bug 534398) for causing leaks on (debug) mochitest-other.", - "pushdate": "2010-06-19 21:17:47", - "backsout": [ - "b805434e7e4bd4366112ea079d5aed84b5423fba" - ] - }, - { - "node": "284711070f31f2677b807d95476cc7e6db197a3c", - "bug_id": 571347, - "desc": "Backed out changeset a6e3300a3bac (bug 571347) for causing bug 573255 because the optimization is invalid given :not() selectors.", - "pushdate": "2010-06-19 21:17:47", - "backsout": [ - "a6e3300a3bacfa013c9c7169f291057f2a43bff1" - ] - }, - { - "node": "4157a4415bf79adf6def7aa2d216e1321c91867d", - "bug_id": 482878, - "desc": "Backed out changeset 430ce13b63f3 (bug 482878)\nBug 482670 restored un-wrapped payloads, so until a version bump, those using trunk will need to do a manual server wipe.", - "pushdate": "2010-06-23 22:21:35", - "backsout": [ - "430ce13b63f3" - ] - }, - { - "node": "39cb8075f8444f27f7097238e75953aba158d73e", - "bug_id": 571992, - "desc": "Backed out changeset 88142593698a (bug 571992) because it already landed apparently...", - "pushdate": "2010-06-24 17:39:34", - "backsout": [ - "88142593698ad74bd79ec48e99fa349a26ef1b5f" - ] - }, - { - "node": "bf804f41e245b8e2ce317ff51da1e94d32d5ab70", - "bug_id": 557566, - "desc": "Backed out changeset a65d962718b0 (bug 557566)", - "pushdate": "2010-06-27 03:02:56", - "backsout": [ - "a65d962718b0857bf749e165533395e4e7aff2d8" - ] - }, - { - "node": "880fcf5f07b3d395c9d74b7d45b09dd8825217d8", - "bug_id": 557566, - "desc": "Backed out changeset 5da9fc2be835 (Bug 557566)", - "pushdate": "2010-06-27 03:02:56", - "backsout": [ - "5da9fc2be83585333b108f45407d3be37088db5f" - ] - }, - { - "node": "4add6eaba66ff0b2a6c7a809922a60f99625ddc3", - "bug_id": 571159, - "desc": "Backout 8a6de68c0feb (Fix for bug 571159 (Leak nsGlobalWindow with unknown-content-type dialog)) to fix orange.", - "pushdate": "2010-06-28 15:40:59", - "backsout": [ - "8a6de68c0febb7b273942193394fd9ed42a2ce47" - ] - }, - { - "node": "5082a31c8b8e75fa9321fad3baf0e7621fee4328", - "bug_id": 574357, - "desc": "Backed out changeset e112f68bc941 (bug 574357) due to test failures.", - "pushdate": "2010-06-30 05:46:21", - "backsout": [ - "e112f68bc941fa78f6950347f05d892d6c48fc80" - ] - }, - { - "node": "869ff461e1d61b0fc911caba23388a95950ba1c8", - "bug_id": 575336, - "desc": "Backed out changeset 00dfcf7f4c9e (bug 575336) due to test orange. Magic words for CLOSED TREE.", - "pushdate": "2010-07-01 05:19:24", - "backsout": [ - "00dfcf7f4c9eee1b09c632fb45d814e9bea4faa9" - ] - }, - { - "node": "2e14387eb276fe4dc6ee4b13db76639d12b6234e", - "bug_id": 541155, - "desc": "Backed out changeset df78efe07b18, debugging only printfs now that 541155 is diagnosed.", - "pushdate": "2010-07-01 06:28:42", - "backsout": [ - "df78efe07b18" - ] - }, - { - "node": "686aedb56727e992700c4cb6dcc0162dab5b895b", - "bug_id": 535564, - "desc": "Backed out changeset c7a2f3e14a58 - Testing from bug 535564 - We don't have a file handle open when we launch ssltunnel, so ssltunnel wasn't the cause.", - "pushdate": "2010-07-01 06:28:42", - "backsout": [ - "c7a2f3e14a580c7708cd0062b0ddc76e2eaaf322" - ] - }, - { - "node": "9fb0650cbfc08daf9b1371544987878f7bb3ecd6", - "bug_id": 542337, - "desc": "Backed out changeset e033fa1d3b0b - remove the workaround for bug 542337 because bent landed a real fix and we want testing", - "pushdate": "2010-07-01 06:28:42", - "backsout": [ - "e033fa1d3b0bc04aaa37708b6d48eb8b0aeb4fb5" - ] - }, - { - "node": "c4b97df52cae46d26f3bbee0b47b7d994e6ce892", - "bug_id": 550026, - "desc": "backout 5b9325736070 b=550026", - "pushdate": "2010-07-01 06:28:42", - "backsout": [ - "5b932573607072bfa2bd1d19761e404865de2adf" - ] - }, - { - "node": "4497942b0e3d7aa73e282747d857fb6110b794d6", - "bug_id": 556400, - "desc": "Backed out changeset f666976446db from bug 556400 due to possible browser-chrome\nfailures.", - "pushdate": "2010-07-03 03:02:52", - "backsout": [ - "f666976446db" - ] - }, - { - "node": "c066080db73501bdcee16c871ba3eebb07ca0779", - "bug_id": 566738, - "desc": "Backed out changeset 07a9dcc28c5c from bug 566738 due to possible browser-chrome failures.", - "pushdate": "2010-07-03 03:02:52", - "backsout": [ - "07a9dcc28c5ca62106336545c017b80cf8122b57" - ] - }, - { - "node": "920385221b56485347c16d59a782c808d1b64085", - "bug_id": 556400, - "desc": "Backed out changeset f9a700607b86 from bug556400 due to possible browser-chrome failures.", - "pushdate": "2010-07-03 03:02:52", - "backsout": [ - "f9a700607b86514c86ac85387f7d64206d7e23fa" - ] - }, - { - "node": "330178c7235b6ac438af8a8b8797ce006a537242", - "bug_id": 577224, - "desc": "Back out 06cc16f7954e (bug 577224) because it can cause plugins to not draw.", - "pushdate": "2010-07-09 20:16:30", - "backsout": [ - "06cc16f7954e677afb4c8212354637884a348c45" - ] - }, - { - "node": "6ad1beea584ac84aef0dd5f6b90b297d6afe187a", - "bug_id": 578913, - "desc": "Backed out changeset 764bb4ae886c, bug 578913, it may be at fault for a Ts Shutdown regression.", - "pushdate": "2010-07-16 17:25:59", - "backsout": [ - "764bb4ae886c5058c5c7634d6ffb02ddfe431354" - ] - }, - { - "node": "d0d098061840a2d4bb25beada4dfc4f84bdc6cb5", - "bug_id": 571193, - "desc": "Backed out changeset f6c93f02146c, bug 571193.", - "pushdate": "2010-07-17 00:32:00", - "backsout": [ - "f6c93f02146c55b55209c6ae622e15a88cb28543" - ] - }, - { - "node": "bc7c573d41724335e529404841d169f38efd2b27", - "bug_id": 553494, - "desc": "Backed out changeset 58175e77c460 from bug 553494 due to test failures", - "pushdate": "2010-07-26 18:41:40", - "backsout": [ - "58175e77c4604f3c7362d67d572e778d2aca33d9" - ] - }, - { - "node": "a24232050cb11eb86eb348962deea19a40407a33", - "bug_id": 574621, - "desc": "Backed out changeset 9e290d196600 (bug 574621) for causing test failures.", - "pushdate": "2010-07-29 20:17:48", - "backsout": [ - "9e290d196600332b1731df54ca9142df21127a30" - ] - }, - { - "node": "8aabb35a1bb3103d74670ffa88023b9c93d783cc", - "bug_id": 579957, - "desc": "Backed out changeset d8bbb2ef3038. (Igor Bukanov \u2013 bug 579957 - parent as a field in JSObject. r=lw)", - "pushdate": "2010-08-01 00:33:23", - "backsout": [ - "d8bbb2ef303853b6a4b8bc54b6000ca53954fdd4" - ] - }, - { - "node": "4f0f0e801b200dcbdf824a0de1ff9c481481e7e1", - "bug_id": 583281, - "desc": "Backed out changeset af011e92ad0b. (Dave Herman \u2013 bug 583281, r=jimb: njs should get symlinked into objdir). This doesn't build on windows.", - "pushdate": "2010-08-01 00:33:23", - "backsout": [ - "af011e92ad0b6a80ea782c427e9ecef92ceb73fb" - ] - }, - { - "node": "5e31dc2daf0a9c531370204ac3b7f32d9cd1437c", - "bug_id": 582479, - "desc": "Back out changeset c877176cbbed in order to get Windows compiling. (Bug 582479 - TM: Assertion failure: (&cx->regs->sp[1 - (iargc + 2)].toObject())->isFunction().)", - "pushdate": "2010-08-01 00:33:23", - "backsout": [ - "c877176cbbed3e5c73cbb2abc474345b43cc1fe9" - ] - }, - { - "node": "9539f400bb5869e7f5041299359645bd509a9c69", - "bug_id": 577648, - "desc": "Backout changeset 80382d88b92c. (Bug 577648 - arguments.callee.caller does not work in FF 4 under certain circumstances). The patch is righteous, but MSVC's behavior with a mere 3GB of addressable memory is not. Will reland soon.", - "pushdate": "2010-08-01 00:33:23", - "backsout": [ - "80382d88b92c05e71a65f2bb662614ea702cad8d" - ] - }, - { - "node": "bd4713e47e5e0851c7eb3461b2f6599d73f91f81", - "bug_id": 574663, - "desc": "Backed out changeset cd5c28912351, bug 574663 (momentum scroll zooming) because the new test fails on Windows.", - "pushdate": "2010-08-02 15:52:38", - "backsout": [ - "cd5c289123515044557c9fa3abec72b4ab92113e" - ] - }, - { - "node": "32a6a3231e503c54824c6ba80425894f9a058199", - "bug_id": 550936, - "desc": "Backed out changeset bdb98838d6f6 from bug 550936 due to js-reftest failures", - "pushdate": "2010-08-03 05:27:20", - "backsout": [ - "bdb98838d6f6b790d45748a817d70526f0675fe7" - ] - }, - { - "node": "f2d6cc57c80cae87069fccb19f8b0af68af1b7b0", - "bug_id": 572967, - "desc": "Backed out changeset b46982cc0c0a from bug 572967 due to test failures", - "pushdate": "2010-08-03 05:39:35", - "backsout": [ - "b46982cc0c0a82dd8fdbb9f9b57da382c5bd515f" - ] - }, - { - "node": "f7478476c9a5d4a650d764a967c8dedce7e5883f", - "bug_id": 583262, - "desc": "Backed out changeset c6131ed87e9c. Jason Orendorff \u2014 Bug 583262 - Remove security checks on f.prototype.constructor property at last. r=mrbkap. Causing nightly topcrash.", - "pushdate": "2010-08-04 20:45:11", - "backsout": [ - "c6131ed87e9ce7433153c43c4bb7275c35cb4453" - ] - }, - { - "node": "decafc4eb6e2e82cb98713356c2814af0f78372f", - "bug_id": 576777, - "desc": "Backed out changeset d84aff2ae1db (from bug 576777) because of perma-orange in test_text.html.", - "pushdate": "2010-08-05 12:56:16", - "backsout": [ - "d84aff2ae1db1e05b7270ad08e76e74af058eb0f" - ] - }, - { - "node": "8565e77eacdccd4ae3aadd0f769ff2f0604b6684", - "bug_id": 576777, - "desc": "Backed out changeset e29fc477ab4d, bug 576777, because of perma-orange in test_text.html.", - "pushdate": "2010-08-05 12:56:16", - "backsout": [ - "e29fc477ab4d1ae6ec74e20b527b321a10736aed" - ] - }, - { - "node": "8d4d8fc43475a18933f6d48e2260289d9cff0db9", - "bug_id": 580790, - "desc": "Back out changeset 0b3af3fef0fd (bug 580790) due to burnage on a CLOSED TREE", - "pushdate": "2010-08-06 17:47:10", - "backsout": [ - "0b3af3fef0fdfeb5e696c13d773d352e56d94b12" - ] - }, - { - "node": "e88f6c524f3aeda886e7ee21f8ed9b467e946ec9", - "bug_id": 568969, - "desc": "Backed out changeset e6e0200b6e03 (bug 568969) because it appears to have caused orange on a CLOSED TREE.", - "pushdate": "2010-08-06 18:54:28", - "backsout": [ - "e6e0200b6e0325cda78b2634386a420da58f0431" - ] - }, - { - "node": "312fdcee7e5093582e6df431c7c210feef2b14b0", - "bug_id": 580869, - "desc": "Backed out changeset 300036f6c90f from bug 580869 due to test failures", - "pushdate": "2010-08-06 22:02:48", - "backsout": [ - "300036f6c90f769bc2a2ce4c9b5a3cfd1b141468" - ] - }, - { - "node": "87be0d140fd611534baa3bc3579062b9fa8ac4e6", - "bug_id": 580869, - "desc": "Backed out changeset 8f8ee0543d0f from bug 580869 in the CLOSED TREE", - "pushdate": "2010-08-06 22:02:48", - "backsout": [ - "8f8ee0543d0f735ae6fa152244a9233bd7891275" - ] - }, - { - "node": "5a254bcd79f2b1b27cee499322ebafd4f369f881", - "bug_id": 584495, - "desc": "Backed out changeset 504bc84513b0. Andreas Gal \u2013 Ensure that JSOPTION_UNROOTED_GLOBAL is set when we cycle collect (stop-gap measure for bug 584495, r=brendan). default tip", - "pushdate": "2010-08-07 05:52:47", - "backsout": [ - "504bc84513b02579706015b180b6d8f0376c88bf" - ] - }, - { - "node": "682eee29d90d1650e28b60432faf87e89b577767", - "bug_id": 584193, - "desc": "Backed out changeset 86e8ec17e532 (bug 584193).", - "pushdate": "2010-08-08 22:07:15", - "backsout": [ - "86e8ec17e532abe711a7f3def152c2eb6314c4c4" - ] - }, - { - "node": "abca98af611ed75fcdae4e05fd91900e26908474", - "bug_id": 579621, - "desc": "Backed out changeset ec28c1790e13 (bug 579621) for print preview test timeouts", - "pushdate": "2010-08-09 00:49:11", - "backsout": [ - "ec28c1790e13601e325bfe921498cd355467fee3" - ] - }, - { - "node": "9165ca3607bd30328db254613bd305e3e4e0f67e", - "bug_id": 575870, - "desc": "Backed out changeset a0d6e4d37273 (bug 575870) for possibly being the cause of the following performance regression:\nTalos Regression: Txul increase 4.57% on Win7 Firefox\nOther possible culprits:\nbug 574454", - "pushdate": "2010-08-10 20:06:04", - "backsout": [ - "a0d6e4d37273bc0893a6ef3f25bc10261fbdc36b" - ] - }, - { - "node": "89aad8922d715d0ef6aed75907fb8e242f4d70d3", - "bug_id": 584582, - "desc": "Backed out changeset fef97fa21915 (bug 584582) for causing compilation failures on Windows.", - "pushdate": "2010-08-11 19:26:48", - "backsout": [ - "fef97fa21915fc51e8e4d231e1103b3d4eba1858" - ] - }, - { - "node": "b186d13109a758d85982c790e25abcfb3de5358d", - "bug_id": 583145, - "desc": "Backed out changeset ccfdad9f5c93 due to regressions (bug 583145)", - "pushdate": "2010-08-12 01:43:41", - "backsout": [ - "ccfdad9f5c9399f9083c8a5bd3bb24d5aaf87d1b" - ] - }, - { - "node": "90b5a456b7bad12f4b78cc2bfb3d57749cdbbd1a", - "bug_id": 582569, - "desc": "Backed out changeset 937a11c1fc07 from bug 582569 due to new browser-chrome test\nfailures.", - "pushdate": "2010-08-12 17:29:08", - "backsout": [ - "937a11c1fc07d69a0eb3bfc0d97f0fbadc1fd512" - ] - }, - { - "node": "1bab6d09fbc9021a54784388e1d82994ee8bcca3", - "bug_id": 581894, - "desc": "Backout d6a355524fcb from bug 581894 now that bug 579869 is fixed.", - "pushdate": "2010-08-12 19:47:36", - "backsout": [ - "d6a355524fcb88c677b10074adf0071cd5e962ff" - ] - }, - { - "node": "64e4cce311e8a03a9d15c7adef774e90fa5111b7", - "bug_id": 583306, - "desc": "Backout df9bbe8b6d78 now that bug 583306 is fixed.", - "pushdate": "2010-08-12 19:47:36", - "backsout": [ - "df9bbe8b6d78" - ] - }, - { - "node": "60a5b0d62bccef4bae84b063b392246c1007de15", - "bug_id": 578868, - "desc": "Backed out changeset 452db8c688ba, bug 578868.", - "pushdate": "2010-08-13 08:24:39", - "backsout": [ - "452db8c688bad65a1003ff00b2606d28410c5373" - ] - }, - { - "node": "2c69cdb5a98c492d99f6fc0c3f05cb2796a84d1d", - "bug_id": 584965, - "desc": "Backed out changeset 33f8c2bb77ca, bug 584965.", - "pushdate": "2010-08-13 19:48:23", - "backsout": [ - "33f8c2bb77ca11f13bf368a193cfe51b569263cd" - ] - }, - { - "node": "9ded3c2c0a3fca47cfd74a2a985bcc2f9c358310", - "bug_id": 586533, - "desc": "Backed out changeset 1406935fced4. Brian Hackett \u2013 Put JSStackFrame.scopeChain/blockChain behind an interface, bug 586533. r=lw.", - "pushdate": "2010-08-13 20:13:33", - "backsout": [ - "1406935fced42e0bae650f04982c0871932f46d5" - ] - }, - { - "node": "d796055d54653e1f30b08d833958bdcd79f544bd", - "bug_id": 583850, - "desc": "Backed out changeset c5e31473b1a6 (assertions for bug 583850). See bug 584578 and bug 585754.", - "pushdate": "2010-08-13 20:13:33", - "backsout": [ - "c5e31473b1a670f26b865a49390613d74b3c30a3" - ] - }, - { - "node": "2fa5b630f3bc5e0d4ac7f56606b8e51331763cc2", - "bug_id": 573492, - "desc": "Backed out changeset dfd35987dd82 (WAL journaling - bug 573492) due to Ts regressions", - "pushdate": "2010-08-14 07:58:46", - "backsout": [ - "dfd35987dd82520aaf89b1e4a481c26cf75605f9" - ] - }, - { - "node": "391e102eb8636bdd1c7cfdecef0294f6f80194ed", - "bug_id": 575870, - "desc": "Backed out changeset 05dde680ade2 as per bug 575870 comment 71", - "pushdate": "2010-08-15 12:32:07", - "backsout": [ - "05dde680ade2fe2a9a55b6d1eb824ddfeeac84c4" - ] - }, - { - "node": "9f434423bdf92cf2c7732d8bca624d3c71c85f0d", - "bug_id": 585877, - "desc": "Backed out changeset 43b490ef9dab (bug 585877), a=beltzner", - "pushdate": "2010-08-17 19:46:02", - "backsout": [ - "43b490ef9dab30db2c4e2706110ad5d524a21597" - ] - }, - { - "node": "eaa833618eaab81c9a1aad2516434196b47e9664", - "bug_id": 490705, - "desc": "Backed out changeset 1362f0ca86d2 (bug 490705 - Support Audio Data API: Get, Manipulate, Play & Save) due to test failures.", - "pushdate": "2010-08-18 17:10:12", - "backsout": [ - "1362f0ca86d2e16b0341e45e8d5d9be8345a44f0" - ] - }, - { - "node": "c78c4fda1325dd5169f15e80f42de19908b7d99e", - "bug_id": 471643, - "desc": "Backed out changeset f600448ae7db / bug 471643 due to reftest failures", - "pushdate": "2010-08-19 08:29:47", - "backsout": [ - "f600448ae7db41bd72ea625d674967a262c0dd81" - ] - }, - { - "node": "fae9fc14a22a9fd70f56544181e689b1af72f0f6", - "bug_id": 588977, - "desc": "Backout 2d6ead22831c (bug 588977) due to orange. a=backout", - "pushdate": "2010-08-20 17:26:59", - "backsout": [ - "2d6ead22831cbe04922906805f5c38c730760875" - ] - }, - { - "node": "cbb5793c529eda0f1a01a82edad05684c6978fd5", - "bug_id": 576026, - "desc": "Backed out changeset 2d57f5901aa2 (bug 576026). a=bustage", - "pushdate": "2010-08-24 22:52:15", - "backsout": [ - "2d57f5901aa226d161cbc45b4d9db41d34a28af8" - ] - }, - { - "node": "c3c185d6ee88ebb2b52bc8cb1fbefc737779f749", - "bug_id": 587257, - "desc": "Backed out changeset b404ad209cb9. (Bug 587257 - Make Array.prototype.join faster. r=lw)", - "pushdate": "2010-08-25 16:25:25", - "backsout": [ - "b404ad209cb92ed0f056a77feb8e093a28734856" - ] - }, - { - "node": "c8e75a4433d9b62eddcfb841c53af5815ae95948", - "bug_id": 590422, - "desc": "Backed out changeset d578993db396 (bug 590422) due to possible performance regressions (especially WinXP Tscroll).", - "pushdate": "2010-08-27 18:09:29", - "backsout": [ - "d578993db3969fa6e89e2e487ac4bb1c660aa7c9" - ] - }, - { - "node": "0487454f42193aa15efea739c359ea67b1682b11", - "bug_id": 581076, - "desc": "Backed out changeset 6fe388a0fb5e (Bug 581076) due to test failures. a=bustage", - "pushdate": "2010-08-30 05:36:19", - "backsout": [ - "6fe388a0fb5eb94bc4b9969d60111b8ce5141378" - ] - }, - { - "node": "9e09716ddaf73e57dbd0d1a50492b0404275f67e", - "bug_id": 592951, - "desc": "Backed out changeset 52388a9a6337, bug 592951. a=me", - "pushdate": "2010-09-08 22:20:40", - "backsout": [ - "52388a9a63378153bc365b022d913b64e9629bb1" - ] - }, - { - "node": "b5896c8b6d41913e2968a08c15579152a58af8ce", - "bug_id": 588999, - "desc": "Backed out changeset 4bc623a55708 (bug 588999) because of orange on Windows 7", - "pushdate": "2010-09-09 23:26:17", - "backsout": [ - "4bc623a5570853ba5da99922f425cd3753b48f08" - ] - }, - { - "node": "d8674093f3558f6cfc862352dec321af9f8e4d7a", - "bug_id": 578880, - "desc": "Backed out changeset 100bcacdbf45 due to orange (bug 578880).", - "pushdate": "2010-09-10 20:50:33", - "backsout": [ - "100bcacdbf456379bfd0f81359b600dfa648199a" - ] - }, - { - "node": "84baf90b040c7d5912724461c6e9e1d104ce5a18", - "bug_id": 589613, - "desc": "Backed out changeset 2a216165e361 (bug 589613), a=shutuphook", - "pushdate": "2010-09-11 17:49:52", - "backsout": [ - "2a216165e361c07faf31e4788b404580e9cc7343" - ] - }, - { - "node": "afe3db59ae35d04547b3c07fdc46e8e77d8cd9d0", - "bug_id": 588016, - "desc": "Backed out changeset e2e1ea2a39ce. (Igor Bukanov \u2013 bug 588016 - Avoid reporting OOM when background has not finished. r=anygregor)", - "pushdate": "2010-09-11 19:16:24", - "backsout": [ - "e2e1ea2a39cea2442b332998015324369763f0a2" - ] - }, - { - "node": "59244235c85ba6eb0d296198ec5ea5ac7540a1c7", - "bug_id": 508115, - "desc": "Backed out changeset a6ee83aa638e to fix orange (test_bug508115.xul timing out)", - "pushdate": "2010-09-14 03:45:55", - "backsout": [ - "a6ee83aa638e" - ] - }, - { - "node": "5ef1dd2885fbd311be1be1993e786f218660cbb5", - "bug_id": 508115, - "desc": "Backed out changeset 2e55203d7b80 to fix orange (test_bug508115.xul timing out).", - "pushdate": "2010-09-14 03:45:55", - "backsout": [ - "2e55203d7b80a8dffdf9217d8eefbf4a6f897456" - ] - }, - { - "node": "df5e678290228bd3f9eb047fbe4597c1bb34092a", - "bug_id": 590612, - "desc": "Backout c130135dcf02 (Fix for bug 590612 (Speed up js-wrapping in classinfo when we already have a wrapper)).", - "pushdate": "2010-09-15 05:28:28", - "backsout": [ - "c130135dcf023f94f778866f3aba337704323f13" - ] - }, - { - "node": "77e11b95175faa0b37166d68311b62b8c398e13d", - "bug_id": 582840, - "desc": "Backout changeset 7eb93fe05d3a. bug 582840 due to oranges", - "pushdate": "2010-09-15 22:02:59", - "backsout": [ - "7eb93fe05d3aed48fe64ee4b00f55d7a931ee7fd" - ] - }, - { - "node": "8422935a2d917c8769c68fbff2a7443e286ae28e", - "bug_id": 580033, - "desc": "Backed out changeset 84b4d4856e1e (bug 580033) due to orange.", - "pushdate": "2010-09-16 16:26:06", - "backsout": [ - "84b4d4856e1eaab0ccc7ba6184a977ab44ef5ab5" - ] - }, - { - "node": "58e7b99bb1d09011736b55ed85f9bb75af839b5b", - "bug_id": 596762, - "desc": "Backed out changeset 080a38bd09c5, bug 596762, a=bustage", - "pushdate": "2010-09-16 22:41:26", - "backsout": [ - "080a38bd09c5cbdf173e61216655032c865d9b82" - ] - }, - { - "node": "84a05bdabec5be7bacde12cccc92db17f4d54c5a", - "bug_id": 596762, - "desc": "Backed out changeset c06ef0414fee, bug 596762. a=me", - "pushdate": "2010-09-21 02:13:50", - "backsout": [ - "c06ef0414fee2ae6ae41b8a4a13c62c132a7e780" - ] - }, - { - "node": "f552a61aa4234eca5819bb3bfd6490501a13c330", - "bug_id": 597945, - "desc": "Back out changeset d7d3c0af2877. Brendan Eich \u2013 Fix slot leak that leads to allocSlot assert botch (597945, r=jorendorff).", - "pushdate": "2010-09-21 05:12:47", - "backsout": [ - "d7d3c0af287702956715d115205e2695b5ec39fa" - ] - } -] \ No newline at end of file diff --git a/dataset/processed_backout_data.json b/dataset/processed_backout_data.json deleted file mode 100644 index 047d5cb650..0000000000 --- a/dataset/processed_backout_data.json +++ /dev/null @@ -1,101119 +0,0 @@ -[ - { - "node": "3a2a9e0c5c633a413efbf2db5110a978f7ebf055", - "author": "bcrowder@mozilla.com", - "bug_id": 439110, - "desc": "Backed out changeset f201baf7bf04 (bug 439110), was causing unit-test failures", - "pushdate": "2008-06-18 23:00:40", - "backsout": [ - "f201baf7bf047e4180a09b6106f2a8846ae572ee" - ], - "backedoutby": "", - "author_email": "bcrowder@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 2863366.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/xpconnect/shell/xpcshell.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "294bf662e8c0a3e3a1bc74a9dbd6d4d499c30e7f", - "author": "Daniel Holbert ", - "bug_id": 433373, - "desc": "Backed out changeset 5bffc31ff797 (bug 433373) -- first attempt didn't handle page scaling correctly.", - "pushdate": "2008-06-24 18:54:31", - "backsout": [ - "5bffc31ff797e687688309eda37f407a3e5e82d8" - ], - "backedoutby": "", - "author_email": "dholbert@cs.stanford.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 3502598.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/generic/nsPageFrame.cpp" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "layout/generic", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "4f1b1553985c88372878dffe93a79988a4f1c8a1", - "author": "L. David Baron ", - "bug_id": 363706, - "desc": "Back out 0b57ada5d4b2 due to mochitest failures on at least Windows. (Bug 363706)", - "pushdate": "2008-07-02 05:02:11", - "backsout": [ - "0b57ada5d4b243b60ac0834131c56bbadf8b935d" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 4183452.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/base/nsLayoutUtils.cpp", - "layout/base/nsLayoutUtils.h", - "layout/generic/nsAbsoluteContainingBlock.cpp", - "layout/generic/nsFrame.cpp", - "layout/style/nsComputedDOMStyle.cpp", - "layout/style/nsRuleNode.cpp", - "layout/style/nsStyleCoord.cpp", - "layout/style/nsStyleCoord.h", - "layout/style/nsStyleStruct.cpp", - "layout/style/nsStyleStruct.h", - "layout/tables/BasicTableLayoutStrategy.cpp", - "layout/tables/FixedTableLayoutStrategy.cpp", - "layout/xul/base/src/nsBox.cpp" - ], - "components": [ - "Core::CSS Parsing and Computation", - "Core::DOM: CSS Object Model", - "Core::Layout", - "Core::Layout: Tables", - "Core::Layout: Positioned" - ], - "directories": [ - "layout/generic", - "layout/tables", - "layout/xul", - "layout/style", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "487bd2c4044a093a8f1e108c7c925d1b55e85975", - "author": "L. David Baron ", - "bug_id": 363706, - "desc": "Back out 0b1995eab10f due to mochitest failures on at least Windows. (Bug 363706)", - "pushdate": "2008-07-02 05:02:11", - "backsout": [ - "0b1995eab10f9e451d0060ee41819b9edfea12d5" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 4183452.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "gfx/thebes/public/gfxFont.h", - "gfx/thebes/src/gfxAtsuiFonts.cpp", - "gfx/thebes/src/gfxOS2Fonts.cpp", - "gfx/thebes/src/gfxPangoFonts.cpp", - "gfx/thebes/src/gfxWindowsFonts.cpp", - "layout/reftests/bugs/371043-1-ref.html", - "layout/reftests/bugs/reftest.list", - "layout/style/nsRuleNode.cpp" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "gfx/thebes", - "layout/reftests", - "layout/style", - "gfx", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "847ff9bffc86ff91a8da3ea1b9f5b38bc335bce0", - "author": "Shawn Wilsher ", - "bug_id": 442949, - "desc": "Backed out changeset c9b5882bf6f6 per bug 442949.\nThis changeset is only being backed out because it depends on the sqlite upgrade.", - "pushdate": "2008-07-08 14:15:34", - "backsout": [ - "c9b5882bf6f69406c24d4c8a277122b53b207dcd" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 2932103.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "db/sqlite3/src/Makefile.in" - ], - "components": [], - "directories": [ - "db/sqlite3", - "db" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "00f39bafc70ebf3fb8ee8911ad097624cf2383a0", - "author": "Shawn Wilsher ", - "bug_id": 442949, - "desc": "Backed out changeset 1d72dd9072ab for Bug 442949 (Ts regression)", - "pushdate": "2008-07-08 14:15:34", - "backsout": [ - "1d72dd9072ab4f8693258fd4221266c030793c86" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 2932103.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "db/sqlite3/src/sqlite3.c", - "db/sqlite3/src/sqlite3.h" - ], - "components": [], - "directories": [ - "db/sqlite3", - "db" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "6d3ecb00edf7a48850ff6ea170af781d6339b363", - "author": "Shawn Wilsher ", - "bug_id": 442949, - "desc": "Backed out changeset e741c9c886f7 for bug 442949 (Ts regression)", - "pushdate": "2008-07-08 14:15:34", - "backsout": [ - "e741c9c886f780d08c40b9d84e65bb7f496a0203" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 2932103.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "configure.in", - "db/sqlite3/README.MOZILLA" - ], - "components": [], - "directories": [ - "db/sqlite3", - "db" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "ad98cff74097a54fc30245d5f7747d095834e68a", - "author": "Shawn Wilsher ", - "bug_id": 443220, - "desc": "Backed out changeset 12412df591a0 (bug 443220)", - "pushdate": "2008-07-08 22:34:54", - "backsout": [ - "12412df591a0b599c76c2a19e0251a7c46a419d9" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 2962063.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "tools/test-harness/xpcshell-simple/test_one.sh" - ], - "components": [], - "directories": [ - "tools/test-harness", - "tools" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "337a43c872960010037890048fccfc08e2af8a96", - "author": "L. David Baron ", - "bug_id": 374754, - "desc": "Backed out changeset 5c009a853d70 for hitting a fatal JS_Assert during xpcshell unit tests (xpcom/unit/test_bug374754.js) on the DO_NEXT_OP(JSOP_INCNAME_LENGTH) line on !JS_THREADED_INTERP platforms (Windows).", - "pushdate": "2008-07-19 04:53:17", - "backsout": [ - "5c009a853d70d952b2b2c209df33c00a02efb400" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 5651718.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsemit.cpp", - "js/src/jsinterp.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "16708f23daf5fbf23e298eeb28d7693e42ec6d34", - "author": "Edward Lee ", - "bug_id": 446621, - "desc": "Backout 6831521f03ac to fix Bug 446621 - Slowdown on AutoComplete - AwesomeBar. a=beltzner", - "pushdate": "2008-07-22 15:50:07", - "backsout": [ - "6831521f03ac63ba33b6804656f78c4ea6108355" - ], - "backedoutby": "", - "author_email": "edward.lee@engineering.uiuc.edu", - "reviewers": [ - "beltzner" - ], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 5214472.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/components/places/src/nsNavHistoryAutoComplete.cpp" - ], - "components": [], - "directories": [ - "toolkit/components", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "cab5a570f46e10259bcd9152bcd3fab535a35e5c", - "author": "Ryan Flint ", - "bug_id": 432599, - "desc": "Backout changesets d811aa4cf0cf and 96ca77c43cb9 from bug 432599", - "pushdate": "2008-07-29 23:05:50", - "backsout": [ - "d811aa4cf0cf2c0c23fb423ed23a452bd4f94cf0", - "96ca77c43cb9addf18588d138e910a5d201a1111" - ], - "backedoutby": "", - "author_email": "rflint@ryanflint.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 836604.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/base/content/browser-places.js", - "browser/base/content/test/Makefile.in", - "browser/base/content/test/browser_bug432599.js" - ], - "components": [ - "Firefox::Bookmarks & History" - ], - "directories": [ - "browser/base", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "3bd5b0f13df3cce01677022941d92e14747eca78", - "author": "Justin Dolske ", - "bug_id": 449422, - "desc": "Backed out changeset 7362e63c648e (relanding bug 449422)", - "pushdate": "2008-08-14 04:20:03", - "backsout": [ - "7362e63c648e" - ], - "backedoutby": "", - "author_email": "dolske@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 5043247.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/tables/nsTableRowFrame.cpp", - "layout/tables/nsTableRowGroupFrame.cpp" - ], - "components": [ - "Core::Layout: Tables" - ], - "directories": [ - "layout/tables", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "93a88a69a3df3d36b4b4c28126cd38ebd04026b4", - "author": "Justin Dolske ", - "bug_id": 449168, - "desc": "Backed out changeset 4b2c67fe7e6b (relanding bug 449168)", - "pushdate": "2008-08-14 04:51:30", - "backsout": [ - "4b2c67fe7e6b" - ], - "backedoutby": "", - "author_email": "dolske@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 5045134.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/generic/nsFrameSelection.h", - "layout/generic/nsTextFrame.h", - "layout/generic/nsTextFrameThebes.cpp" - ], - "components": [ - "Core::Layout", - "Core::Layout: Text and Fonts" - ], - "directories": [ - "layout/generic", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "afeaf72a5266b81ccdc006fe1d923aea93f88811", - "author": "Justin Dolske ", - "bug_id": 121341, - "desc": "Backed out changeset db55605b2a4c (relanding bug 121341)", - "pushdate": "2008-08-14 05:00:00", - "backsout": [ - "db55605b2a4c" - ], - "backedoutby": "", - "author_email": "dolske@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 5045644.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "xpcom/ds/nsPersistentProperties.cpp", - "xpcom/ds/nsPersistentProperties.h", - "xpcom/tests/unit/data/bug121341-2.properties", - "xpcom/tests/unit/data/bug121341.properties", - "xpcom/tests/unit/test_bug121341.js" - ], - "components": [ - "Core::XPCOM" - ], - "directories": [ - "xpcom/ds", - "xpcom", - "xpcom/tests" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "573c5b6e8ec057ba45cc91e88b5ec74403fda2c8", - "author": "Benjamin Smedberg ", - "bug_id": 31290, - "desc": "Backed out changeset e92e18d52d71 due to the following test failures on Windows:\n*** 31290 ERROR TEST-UNEXPECTED-FAIL | /tests/dom/tests/mochitest/general/test_offsets.xul | svgbase bounding rect width - got 45, expected 0\n*** 31291 ERROR TEST-UNEXPECTED-FAIL | /tests/dom/tests/mochitest/general/test_offsets.xul | svgbase bounding rect height - got 20, expected 0\n*** 31292 ERROR TEST-UNEXPECTED-FAIL | /tests/dom/tests/mochitest/general/test_offsets.xul | svgbase bounding rect right - got 45, expected 0\n*** 31293 ERROR TEST-UNEXPECTED-FAIL | /tests/dom/tests/mochitest/general/test_offsets.xul | svgbase bounding rect bottom - got 20, expected 0\n*** 31306 ERROR TEST-UNEXPECTED-FAIL | /tests/dom/tests/mochitest/general/test_offsets.xul | svgrect bounding rect width - got 45, expected 0\n*** 31307 ERROR TEST-UNEXPECTED-FAIL | /tests/dom/tests/mochitest/general/test_offsets.xul | svgrect bounding rect height - got 20, expected 0\n*** 31308 ERROR TEST-UNEXPECTED-FAIL | /tests/dom/tests/mochitest/general/test_offsets.xul | svgrect bounding rect right - got 45, expected 0\n*** 31309 ERROR TEST-UNEXPECTED-FAIL | /tests/dom/tests/mochitest/general/test_offsets.xul | svgrect bounding rect bottom - got 20, expected 0", - "pushdate": "2008-08-19 16:22:27", - "backsout": [ - "e92e18d52d714ded67f557aed34aed09e1883f0e" - ], - "backedoutby": "", - "author_email": "benjamin@smedbergs.us", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 13131183.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/base/nsLayoutUtils.cpp", - "layout/svg/base/src/nsISVGChildFrame.h", - "layout/svg/base/src/nsSVGClipPathFrame.cpp", - "layout/svg/base/src/nsSVGClipPathFrame.h", - "layout/svg/base/src/nsSVGContainerFrame.cpp", - "layout/svg/base/src/nsSVGContainerFrame.h", - "layout/svg/base/src/nsSVGEffects.cpp", - "layout/svg/base/src/nsSVGFilterFrame.cpp", - "layout/svg/base/src/nsSVGFilterFrame.h", - "layout/svg/base/src/nsSVGForeignObjectFrame.cpp", - "layout/svg/base/src/nsSVGForeignObjectFrame.h", - "layout/svg/base/src/nsSVGGlyphFrame.cpp", - "layout/svg/base/src/nsSVGGlyphFrame.h", - "layout/svg/base/src/nsSVGImageFrame.cpp", - "layout/svg/base/src/nsSVGInnerSVGFrame.cpp", - "layout/svg/base/src/nsSVGMarkerFrame.cpp", - "layout/svg/base/src/nsSVGMaskFrame.cpp", - "layout/svg/base/src/nsSVGOuterSVGFrame.cpp", - "layout/svg/base/src/nsSVGOuterSVGFrame.h", - "layout/svg/base/src/nsSVGPathGeometryFrame.cpp", - "layout/svg/base/src/nsSVGPathGeometryFrame.h", - "layout/svg/base/src/nsSVGSwitchFrame.cpp", - "layout/svg/base/src/nsSVGTextFrame.cpp", - "layout/svg/base/src/nsSVGTextFrame.h", - "layout/svg/base/src/nsSVGUtils.cpp", - "layout/svg/base/src/nsSVGUtils.h" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "layout/svg", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "2c020a9f03c14446c2b28966511240cc2883bcc5", - "author": "Dave Camp ", - "bug_id": 430061, - "desc": "Backed out changeset e63a23edb90c due to Rlk regression (bug 430061).", - "pushdate": "2008-08-19 21:43:06", - "backsout": [ - "e63a23edb90c92f0cd591e0507906f14978a1f4f" - ], - "backedoutby": "", - "author_email": "dcamp@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 4735124.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "modules/libpr0n/build/nsImageModule.cpp", - "modules/libpr0n/src/Makefile.in", - "modules/libpr0n/src/imgCache.cpp", - "modules/libpr0n/src/imgCache.h", - "modules/libpr0n/src/imgLoader.cpp", - "modules/libpr0n/src/imgLoader.h", - "modules/libpr0n/src/imgRequest.cpp", - "modules/libpr0n/src/imgRequest.h", - "modules/libpr0n/test/Makefile.in", - "modules/libpref/src/init/all.js" - ], - "components": [], - "directories": [ - "modules/libpref", - "modules/libpr0n", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "c82226c56072c7c85c7d9e614fa1c84b65d42592", - "author": "Dave Camp ", - "bug_id": 261074, - "desc": "Backed out changeset c0f5a0af84dd to try to fix windows orange (Bug 261074).", - "pushdate": "2008-08-19 22:46:59", - "backsout": [ - "c0f5a0af84dd0fe9602953dcfa00d088716fde4a" - ], - "backedoutby": "", - "author_email": "dcamp@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 4738957.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "widget/src/windows/nsWindow.cpp" - ], - "components": [], - "directories": [ - "widget", - "widget/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "aa14280d31fb3486a3371581ae6a04461738d1eb", - "author": "Dave Camp ", - "bug_id": 356295, - "desc": "Backed out changeset 30d900751ca9 to fix unit test orange (Bug 356295)", - "pushdate": "2008-08-20 00:57:00", - "backsout": [ - "30d900751ca93a98ccc4fca46179e44d4d900935" - ], - "backedoutby": "", - "author_email": "dcamp@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 4746758.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/base/content/pageinfo/pageInfo.js", - "content/base/public/nsContentUtils.h", - "content/base/src/nsContentAreaDragDrop.cpp", - "content/base/src/nsContentAreaDragDrop.h", - "content/base/src/nsContentUtils.cpp", - "content/base/src/nsGkAtomList.h", - "content/events/public/nsIPrivateDOMEvent.h", - "content/events/src/Makefile.in", - "content/events/src/nsDOMDataTransfer.cpp", - "content/events/src/nsDOMDataTransfer.h", - "content/events/src/nsDOMDragEvent.cpp", - "content/events/src/nsDOMDragEvent.h", - "content/events/src/nsDOMEvent.cpp", - "content/events/src/nsDOMEvent.h", - "content/events/src/nsDOMMouseEvent.h", - "content/events/src/nsDOMUIEvent.cpp", - "content/events/src/nsEventDispatcher.cpp", - "content/events/src/nsEventListenerManager.cpp", - "content/events/src/nsEventStateManager.cpp", - "content/events/src/nsEventStateManager.h", - "content/events/test/Makefile.in", - "content/events/test/test_draggableprop.html", - "content/events/test/test_dragstart.html", - "content/html/content/src/nsGenericHTMLElement.cpp", - "content/html/content/src/nsGenericHTMLElement.h", - "content/html/content/src/nsHTMLAnchorElement.cpp", - "content/html/content/src/nsHTMLImageElement.cpp", - "dom/public/coreEvents/nsIDOMDragListener.h", - "dom/public/idl/events/Makefile.in", - "dom/public/idl/events/nsIDOMDataTransfer.idl", - "dom/public/idl/events/nsIDOMDragEvent.idl", - "dom/public/idl/html/nsIDOMNSHTMLElement.idl", - "dom/public/nsDOMClassInfoID.h", - "dom/src/base/nsDOMClassInfo.cpp", - "editor/libeditor/base/nsEditorUtils.cpp", - "editor/libeditor/base/nsEditorUtils.h", - "editor/libeditor/html/nsHTMLDataTransfer.cpp", - "editor/libeditor/text/nsEditorEventListeners.cpp", - "editor/libeditor/text/nsPlaintextDataTransfer.cpp", - "layout/base/nsLayoutUtils.cpp", - "layout/xul/base/src/tree/public/nsITreeBoxObject.idl", - "layout/xul/base/src/tree/src/nsTreeBodyFrame.cpp", - "layout/xul/base/src/tree/src/nsTreeBoxObject.cpp", - "testing/mochitest/tests/SimpleTest/EventUtils.js", - "toolkit/content/nsDragAndDrop.js", - "widget/public/nsGUIEvent.h", - "widget/public/nsIDragService.idl", - "widget/public/nsIDragSession.idl", - "widget/src/beos/nsWindow.cpp", - "widget/src/cocoa/nsChildView.mm", - "widget/src/cocoa/nsDragService.mm", - "widget/src/gtk2/nsWindow.cpp", - "widget/src/gtk2/nsWindow.h", - "widget/src/os2/nsWindow.cpp", - "widget/src/photon/nsWidget.cpp", - "widget/src/windows/nsNativeDragTarget.cpp", - "widget/src/xpwidgets/nsBaseDragService.cpp", - "widget/src/xpwidgets/nsBaseDragService.h", - "widget/src/xpwidgets/nsPrimitiveHelpers.cpp", - "xpfe/global/jar.mn" - ], - "components": [ - "Core::Layout", - "Firefox::Page Info Window", - "Testing::Mochitest" - ], - "directories": [ - "browser/base", - "toolkit/content", - "editor", - "content/base", - "content", - "content/html", - "toolkit", - "dom", - "browser", - "layout", - "dom/public", - "dom/src", - "xpfe", - "layout/xul", - "testing/mochitest", - "testing", - "layout/base", - "widget", - "editor/libeditor", - "xpfe/global", - "widget/public", - "widget/src", - "content/events" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "695ba8eac3dc1e4a5206ff29f25a36267bc2d3e0", - "author": "Dave Camp ", - "bug_id": 442812, - "desc": "Backed out changeset 1e3d4775197a (bug 442812)", - "pushdate": "2008-08-20 05:59:47", - "backsout": [ - "1e3d4775197af65a4f9bcebf2280ad0d710b722a" - ], - "backedoutby": "", - "author_email": "dcamp@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 4764925.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "caps/src/nsScriptSecurityManager.cpp", - "content/base/public/nsContentUtils.h", - "content/base/src/Makefile.in", - "content/base/src/nsContentSink.cpp", - "content/base/src/nsContentSink.h", - "content/base/src/nsContentUtils.cpp", - "dom/src/offline/nsDOMOfflineResourceList.cpp", - "netwerk/base/public/nsNetUtil.h", - "netwerk/cache/src/nsDiskCacheDeviceSQL.cpp", - "netwerk/cache/src/nsDiskCacheDeviceSQL.h", - "uriloader/prefetch/nsIOfflineCacheUpdate.idl", - "uriloader/prefetch/nsOfflineCacheUpdate.cpp" - ], - "components": [], - "directories": [ - "netwerk/base", - "uriloader/prefetch", - "dom/src", - "netwerk", - "netwerk/cache", - "caps/src", - "caps", - "dom", - "content/base", - "content", - "uriloader" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "f65e7540fe97621babc413d15060df2cb3d86e81", - "author": "Dave Camp ", - "bug_id": 442806, - "desc": "Backed out changeset ea551e6f0f40 (bug 442806)", - "pushdate": "2008-08-20 05:59:47", - "backsout": [ - "ea551e6f0f409d0afd550d69cfbdd8a8d816c336" - ], - "backedoutby": "", - "author_email": "dcamp@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 4764925.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/base/content/browser.js", - "browser/components/preferences/advanced.js", - "content/base/src/nsContentSink.cpp", - "content/base/src/nsContentUtils.cpp", - "content/base/src/nsDocument.cpp", - "content/base/src/nsDocument.h", - "docshell/base/nsDocShell.cpp", - "dom/src/offline/Makefile.in", - "dom/src/offline/nsDOMOfflineResourceList.cpp", - "dom/src/offline/nsDOMOfflineResourceList.h", - "dom/tests/mochitest/ajax/offline/offlineTests.js", - "dom/tests/mochitest/ajax/offline/test_changingManifest.html", - "dom/tests/mochitest/ajax/offline/test_simpleManifest.html", - "netwerk/base/public/Makefile.in", - "netwerk/base/public/nsIApplicationCache.idl", - "netwerk/base/public/nsIApplicationCacheContainer.idl", - "netwerk/base/public/nsIApplicationCacheService.idl", - "netwerk/base/public/nsINetUtil.idl", - "netwerk/base/public/nsNetUtil.h", - "netwerk/base/src/nsIOService.cpp", - "netwerk/base/src/nsIOService.h", - "netwerk/build/Makefile.in", - "netwerk/build/nsNetCID.h", - "netwerk/build/nsNetModule.cpp", - "netwerk/cache/public/Makefile.in", - "netwerk/cache/public/nsICacheService.idl", - "netwerk/cache/public/nsIOfflineCacheSession.idl", - "netwerk/cache/src/nsCacheService.cpp", - "netwerk/cache/src/nsCacheService.h", - "netwerk/cache/src/nsCacheSession.cpp", - "netwerk/cache/src/nsCacheSession.h", - "netwerk/cache/src/nsDiskCacheDeviceSQL.cpp", - "netwerk/cache/src/nsDiskCacheDeviceSQL.h", - "netwerk/protocol/http/src/nsHttpChannel.cpp", - "netwerk/protocol/http/src/nsHttpChannel.h", - "uriloader/prefetch/nsIOfflineCacheUpdate.idl", - "uriloader/prefetch/nsOfflineCacheUpdate.cpp", - "uriloader/prefetch/nsOfflineCacheUpdate.h" - ], - "components": [ - "Firefox::General", - "Core::Networking", - "Core::DOM: Navigation" - ], - "directories": [ - "netwerk/base", - "browser/base", - "uriloader/prefetch", - "netwerk/protocol", - "dom/src", - "dom/tests", - "netwerk", - "docshell/base", - "netwerk/cache", - "docshell", - "browser/components", - "content/base", - "content", - "dom", - "netwerk/build", - "browser", - "uriloader" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "2053bab906dc548240c7d3e279af04ffcac48843", - "author": "Dave Camp ", - "bug_id": 442803, - "desc": "Backed out changeset bbaf0d5fef61 (bug 442803)", - "pushdate": "2008-08-20 05:59:47", - "backsout": [ - "bbaf0d5fef61d03cb6fbb41f334eeccb6e48599f" - ], - "backedoutby": "", - "author_email": "dcamp@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 4764925.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "uriloader/prefetch/nsIPrefetchService.idl", - "uriloader/prefetch/nsPrefetchService.cpp", - "uriloader/prefetch/nsPrefetchService.h" - ], - "components": [ - "Core::Networking: Cache" - ], - "directories": [ - "uriloader/prefetch", - "uriloader" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "a9d2103187b145aec59e893a66ef3eec6efec569", - "author": "Dave Camp ", - "bug_id": 436531, - "desc": "Backed out changeset 2e3d61018e3d (Bug 436531)", - "pushdate": "2008-08-20 07:43:30", - "backsout": [ - "2e3d61018e3d21e3fd7cd178f0636a68cdc25fd0" - ], - "backedoutby": "", - "author_email": "dcamp@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 4771148.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "xpcom/proxy/src/nsProxyEvent.cpp", - "xpcom/proxy/tests/Makefile.in", - "xpcom/proxy/tests/nsITestProxy.idl", - "xpcom/proxy/tests/nsITestProxyOrig.idl", - "xpcom/proxy/tests/proxy-create-threadsafety.cpp", - "xpcom/proxy/tests/proxytests.cpp", - "xpcom/reflect/xptcall/src/md/win32/xptc_arm_ceppc.asm" - ], - "components": [], - "directories": [ - "xpcom/reflect", - "xpcom/proxy", - "xpcom" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "e2f89ccef0e4b9e4f7cd72206a148692472b38dc", - "author": "Dave Camp ", - "bug_id": 418051, - "desc": "Backed out changeset af00b3f27c64 (Bug 418051)", - "pushdate": "2008-08-20 08:16:26", - "backsout": [ - "af00b3f27c646294873083d5e319b109810318ee" - ], - "backedoutby": "", - "author_email": "dcamp@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 4773124.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsparse.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "ada680794b55d8ff552d5c3d73811725fef56e08", - "author": "Dave Camp ", - "bug_id": 419562, - "desc": "Backed out changeset 1c69f587516b (Bug 419562)", - "pushdate": "2008-08-20 09:43:02", - "backsout": [ - "1c69f587516be67e1adae3f7a2b913d13e9fb958" - ], - "backedoutby": "", - "author_email": "dcamp@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 4778320.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "netwerk/protocol/http/src/nsHttpHandler.cpp", - "netwerk/protocol/http/src/nsHttpHandler.h" - ], - "components": [], - "directories": [ - "netwerk/protocol", - "netwerk" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "cafe838a9b87c8a80a674a2aa3acb890d2d4d37c", - "author": "Dave Camp ", - "bug_id": 367052, - "desc": "Backed out changeset f468ae1633d4 (bug 367052)", - "pushdate": "2008-08-20 10:48:44", - "backsout": [ - "f468ae1633d421c84960427ce3550176449b7832" - ], - "backedoutby": "", - "author_email": "dcamp@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 4782262.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/components/sessionstore/src/nsSessionStore.js", - "browser/components/sessionstore/test/Makefile.in", - "browser/components/sessionstore/test/browser/Makefile.in", - "browser/components/sessionstore/test/browser/browser_367052.js" - ], - "components": [], - "directories": [ - "browser/components", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "da0fa455f1af06307d92b7a5a953a3d24b2641da", - "author": "Ted Mielczarek ", - "bug_id": 446529, - "desc": "Backed out changeset d55aac0ec553, bug 446529 - Disable discretionary ligatures on Mac, due to reftest failures on mac\n\nREFTEST TEST-UNEXPECTED-FAIL | file:///builds/slave/trunk_darwin_mini01/build/layout/reftests/text/wordwrap-01.html |\nREFTEST TEST-UNEXPECTED-FAIL | file:///builds/slave/trunk_darwin_mini01/build/layout/reftests/text/wordwrap-03.html |", - "pushdate": "2008-08-20 14:44:22", - "backsout": [ - "d55aac0ec553a9c93c1e3a33c867a98f1fc23b39" - ], - "backedoutby": "", - "author_email": "ted.mielczarek@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 13211698.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "gfx/thebes/src/gfxAtsuiFonts.cpp" - ], - "components": [], - "directories": [ - "gfx/thebes", - "gfx" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "e376bc87ac4ac55653d08eae143ceeff73f0c2bf", - "author": "Dave Camp ", - "bug_id": 442806, - "desc": "Backed out changeset ebafb9df6ce0 (bug 442806)", - "pushdate": "2008-08-25 06:12:07", - "backsout": [ - "ebafb9df6ce0aaf17bb68508ceded54ce15114c1" - ], - "backedoutby": "", - "author_email": "dcamp@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 5197665.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/base/content/browser.js", - "browser/components/preferences/advanced.js", - "content/base/src/nsContentSink.cpp", - "content/base/src/nsContentUtils.cpp", - "content/base/src/nsDocument.cpp", - "content/base/src/nsDocument.h", - "docshell/base/nsDocShell.cpp", - "dom/src/offline/Makefile.in", - "dom/src/offline/nsDOMOfflineResourceList.cpp", - "dom/src/offline/nsDOMOfflineResourceList.h", - "dom/tests/mochitest/ajax/offline/offlineTests.js", - "dom/tests/mochitest/ajax/offline/test_changingManifest.html", - "dom/tests/mochitest/ajax/offline/test_simpleManifest.html", - "netwerk/base/public/Makefile.in", - "netwerk/base/public/nsIApplicationCache.idl", - "netwerk/base/public/nsIApplicationCacheContainer.idl", - "netwerk/base/public/nsIApplicationCacheService.idl", - "netwerk/base/public/nsINetUtil.idl", - "netwerk/base/public/nsNetUtil.h", - "netwerk/base/src/nsIOService.cpp", - "netwerk/base/src/nsIOService.h", - "netwerk/build/Makefile.in", - "netwerk/build/nsNetCID.h", - "netwerk/build/nsNetModule.cpp", - "netwerk/cache/public/Makefile.in", - "netwerk/cache/public/nsICacheService.idl", - "netwerk/cache/public/nsIOfflineCacheSession.idl", - "netwerk/cache/src/nsCacheService.cpp", - "netwerk/cache/src/nsCacheService.h", - "netwerk/cache/src/nsCacheSession.cpp", - "netwerk/cache/src/nsCacheSession.h", - "netwerk/cache/src/nsDiskCacheDeviceSQL.cpp", - "netwerk/cache/src/nsDiskCacheDeviceSQL.h", - "netwerk/protocol/http/src/nsHttpChannel.cpp", - "netwerk/protocol/http/src/nsHttpChannel.h", - "uriloader/prefetch/nsIOfflineCacheUpdate.idl", - "uriloader/prefetch/nsOfflineCacheUpdate.cpp", - "uriloader/prefetch/nsOfflineCacheUpdate.h" - ], - "components": [ - "Firefox::General", - "Core::Networking", - "Core::DOM: Navigation" - ], - "directories": [ - "netwerk/base", - "browser/base", - "uriloader/prefetch", - "netwerk/protocol", - "dom/src", - "dom/tests", - "netwerk", - "docshell/base", - "netwerk/cache", - "docshell", - "browser/components", - "content/base", - "content", - "dom", - "netwerk/build", - "browser", - "uriloader" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "5e208ee3e1cc379390bf83d2acd5aa2d2d28a40c", - "author": "Dave Townsend ", - "bug_id": 449027, - "desc": "Backed out changeset 47db77d641d4 from bug 449027", - "pushdate": "2008-08-28 09:58:46", - "backsout": [ - "47db77d641d43037314e0993cf18d6e41b1548d6" - ], - "backedoutby": "", - "author_email": "dtownsend@oxymoronical.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 7427684.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/app/profile/firefox.js", - "toolkit/mozapps/extensions/src/nsBlocklistService.js", - "toolkit/mozapps/extensions/test/unit/data/test_bug449027_app.xml", - "toolkit/mozapps/extensions/test/unit/data/test_bug449027_toolkit.xml", - "toolkit/mozapps/extensions/test/unit/test_bug449027.js" - ], - "components": [ - "Firefox::General" - ], - "directories": [ - "toolkit/mozapps", - "toolkit", - "browser", - "browser/app" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "f1bb365372c6d7f74e199deea15cc6c632c5d180", - "author": "Brian Crowder ", - "bug_id": 422792, - "desc": "Backed out changeset 6b496b906af4, bug 422792", - "pushdate": "2008-08-29 20:37:43", - "backsout": [ - "6b496b906af4fedb878b3e9d5c47347d0444bae3" - ], - "backedoutby": "", - "author_email": "crowder@fiverocks.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 5086271.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "widget/src/windows/nsAppShell.cpp", - "widget/src/windows/nsBidiKeyboard.cpp", - "widget/src/windows/nsBidiKeyboard.h", - "widget/src/windows/nsClipboard.cpp", - "widget/src/windows/nsDataObj.h", - "widget/src/windows/nsFilePicker.cpp", - "widget/src/windows/nsLookAndFeel.cpp", - "widget/src/windows/nsSound.cpp", - "widget/src/windows/nsToolkit.cpp", - "widget/src/windows/nsWindow.cpp" - ], - "components": [], - "directories": [ - "widget", - "widget/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "62e63419dfb3f79ca8825b93434e34ab626a3efd", - "author": "timeless@mozdev.org", - "bug_id": 454186, - "desc": "Backed out changeset 18b48ea2b188\nto fix Bug 454186\nSM crashes when try to download file [@ nsString::ToInteger - nsTreeBodyFrame::PaintProgressMeter]", - "pushdate": "2008-09-08 13:47:42", - "backsout": [ - "18b48ea2b18863bf780186313d185f1b30bf3646" - ], - "backedoutby": "", - "author_email": "timeless@mozdev.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 14849898.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/generic/nsContainerFrame.cpp" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "layout/generic", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "4b5063537a0f9c4a6dfeafe5bffcd4db54c82d08", - "author": "timeless@mozdev.org", - "bug_id": 454186, - "desc": "Backed out changeset 54215f2cbc66\nto fix Bug 454186\nSM crashes when try to download file [@ nsString::ToInteger - nsTreeBodyFrame::PaintProgressMeter]", - "pushdate": "2008-09-08 13:47:42", - "backsout": [ - "54215f2cbc66b64699a179a76ee3d553d3104192" - ], - "backedoutby": "", - "author_email": "timeless@mozdev.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 14849898.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/base/nsImageLoader.cpp", - "layout/base/nsLayoutUtils.cpp", - "layout/base/nsPresShell.cpp", - "layout/forms/nsListControlFrame.cpp", - "layout/generic/nsBlockFrame.cpp", - "layout/generic/nsContainerFrame.cpp", - "layout/generic/nsObjectFrame.cpp", - "layout/style/nsCSSDataBlock.cpp", - "layout/svg/base/src/nsSVGOuterSVGFrame.cpp", - "layout/xul/base/src/nsBox.cpp", - "layout/xul/base/src/nsXULPopupManager.cpp", - "layout/xul/base/src/nsXULTooltipListener.cpp", - "layout/xul/base/src/tree/src/nsTreeBodyFrame.cpp" - ], - "components": [ - "Core::Layout", - "Core::Layout: Form Controls", - "Core::Layout: Block and Inline" - ], - "directories": [ - "layout/generic", - "layout/xul", - "layout/forms", - "layout/svg", - "layout/style", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "713e17a251656ca02e552f7131ae0aa3e547b384", - "author": "Daniel Holbert ", - "bug_id": 454896, - "desc": "Backed out changeset 38140c8a8327 to see if it fixes Bug 454896 (sporadic RLk)", - "pushdate": "2008-09-12 01:03:43", - "backsout": [ - "38140c8a8327cd44bffab609c00a732d7de8085b" - ], - "backedoutby": "", - "author_email": "dholbert@cs.stanford.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 10350350.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "netwerk/protocol/http/src/nsHttpConnection.cpp", - "security/manager/boot/src/nsSecureBrowserUIImpl.cpp", - "security/manager/ssl/src/nsNSSIOLayer.cpp", - "security/manager/ssl/src/nsNSSIOLayer.h", - "uriloader/base/nsDocLoader.cpp" - ], - "components": [ - "Core::DOM: Navigation" - ], - "directories": [ - "netwerk/protocol", - "netwerk", - "uriloader/base", - "security", - "security/manager", - "uriloader" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "9d9569916616f85f22b692a02041af3026eb43de", - "author": "Daniel Holbert ", - "bug_id": 451918, - "desc": "Backed out changeset 6772511dc81a (bug 451918) to see if it fixes broken linux leak stats (bug 455095)", - "pushdate": "2008-09-12 23:57:52", - "backsout": [ - "6772511dc81a32de19fcf3c71f89b9a18ad49e28" - ], - "backedoutby": "", - "author_email": "dholbert@cs.stanford.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 10432799.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/app/Makefile.in" - ], - "components": [ - "Firefox Build System::General" - ], - "directories": [ - "browser", - "browser/app" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "d793ccba25a5557255063ef27f3a3ab373cac258", - "author": "Steven Michaud ", - "bug_id": 444864, - "desc": "Backed out changeset f82532e1b6b5 due to reftest failures (b=444864,444260,449111)", - "pushdate": "2008-09-15 17:33:09", - "backsout": [ - "f82532e1b6b5d31661a0f07c1d1d28350b85dda2" - ], - "backedoutby": "", - "author_email": "smichaud@pobox.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 6913211.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "widget/src/cocoa/nsNativeThemeCocoa.mm" - ], - "components": [], - "directories": [ - "widget", - "widget/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "0879f08590a9fe2a8b207ce82135408d878310cf", - "author": "Mark Banner ", - "bug_id": 325842, - "desc": "Back out changeset 493bbc89ca54 / Bug 325842", - "pushdate": "2008-09-18 11:10:27", - "backsout": [ - "493bbc89ca54a6e6dd1d8a7b2142e51adf350d9e" - ], - "backedoutby": "", - "author_email": "bugzilla@standard8.plus.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 9251531.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/components/autocomplete/src/nsAutoCompleteController.cpp", - "toolkit/content/tests/chrome/Makefile.in", - "toolkit/content/tests/chrome/test_autocomplete3.xul" - ], - "components": [], - "directories": [ - "toolkit/components", - "toolkit/content", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "406532c41fca52eb8570b727f8e8a5a614e5e84c", - "author": "Shawn Wilsher ", - "bug_id": 455836, - "desc": "Backed out changeset b3783fc5a9c9 (bug 455836) - TREE IS CLOSED!", - "pushdate": "2008-09-18 14:54:30", - "backsout": [ - "b3783fc5a9c9a8d2a4553d895bbda08cdb4d8bc0" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 9155239.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "widget/src/qt/nsNativeThemeQt.cpp" - ], - "components": [], - "directories": [ - "widget", - "widget/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "118ab5caf67dcf39de83014ca5e95b1a8cd62bdb", - "author": "Karl Tomlinson ", - "bug_id": 455791, - "desc": "backout f51aad9e6a88 due to intermittent talos ts failures b=455791", - "pushdate": "2008-09-19 03:04:07", - "backsout": [ - "f51aad9e6a88703c2d22f8fd525ecea06c96ab34" - ], - "backedoutby": "", - "author_email": "karlt+@karlt.net", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 6393023.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "gfx/thebes/public/gfxFont.h" - ], - "components": [], - "directories": [ - "gfx/thebes", - "gfx" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "7aac9d9d651b0610c41d22707111c54271e625ff", - "author": "L. David Baron ", - "bug_id": 455403, - "desc": "Backed out changeset aab6b12f4a2b (Bug 455403) due to reftest failures from landing patches in the wrong order, and unexplained reftest hangs.", - "pushdate": "2008-09-19 23:05:30", - "backsout": [ - "aab6b12f4a2b3108f273db2b8fac226c2f0a983d" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 11074051.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "gfx/thebes/public/gfxMatrix.h", - "layout/reftests/transform/compound-1-fail.html", - "layout/reftests/transform/compound-1-ref.html", - "layout/reftests/transform/compound-1a.html", - "layout/reftests/transform/reftest.list", - "layout/reftests/transform/rotate-2a.html", - "layout/style/nsStyleTransformMatrix.cpp", - "layout/style/nsStyleTransformMatrix.h" - ], - "components": [ - "Core::Layout", - "Core::CSS Parsing and Computation" - ], - "directories": [ - "gfx/thebes", - "layout/reftests", - "layout/style", - "gfx", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "783541270c298725bcc433342ad12069551148fa", - "author": "Serge Gautherie ", - "bug_id": 452899, - "desc": "Backed out changeset fa8fbd81159d\nBug 452899 - Don't explicitly create the statement wrapper - storage does it for us; r=(dolske + sdwilsh)\nto try to fix leak", - "pushdate": "2008-09-20 17:43:00", - "backsout": [ - "fa8fbd81159d415304e12c3273f040416f4e7fd5" - ], - "backedoutby": "", - "author_email": "sgautherie.bz@free.fr", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 6297643.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/components/passwordmgr/src/storage-mozStorage.js" - ], - "components": [], - "directories": [ - "toolkit/components", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "01d095208bdfd2fb3a09b91b5055f02dae58f02a", - "author": "Markus Stange ", - "bug_id": 403174, - "desc": "Backed out changeset 84bbd1f88fac (bug 403174)", - "pushdate": "2008-09-22 08:24:43", - "backsout": [ - "84bbd1f88fac83254a04effe3f78803097c98d2c" - ], - "backedoutby": "", - "author_email": "mstange@themasta.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 7282379.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "widget/src/cocoa/nsCocoaWindow.mm" - ], - "components": [], - "directories": [ - "widget", - "widget/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "2f9f1ea54be78fe8fe754bfbc235d7a369f730cf", - "author": "Benjamin Smedberg ", - "bug_id": 453388, - "desc": "Backed out changeset e2614011f194 - Bug 453388 - the better solution is to allow static objects and link libjs.so with g++ so that _init and _fini run static constructors/destructors correctly backout r=crowder", - "pushdate": "2008-09-23 07:43:09", - "backsout": [ - "e2614011f194b8d65b4cc912356372624ef69209" - ], - "backedoutby": "", - "author_email": "benjamin@smedbergs.us", - "reviewers": [ - "crowder" - ], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 16124025.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsapi.cpp", - "js/src/jstracer.cpp", - "js/src/jstracer.h" - ], - "components": [ - "Core::JavaScript Engine" - ], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "71d860a3a3006a0ea8b2d3dedfcec3810c64928c", - "author": "Benjamin Smedberg ", - "bug_id": 453388, - "desc": "Backed out changeset fc4a8cc07c9f - bustage fix from the first patch for bug 453388 which is also being backed out", - "pushdate": "2008-09-23 07:43:09", - "backsout": [ - "fc4a8cc07c9f" - ], - "backedoutby": "", - "author_email": "benjamin@smedbergs.us", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 16124025.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsapi.cpp", - "js/src/jstracer.cpp" - ], - "components": [ - "Core::JavaScript Engine" - ], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "6e6ac7a9540d42b871819923f441fd6d057e7718", - "author": "Serge Gautherie ", - "bug_id": 455813, - "desc": "Backed out changeset 9841b5e5cf10\nBug 455813 - Windows PGO builds fail when --disable-tests is set; r=ted.mielczarek", - "pushdate": "2008-09-24 05:18:25", - "backsout": [ - "9841b5e5cf10b3c329906cd5293938143c8c19b7" - ], - "backedoutby": "", - "author_email": "sgautherie.bz@free.fr", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 6598568.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "build/Makefile.in", - "build/pgo/Makefile.in", - "build/pgo/automation.py.in", - "testing/mochitest/Makefile.in" - ], - "components": [], - "directories": [ - "testing/mochitest", - "build/pgo", - "testing", - "build" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "04a7c91e0f31b21d076ac52037ad6313dbefe0bd", - "author": "Justin Dolske ", - "bug_id": 454781, - "desc": "Backed out changeset fa432b23baa5. (Backing out bug 454781 to investigate mochitest leaks)", - "pushdate": "2008-09-25 00:19:08", - "backsout": [ - "fa432b23baa573eb0798e7507510f9cac6983739" - ], - "backedoutby": "", - "author_email": "dolske@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 8657592.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "testing/mochitest/harness-overlay.xul", - "testing/mochitest/server.js", - "testing/mochitest/tests/SimpleTest/TestRunner.js" - ], - "components": [ - "Testing::Mochitest" - ], - "directories": [ - "testing/mochitest", - "testing" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "c2efb31d59857d6d3f8458080d44dbad60f4f135", - "author": "Karl Tomlinson ", - "bug_id": 385263, - "desc": "backout 23e255271851 b=385263", - "pushdate": "2008-09-26 08:01:41", - "backsout": [ - "23e255271851120a69110eea09f9f95aa3d4040f" - ], - "backedoutby": "", - "author_email": "karlt+@karlt.net", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 7015677.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "gfx/thebes/public/gfxPangoFonts.h", - "gfx/thebes/src/gfxBeOSPlatform.cpp", - "gfx/thebes/src/gfxPangoFonts.cpp", - "gfx/thebes/src/gfxPlatformGtk.cpp" - ], - "components": [], - "directories": [ - "gfx/thebes", - "gfx" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "f523d647bc5d8392a3bc2c312820694cc0f87291", - "author": "Shawn Wilsher ", - "bug_id": 417037, - "desc": "Backed out changeset b2d48e54c537 (bug 417037)\nWe have to backout bug 449443 because we have to backout bug 456910 because of\na Tp regression, which means we need to back this out :(", - "pushdate": "2008-09-26 19:56:06", - "backsout": [ - "b2d48e54c5373f880099f13bc87a6fb2d7ec5788" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 9864535.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "db/sqlite3/src/Makefile.in" - ], - "components": [], - "directories": [ - "db/sqlite3", - "db" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "f2f0728d979fabd8d40cab94a5d653ceab06e360", - "author": "Marco Zehe ", - "bug_id": 454997, - "desc": "Backout changeset 8fe1cd2d3c66 (bug 454997) because of regressions and crashes", - "pushdate": "2008-09-28 05:53:26", - "backsout": [ - "8fe1cd2d3c6699e10d3aecd2557a0885687021dc" - ], - "backedoutby": "", - "author_email": "marco.zehe@googlemail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 9910520.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "accessible/src/base/nsAccessibilityUtils.cpp", - "accessible/src/base/nsAccessibilityUtils.h", - "accessible/src/base/nsDocAccessible.cpp", - "accessible/tests/mochitest/Makefile.in", - "accessible/tests/mochitest/common.js", - "accessible/tests/mochitest/nsIAccessible_states.js", - "accessible/tests/mochitest/test_nsIAccessible_editablebody.html" - ], - "components": [ - "Core::Disability Access APIs" - ], - "directories": [ - "accessible/src", - "accessible", - "accessible/tests" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "3db739625352ee5e378899dc583193a1c1ba0f25", - "author": "Mark Banner ", - "bug_id": 382690, - "desc": "Backed out changeset 93928936b1ab bug 382690 due to check-in during string freeze.", - "pushdate": "2008-09-28 14:56:16", - "backsout": [ - "93928936b1abfd86368b1d86fb649d7679c4bfbb" - ], - "backedoutby": "", - "author_email": "bugzilla@standard8.plus.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 10129080.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/components/viewconfig/content/config.js", - "toolkit/components/viewconfig/content/config.xul", - "toolkit/locales/en-US/chrome/global/config.dtd" - ], - "components": [], - "directories": [ - "toolkit/components", - "toolkit", - "toolkit/locales" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "996d2802d3f2762122f9cb25a4b2302d2facbb8f", - "author": "Dave Townsend ", - "bug_id": 364315, - "desc": "Backed out changeset 961d90be2ba8 from bug 364315 due to random crashes in\ntests.", - "pushdate": "2008-09-30 12:09:36", - "backsout": [ - "961d90be2ba80d1ecafb00edc027908beca1e733" - ], - "backedoutby": "", - "author_email": "dtownsend@oxymoronical.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 10286734.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/base/src/nsScriptLoader.cpp", - "content/base/src/nsScriptLoader.h", - "parser/htmlparser/src/CParserContext.cpp", - "parser/htmlparser/src/CParserContext.h", - "parser/htmlparser/src/nsParser.cpp", - "parser/htmlparser/src/nsParser.h", - "parser/htmlparser/src/nsScanner.cpp", - "parser/htmlparser/src/nsScanner.h" - ], - "components": [], - "directories": [ - "parser/htmlparser", - "content/base", - "content", - "parser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "4e7a2d27d63649d9b58a772f6f29903f2601d607", - "author": "L. David Baron ", - "bug_id": 433616, - "desc": "Backed out changeset c1f6a55626be (bug 433616, part 2) because it probably caused a Windows XP performance regression.", - "pushdate": "2008-09-30 16:53:08", - "backsout": [ - "c1f6a55626be9cf9fb4b5b35a90444c7d17f35bd" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 12002109.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/base/public/nsIDocument.h", - "content/base/src/nsContentUtils.cpp", - "content/base/src/nsDataDocumentContentPolicy.cpp", - "content/base/src/nsDocument.cpp", - "content/base/src/nsDocument.h", - "content/base/src/nsFrameLoader.cpp", - "content/svg/document/src/Makefile.in", - "content/xul/content/src/nsXULElement.cpp", - "layout/base/nsDocumentViewer.cpp", - "layout/generic/nsFrameFrame.cpp", - "layout/generic/nsObjectFrame.cpp" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "layout/generic", - "content/xul", - "content/base", - "content", - "content/svg", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "abf1f4529de2161662d54fbc398943b5d0eef15d", - "author": "Dave Camp ", - "bug_id": 426932, - "desc": "Backed out changeset 38a48d485876 (bug 426932).", - "pushdate": "2008-09-30 19:25:44", - "backsout": [ - "38a48d48587618f7a96c879afc96184593c5d9ea" - ], - "backedoutby": "", - "author_email": "dcamp@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 8355682.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/components/url-classifier/tests/unit/test_cleankeycache.js" - ], - "components": [], - "directories": [ - "toolkit/components", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "507fca9fa64116a2bf6829c6b5f5fbf9414f40da", - "author": "Dave Camp ", - "bug_id": 453723, - "desc": "Backed out changeset 74aad43f37a5 (bug 453723).", - "pushdate": "2008-09-30 19:25:44", - "backsout": [ - "74aad43f37a5370a6e19893ccb631af1c54853b5" - ], - "backedoutby": "", - "author_email": "dcamp@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 8355682.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/components/url-classifier/src/nsUrlClassifierDBService.cpp", - "toolkit/components/url-classifier/src/nsUrlClassifierDBService.h", - "toolkit/components/url-classifier/src/nsUrlClassifierUtils.h", - "toolkit/components/url-classifier/tests/unit/head_urlclassifier.js", - "toolkit/components/url-classifier/tests/unit/test_cleankeycache.js" - ], - "components": [ - "Toolkit::Safe Browsing" - ], - "directories": [ - "toolkit/components", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "2eade6ea592b184c39b36f93951cf4335de3e24e", - "author": "Dave Townsend ", - "bug_id": 457194, - "desc": "Backed out changeset a9838a973cdd from bug 457194 due to failing mochitest", - "pushdate": "2008-10-01 15:41:18", - "backsout": [ - "a9838a973cdd044ae123f2ddfbed41d6a591120b" - ], - "backedoutby": "", - "author_email": "dtownsend@oxymoronical.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 10385836.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "gfx/thebes/src/gfxAtsuiFonts.cpp" - ], - "components": [], - "directories": [ - "gfx/thebes", - "gfx" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "115934f340f058345955b0458f60fae44e4e41c8", - "author": "L. David Baron ", - "bug_id": 114649, - "desc": "Backed out changeset 6f3797124c84: Relanding: Fire resize events every 200ms during resizing, not just 200ms after resizing stops. (Bug 114649) r+sr=roc", - "pushdate": "2008-10-02 03:12:35", - "backsout": [ - "6f3797124c84db28a4845fd90767837b711f092f" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 12125676.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/base/nsPresShell.cpp", - "layout/base/tests/test_bug114649.html" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "f9dccfb26ec9faa5399d84113fcbfd572ed90393", - "author": "Boris Zbarsky ", - "bug_id": 373701, - "desc": "Backed out changeset d07aa0d0712a: Relanding: Bug 373701. Make sure to properly cancel multipart image loads when they need canceling. r=joedrew, sr=biesi", - "pushdate": "2008-10-02 13:53:43", - "backsout": [ - "d07aa0d0712a" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [ - "joedrew", - "biesi" - ], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 7400931.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "modules/libpr0n/src/imgRequest.cpp" - ], - "components": [], - "directories": [ - "modules/libpr0n", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "5df4c3d437eeaa49e2121fca1eae9cdd52d876eb", - "author": "Boris Zbarsky ", - "bug_id": 433616, - "desc": "Backed out changeset 4e7a2d27d636: relanding Bug 433616 part 2. Implement loading of external resource documents. r=jst, sr=roc", - "pushdate": "2008-10-04 20:01:17", - "backsout": [ - "4e7a2d27d63649d9b58a772f6f29903f2601d607" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [ - "roc", - "jst" - ], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 7595785.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/base/public/nsIDocument.h", - "content/base/src/nsContentUtils.cpp", - "content/base/src/nsDataDocumentContentPolicy.cpp", - "content/base/src/nsDocument.cpp", - "content/base/src/nsDocument.h", - "content/base/src/nsFrameLoader.cpp", - "content/svg/document/src/Makefile.in", - "content/xul/content/src/nsXULElement.cpp", - "layout/base/nsDocumentViewer.cpp", - "layout/generic/nsFrameFrame.cpp", - "layout/generic/nsObjectFrame.cpp" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "layout/generic", - "content/xul", - "content/base", - "content", - "content/svg", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "a8eb5fc88c015017c7eaa662a81d8631df00e382", - "author": "L. David Baron ", - "bug_id": 455311, - "desc": "Backed out changeset 6357eb31cec6 (bug 455311) for causing performance regression bug 458065.", - "pushdate": "2008-10-06 02:56:35", - "backsout": [ - "6357eb31cec64741a90e209cb55af1159fb30f25" - ], - "backedoutby": "e3b597862e2a2d0f6556f7a6a439e1b1ee487521", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 12470316.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "netwerk/base/src/nsBaseChannel.cpp", - "netwerk/base/src/nsBaseChannel.h", - "netwerk/base/src/nsInputStreamChannel.cpp", - "netwerk/base/src/nsInputStreamChannel.h", - "netwerk/protocol/data/src/nsDataChannel.cpp", - "netwerk/protocol/data/src/nsDataChannel.h", - "netwerk/protocol/file/src/nsFileChannel.cpp", - "netwerk/protocol/file/src/nsFileChannel.h", - "netwerk/protocol/file/src/nsFileProtocolHandler.cpp", - "netwerk/protocol/ftp/src/nsFTPChannel.cpp", - "netwerk/protocol/ftp/src/nsFTPChannel.h", - "netwerk/protocol/gopher/src/nsGopherChannel.cpp", - "netwerk/protocol/gopher/src/nsGopherChannel.h" - ], - "components": [], - "directories": [ - "netwerk/base", - "netwerk/protocol", - "netwerk" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "6681dc7f1293b6e328450ab0df24f73b5a96f536", - "author": "D\u00e3o Gottwald ", - "bug_id": 455990, - "desc": "Backed out changeset a8cfcc9b6d5c: relanding Bug 455990 - Close button on last open tab should be hidden. r=gavin", - "pushdate": "2008-10-06 03:45:11", - "backsout": [ - "a8cfcc9b6d5c" - ], - "backedoutby": "", - "author_email": "dao@mozilla.com", - "reviewers": [ - "gavin" - ], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 10071174.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/base/content/tabbrowser.css" - ], - "components": [ - "Firefox::Tabbed Browser" - ], - "directories": [ - "browser/base", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "e3b597862e2a2d0f6556f7a6a439e1b1ee487521", - "author": "Boris Zbarsky ", - "bug_id": 455311, - "desc": "Back out changeset a8eb5fc88c01: relanding bug 455311. Treat .url files as redirects. r+sr=biesi", - "pushdate": "2008-10-06 20:45:30", - "backsout": [ - "a8eb5fc88c015017c7eaa662a81d8631df00e382" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 7771238.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "netwerk/base/src/nsBaseChannel.cpp", - "netwerk/base/src/nsBaseChannel.h", - "netwerk/base/src/nsInputStreamChannel.cpp", - "netwerk/base/src/nsInputStreamChannel.h", - "netwerk/protocol/data/src/nsDataChannel.cpp", - "netwerk/protocol/data/src/nsDataChannel.h", - "netwerk/protocol/file/src/nsFileChannel.cpp", - "netwerk/protocol/file/src/nsFileChannel.h", - "netwerk/protocol/file/src/nsFileProtocolHandler.cpp", - "netwerk/protocol/ftp/src/nsFTPChannel.cpp", - "netwerk/protocol/ftp/src/nsFTPChannel.h", - "netwerk/protocol/gopher/src/nsGopherChannel.cpp", - "netwerk/protocol/gopher/src/nsGopherChannel.h" - ], - "components": [], - "directories": [ - "netwerk/base", - "netwerk/protocol", - "netwerk" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "cfaa8db2c177f79ebc5392db50bc0d7cdcc97b6f", - "author": "Ted Mielczarek ", - "bug_id": 365467, - "desc": "Backed out changeset 893b2c3b521f (Bug 365467 Focus controller's initial window and element can get out of sync r+sr=jst)", - "pushdate": "2008-10-08 16:44:01", - "backsout": [ - "893b2c3b521fe8fd24da4abada4efe94220b370b" - ], - "backedoutby": "", - "author_email": "ted.mielczarek@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 17452477.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/base/nsPresShell.cpp" - ], - "components": [], - "directories": [ - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "1d8c68c2989e53ab13b883ce0e2023e049b9894e", - "author": "Justin Dolske ", - "bug_id": 394611, - "desc": "Backed out changeset 2f36cde1694c (bug 394611, due to leaks)", - "pushdate": "2008-10-11 04:42:26", - "backsout": [ - "2f36cde1694c7f19488a10cbb6f15e38f3f1f02e" - ], - "backedoutby": "", - "author_email": "dolske@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 10055790.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/components/passwordmgr/src/nsLoginManager.js", - "toolkit/components/passwordmgr/src/nsLoginManagerPrompter.js", - "toolkit/components/passwordmgr/test/Makefile.in", - "toolkit/components/passwordmgr/test/notification_common.js", - "toolkit/components/passwordmgr/test/subtst_notifications_10.html", - "toolkit/components/passwordmgr/test/subtst_notifications_8.html", - "toolkit/components/passwordmgr/test/subtst_notifications_9.html", - "toolkit/components/passwordmgr/test/test_notifications.html", - "toolkit/components/passwordmgr/test/test_prompt.html" - ], - "components": [], - "directories": [ - "toolkit/components", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "d8a6df699a2635c9bf3c02a97941a0a540844200", - "author": "Markus Stange ", - "bug_id": 398928, - "desc": "Backed out changeset 151e51ec625e (bug 398928) because of unit test orange", - "pushdate": "2008-10-13 12:34:11", - "backsout": [ - "151e51ec625e910335112572d678bdc9fecd6ad8" - ], - "backedoutby": "", - "author_email": "mstange@themasta.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 9111747.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/base/content/browser.xul", - "browser/base/content/pageinfo/pageInfo.xul", - "toolkit/components/console/content/console.xul", - "toolkit/content/Makefile.in", - "toolkit/content/WindowDraggingUtils.jsm", - "toolkit/content/customizeToolbar.js", - "toolkit/content/widgets/general.xml", - "toolkit/content/widgets/preferences.xml", - "toolkit/content/widgets/toolbar.xml", - "toolkit/mozapps/downloads/content/downloads.xul", - "toolkit/mozapps/extensions/content/extensions.xul", - "toolkit/themes/pinstripe/global/global.css" - ], - "components": [], - "directories": [ - "browser/base", - "toolkit/content", - "toolkit/components", - "toolkit", - "toolkit/mozapps", - "browser", - "toolkit/themes" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "726c49f3ea91e36175a708bafe4607194eadd56b", - "author": "Brian Crowder ", - "bug_id": 411726, - "desc": "Backed out changeset 82af7163534f\n(Bug 411726 -- Time offset and zone code are set wrong for some locales, r=mrbkap)", - "pushdate": "2008-10-14 21:21:14", - "backsout": [ - "82af7163534f427dfd880c82d3582de8011d25f0" - ], - "backedoutby": "", - "author_email": "crowder@fiverocks.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 9063282.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsdate.cpp", - "js/src/prmjtime.cpp" - ], - "components": [ - "Core::JavaScript: Standard Library" - ], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "fdb6f474fc26c902aaeae57c9a2c39c37de65819", - "author": "Reed Loden ", - "bug_id": 459780, - "desc": "Backed out changeset f678aac23eae from bug 459780 because it caused the regression in bug 460643.", - "pushdate": "2008-10-20 01:26:21", - "backsout": [ - "f678aac23eaead01ecc2794fd3253ca16356a759" - ], - "backedoutby": "", - "author_email": "reed@reedloden.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 13746475.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "widget/src/gtk2/nsWindow.cpp" - ], - "components": [], - "directories": [ - "widget", - "widget/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "6db7098c04e46b24fc7731203602e19a3921c588", - "author": "Benjamin Smedberg ", - "bug_id": 461410, - "desc": "Backed out changeset affcc1c08bc0 (deCOM frame enumerator) due to regression from it or bug 461410.", - "pushdate": "2008-10-28 06:59:42", - "backsout": [ - "affcc1c08bc0659efcc34c62edf3e1424b80a7dc" - ], - "backedoutby": "", - "author_email": "benjamin@smedbergs.us", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 19145418.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/events/src/nsEventStateManager.cpp", - "layout/base/nsFrameTraversal.cpp", - "layout/base/nsFrameTraversal.h", - "layout/base/nsIFrameTraversal.h", - "layout/generic/nsFrame.cpp", - "layout/generic/nsSelection.cpp", - "toolkit/components/typeaheadfind/src/nsTypeAheadFind.cpp" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "layout/generic", - "toolkit", - "toolkit/components", - "content", - "layout", - "layout/base", - "content/events" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "b13e55f6cfda45d7fef4b6621e7681a7532edf2c", - "author": "Benjamin Smedberg ", - "bug_id": 461410, - "desc": "Backed out changeset eda9709dc586 (deCOM frame enumerator) due to regression from it or bug 461410.", - "pushdate": "2008-10-28 06:59:42", - "backsout": [ - "eda9709dc586d8eb86eb9adb131a6999f6c13119" - ], - "backedoutby": "", - "author_email": "benjamin@smedbergs.us", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 19145418.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/base/nsFrameTraversal.cpp" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "66c23339bd12aca0833a922b63d10477ea5b224b", - "author": "Benjamin Smedberg ", - "bug_id": 461212, - "desc": "Backed out changeset d4c9a0776667 (deCOM nsILineEnumerator) due to regression from it or bug 461212", - "pushdate": "2008-10-28 06:59:42", - "backsout": [ - "d4c9a0776667d05b8a1f62ec693c995ef4e327b3" - ], - "backedoutby": "", - "author_email": "benjamin@smedbergs.us", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 19145418.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "accessible/src/html/nsHyperTextAccessible.cpp", - "layout/base/nsPresShell.cpp", - "layout/generic/nsBlockFrame.cpp", - "layout/generic/nsBlockFrame.h", - "layout/generic/nsFrame.cpp", - "layout/generic/nsFrame.h", - "layout/generic/nsFrameList.cpp", - "layout/generic/nsIFrame.h", - "layout/generic/nsILineIterator.h", - "layout/generic/nsLineBox.cpp", - "layout/generic/nsLineBox.h", - "layout/tables/nsTableRowGroupFrame.cpp", - "layout/tables/nsTableRowGroupFrame.h" - ], - "components": [ - "Core::Layout", - "Core::Layout: Tables", - "Core::Layout: Block and Inline" - ], - "directories": [ - "layout/generic", - "layout/tables", - "accessible/src", - "accessible", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "0370470de0650dabd61aac4d282eb60d1b7aa014", - "author": "L. David Baron ", - "bug_id": 322475, - "desc": "Backed out changeset d7338fec7266 (from bug 322475, which made us construct all our image loaders at frame construction time) because of issues with propagation of backgrounds to the canvas (bug 460796).", - "pushdate": "2008-10-28 22:52:00", - "backsout": [ - "d7338fec726672f07714c7bfc57c765961a4d984" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 14442841.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/generic/nsFrame.cpp" - ], - "components": [], - "directories": [ - "layout/generic", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "01e2b22db875bc378c6668f160a7ef4630806295", - "author": "L. David Baron ", - "bug_id": 322475, - "desc": "Backed out changeset 7f708623bf59 (from bug 322475, which made us construct all our image loaders at frame construction time) because of issues with propagation of backgrounds to the canvas (bug 460796).", - "pushdate": "2008-10-28 22:52:00", - "backsout": [ - "7f708623bf5973c81d07f80c8e0f405fcecfd6a9" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 14442841.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/base/Makefile.in", - "layout/base/nsImageLoadNotifier.cpp", - "layout/base/nsImageLoadNotifier.h", - "layout/base/nsImageLoader.cpp", - "layout/base/nsImageLoader.h", - "layout/base/nsPresContext.cpp", - "layout/base/nsPresContext.h", - "layout/generic/nsFrame.cpp" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "layout/generic", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "80654a9e4692b8cc671683911c2e53240be3df1c", - "author": "L. David Baron ", - "bug_id": 322475, - "desc": "Backed out changeset 23eebebb8b48 (from bug 322475, which made us construct all our image loaders at frame construction time) because of issues with propagation of backgrounds to the canvas (bug 460796).", - "pushdate": "2008-10-28 22:52:00", - "backsout": [ - "23eebebb8b48ba5281f21e1da4d9873f4e9de918" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 14442841.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/events/src/nsDOMDataContainerEvent.h", - "layout/base/nsCSSRendering.cpp", - "layout/base/nsFrameManager.cpp", - "layout/base/nsImageLoader.cpp", - "layout/base/nsImageLoader.h", - "layout/base/nsPresContext.cpp", - "layout/base/nsPresContext.h", - "layout/generic/nsFrame.cpp", - "layout/generic/nsHTMLReflowState.cpp" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "layout/generic", - "content", - "layout", - "layout/base", - "content/events" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "a935c0b1617856bc62d2aa0f2d12b3e109f831d8", - "author": "Josh Aas ", - "bug_id": 456662, - "desc": "back out changeset 47259b642835, b=456662", - "pushdate": "2008-10-28 23:59:08", - "backsout": [ - "47259b6428353b03a48afcb9abd7a8690e8cb5d4" - ], - "backedoutby": "", - "author_email": "joshmoz@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 10697909.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "configure.in", - "modules/libreg/src/Makefile.in", - "modules/libreg/src/reg.c", - "modules/libreg/standalone/Makefile.in", - "xpcom/Makefile.in", - "xpcom/MoreFiles/FSCopyObject.c", - "xpcom/MoreFiles/FSCopyObject.h", - "xpcom/MoreFiles/Makefile.in", - "xpcom/MoreFiles/MoreFilesX.c", - "xpcom/MoreFiles/MoreFilesX.h", - "xpcom/MoreFiles/ReadMe.txt", - "xpcom/build/Makefile.in", - "xpcom/io/Makefile.in", - "xpcom/io/nsLocalFileOSX.h", - "xpcom/io/nsLocalFileOSX.mm", - "xpcom/obsolete/Makefile.in" - ], - "components": [], - "directories": [ - "xpcom/MoreFiles", - "xpcom/io", - "xpcom/obsolete", - "xpcom/build", - "modules/libreg", - "xpcom", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "429bfa1c5dea5601da90aba52524b302a1472ab9", - "author": "timeless@mozdev.org", - "bug_id": 454561, - "desc": "Backed out changeset b0d41235146a\nBug 454561 disable tracing when JavaScript-Debugger is enabled [ @ jsd_lock ]\nthis isn't the correct fix\nr=graydon", - "pushdate": "2008-10-31 11:54:34", - "backsout": [ - "b0d41235146aadb5a4bc0b86f61fa8e404e55dbb" - ], - "backedoutby": "", - "author_email": "timeless@mozdev.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 19422310.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "dom/src/base/nsJSEnvironment.cpp" - ], - "components": [], - "directories": [ - "dom", - "dom/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "cf6c01973a893ff010964216f3e4d75b1bd12347", - "author": "Shawn Wilsher ", - "bug_id": 462050, - "desc": "Backed out changeset 84a9e53373c7\nBackout of bug 462050. We are going to try to reland this later to get reliable\nperformance numbers.", - "pushdate": "2008-11-01 00:43:02", - "backsout": [ - "84a9e53373c72d2ee0f6fc41eecc14813376b84c" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 12905751.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/base/content/browser.js" - ], - "components": [ - "Firefox::General" - ], - "directories": [ - "browser/base", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "8b08744c500c3b7cb1929f2ab2a5b015f3b89eee", - "author": "Shawn Wilsher ", - "bug_id": 461422, - "desc": "Backed out changeset 157abfbcb96e (bug 461422) tree is closed", - "pushdate": "2008-11-03 22:30:47", - "backsout": [ - "157abfbcb96efce46c4cc7bfaae220f8a52a1509" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 13157016.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/xul/templates/src/nsXULContentBuilder.cpp" - ], - "components": [], - "directories": [ - "content/xul", - "content" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "1830e12fe251edd7afb8671795bd127bebd70004", - "author": "Dave Townsend ", - "bug_id": 462986, - "desc": "Backed out changeset fbae114d6133 from bug 462986 due to test failures", - "pushdate": "2008-11-04 12:03:56", - "backsout": [ - "fbae114d613355dd05cb1926ad6291159ed2530f" - ], - "backedoutby": "", - "author_email": "dtownsend@oxymoronical.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 13310394.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/components/sessionstore/test/browser/browser_248970_a.js" - ], - "components": [], - "directories": [ - "browser/components", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "0d823e9893ad2dc95c4e402b280c01804c543721", - "author": "Dave Townsend ", - "bug_id": 436304, - "desc": "Backed out changeset 9b96bcff860b from bug 436304 - Implement All Tabs panel\nwith previews and search.", - "pushdate": "2008-11-04 14:21:32", - "backsout": [ - "9b96bcff860b407c869735835675a5a96c5376e7" - ], - "backedoutby": "", - "author_email": "dtownsend@oxymoronical.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 13318650.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/app/profile/firefox.js", - "browser/base/content/browser-tabPreviews.js", - "browser/base/content/browser-tabPreviews.xml", - "browser/base/content/browser.css", - "browser/base/content/browser.js", - "browser/base/content/browser.xul", - "browser/base/content/tabbrowser.css", - "browser/base/content/tabbrowser.xml", - "browser/base/content/test/browser_ctrlTab.js", - "browser/base/jar.mn", - "browser/locales/en-US/chrome/browser/browser.dtd", - "browser/themes/gnomestripe/browser/browser.css", - "browser/themes/gnomestripe/browser/jar.mn", - "browser/themes/gnomestripe/browser/tabbrowser/alltabs.png", - "browser/themes/pinstripe/browser/browser.css", - "browser/themes/winstripe/browser/browser-aero.css", - "browser/themes/winstripe/browser/browser.css", - "browser/themes/winstripe/browser/jar.mn", - "browser/themes/winstripe/browser/tabbrowser/alltabs-box-overflow-end-bkgnd-hover.png", - "browser/themes/winstripe/browser/tabbrowser/alltabs-box-overflow-end-bkgnd.png", - "browser/themes/winstripe/browser/tabbrowser/alltabs-box-overflow-start-bkgnd-hover.png", - "browser/themes/winstripe/browser/tabbrowser/alltabs-box-overflow-start-bkgnd.png", - "browser/themes/winstripe/browser/tabbrowser/alltabs.png" - ], - "components": [ - "Firefox::General", - "Firefox::Tabbed Browser" - ], - "directories": [ - "browser/base", - "browser/app", - "browser/themes", - "browser/locales", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "1a2fefd12905bbc6aae0b495c005959593b11fce", - "author": "Robert O'Callahan ", - "bug_id": 460811, - "desc": "Back out changeset b83d3c8ac166 (bug 460811) to try to fix bustage", - "pushdate": "2008-11-04 23:48:43", - "backsout": [ - "b83d3c8ac166e5f92f36fa44df498e74efd41832" - ], - "backedoutby": "", - "author_email": "robert@ocallahan.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 12703332.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "dom/public/idl/base/nsIDOMNavigator.idl", - "dom/public/idl/threads/Makefile.in", - "dom/public/nsDOMClassInfoID.h", - "dom/src/base/nsDOMClassInfo.cpp", - "dom/src/base/nsDOMClassInfo.h", - "dom/src/base/nsDOMScriptObjectFactory.cpp", - "dom/src/base/nsGlobalWindow.cpp", - "dom/src/base/nsGlobalWindow.h", - "dom/src/base/nsJSEnvironment.cpp", - "dom/src/threads/Makefile.in", - "dom/src/threads/nsDOMThreadService.cpp", - "dom/src/threads/nsDOMThreadService.h", - "dom/src/threads/nsDOMWorkerPool.cpp", - "dom/src/threads/nsDOMWorkerPool.h", - "dom/src/threads/nsDOMWorkerScriptLoader.cpp", - "dom/src/threads/nsDOMWorkerScriptLoader.h", - "dom/src/threads/nsDOMWorkerTimeout.cpp", - "dom/src/threads/nsDOMWorkerTimeout.h", - "dom/src/threads/nsDOMWorkerXHR.cpp", - "dom/src/threads/nsDOMWorkerXHR.h", - "dom/src/threads/nsDOMWorkerXHRProxy.cpp", - "dom/src/threads/nsDOMWorkerXHRProxy.h", - "dom/src/threads/test/Makefile.in", - "dom/src/threads/test/importScripts_worker.js", - "dom/src/threads/test/test_importScripts.html", - "dom/src/threads/test/test_longThread.html", - "dom/src/threads/test/test_recursion.html", - "dom/src/threads/test/test_regExpStatics.html", - "dom/src/threads/test/test_simpleThread.html", - "dom/src/threads/test/test_threadErrors.html", - "dom/src/threads/test/test_threadTimeouts.html", - "dom/src/threads/test/test_xhr.html", - "js/src/xpconnect/src/xpcwrappednativescope.cpp" - ], - "components": [], - "directories": [ - "js/src", - "dom/public", - "dom/src", - "dom", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "b5cba763fe6da4cd635d05a00ac63a13e62a3371", - "author": "Robert O'Callahan ", - "bug_id": 460811, - "desc": "Back out changeset b83d3c8ac166 (bug 460811) to try to fix bustage ... re-adding removed files", - "pushdate": "2008-11-05 00:04:07", - "backsout": [ - "b83d3c8ac166e5f92f36fa44df498e74efd41832" - ], - "backedoutby": "", - "author_email": "robert@ocallahan.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 12704256.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "dom/public/idl/threads/nsIDOMThreads.idl", - "dom/src/threads/nsDOMWorkerThread.cpp", - "dom/src/threads/nsDOMWorkerThread.h" - ], - "components": [], - "directories": [ - "dom", - "dom/public", - "dom/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "5b1425e110372a469590cb5e2eeb641b321f7bc0", - "author": "Dave Townsend ", - "bug_id": 407110, - "desc": "Backed out changeset 10c21d116e5d from bug 407110 to investigate Ts\nregression.", - "pushdate": "2008-11-07 10:15:13", - "backsout": [ - "10c21d116e5dc358a9a11f38d50f79f429a87055" - ], - "backedoutby": "", - "author_email": "dtownsend@oxymoronical.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 13563071.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/components/sessionstore/src/nsSessionStore.js" - ], - "components": [], - "directories": [ - "browser/components", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "9a2cbd5d3984c5ac673cef6fcebe32b89c5ae5ef", - "author": "Dave Townsend ", - "bug_id": 462973, - "desc": "Backed out changeset 4df50933e7cb from bug 462973 to investigate Ts\nregression.", - "pushdate": "2008-11-07 10:55:58", - "backsout": [ - "4df50933e7cb75bb212cfaaf6c19a765a1b5f4d0" - ], - "backedoutby": "", - "author_email": "dtownsend@oxymoronical.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 13565516.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/components/sessionstore/src/nsSessionStore.js" - ], - "components": [], - "directories": [ - "browser/components", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "83c8769d5fd9358dad12acf73440372f4a0e9651", - "author": "Dave Townsend ", - "bug_id": 455057, - "desc": "Backed out changeset 673d1ba18849 from bug 455057 as the likely cause of the\nVista Ts regression", - "pushdate": "2008-11-07 15:21:44", - "backsout": [ - "673d1ba1884979e00447b0fe273c971a6ba5763a" - ], - "backedoutby": "", - "author_email": "dtownsend@oxymoronical.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 13581462.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/base/content/aboutRobots-icon-rtl.png", - "browser/themes/gnomestripe/browser/Search-glass-rtl.png", - "browser/themes/gnomestripe/browser/Toolbar-small.png", - "browser/themes/gnomestripe/browser/Toolbar.png", - "browser/themes/gnomestripe/browser/identity.png", - "browser/themes/gnomestripe/browser/pageInfo.png", - "browser/themes/gnomestripe/browser/preferences/Options.png", - "browser/themes/gnomestripe/browser/preview.png", - "browser/themes/gnomestripe/browser/tabbrowser/newtab.png", - "browser/themes/pinstripe/browser/tabbrowser/newtab.png", - "browser/themes/winstripe/browser/tabbrowser/newtab-aero.png", - "browser/themes/winstripe/browser/tabbrowser/newtab.png", - "layout/reftests/border-image/10x5multicolor.png", - "layout/reftests/border-image/3x3multicolor.png", - "layout/reftests/border-image/4x4multicolor.png", - "layout/reftests/box-properties/abspos-replaced-width-offset-margin-narrow.png", - "layout/reftests/box-properties/abspos-replaced-width-offset-margin-wide.png", - "layout/reftests/bugs/solidblue.png", - "layout/reftests/bugs/solidblue2.png", - "layout/reftests/bugs/square-outline-32x32.png", - "layout/reftests/generated-content/square-outline-32x32.png", - "layout/reftests/pixel-rounding/corner-bl.png", - "layout/reftests/pixel-rounding/corner-tr.png", - "layout/reftests/pixel-rounding/random-10x10.png", - "layout/reftests/table-background/repeatable-diagonal-gradient-with-ticks.png", - "modules/libpr0n/test/reftest/generic/green.png", - "testing/performance/talos/page_load_test/gfx/images/png-2x2.png", - "toolkit/themes/gnomestripe/global/console/console-toolbar.png", - "toolkit/themes/gnomestripe/global/icons/Search-glass-rtl.png", - "toolkit/themes/gnomestripe/global/icons/blacklist_large.png", - "toolkit/themes/gnomestripe/global/icons/find.png", - "toolkit/themes/gnomestripe/global/icons/folder-item.png", - "toolkit/themes/gnomestripe/mozapps/extensions/extensionIcons.png", - "toolkit/themes/gnomestripe/mozapps/extensions/themeGeneric.png", - "toolkit/themes/gnomestripe/mozapps/extensions/viewButtons.png", - "toolkit/themes/gnomestripe/mozapps/update/update.png", - "toolkit/themes/gnomestripe/mozapps/xpinstall/xpinstallItemGeneric.png", - "toolkit/themes/pinstripe/global/icons/Search-close.png", - "toolkit/themes/pinstripe/global/icons/Search-glass.png" - ], - "components": [ - "Core::Layout", - "Core::Layout: Tables" - ], - "directories": [ - "browser/base", - "toolkit", - "modules/libpr0n", - "testing/performance", - "browser/themes", - "browser", - "layout/reftests", - "toolkit/themes", - "testing", - "layout", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "05c20a65b1df77e59275266e9a70cf3109344b45", - "author": "Jason Orendorff ", - "bug_id": 458851, - "desc": "Backed out changeset d4fe79372140 (bug 458851) due to persistent orange on TraceMonkey tinderboxes.", - "pushdate": "2008-11-08 09:06:43", - "backsout": [ - "d4fe79372140ce13b145097d0c5c380b84eefb0a" - ], - "backedoutby": "", - "author_email": "jorendorff@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 14039732.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsemit.cpp", - "js/src/jsinterp.cpp", - "js/src/jsobj.cpp", - "js/src/jsopcode.cpp", - "js/src/jsopcode.h", - "js/src/jsopcode.tbl", - "js/src/jstracer.cpp", - "js/src/jstracer.h", - "js/src/jsxdrapi.h" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "0a765c5ce37d5a6e9f6a9518e3b5df6d1d187530", - "author": "timeless@mozdev.org", - "bug_id": 454561, - "desc": "Backed out changeset b0d41235146a\nBug 454561 disable tracing when JavaScript-Debugger is enabled [ @ jsd_lock ]\nthis isn't the correct fix\nr=graydon", - "pushdate": "2008-11-08 09:06:43", - "backsout": [ - "b0d41235146aadb5a4bc0b86f61fa8e404e55dbb" - ], - "backedoutby": "", - "author_email": "timeless@mozdev.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 20103439.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "dom/src/base/nsJSEnvironment.cpp" - ], - "components": [], - "directories": [ - "dom", - "dom/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "827edbbc90885ef4742de54252ced8ffbe0b82aa", - "author": "Dave Townsend ", - "bug_id": 462774, - "desc": "Backed out changeset ec9a1864d1fb from bug 462774, drop JSON.jsm due to OSX\nburning", - "pushdate": "2008-11-14 12:36:21", - "backsout": [ - "ec9a1864d1fbb4b2b4aec31f702004b7f588f8b8" - ], - "backedoutby": "", - "author_email": "dtownsend@oxymoronical.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 14176339.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/xpconnect/loader/JSON.jsm", - "js/src/xpconnect/loader/Makefile.in", - "js/src/xpconnect/tests/unit/test_json.js" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "e10a0f54b14ea85629a77bf6ec0cb7f0e671efbf", - "author": "Dave Townsend ", - "bug_id": 462878, - "desc": "Backed out changeset 72088d2498c3 from bug 462878 as it was causing\nmochitests to crash", - "pushdate": "2008-11-14 14:51:28", - "backsout": [ - "72088d2498c330f87df142efaa9780e179943d12" - ], - "backedoutby": "", - "author_email": "dtownsend@oxymoronical.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 14184446.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/media/video/public/nsOggDecoder.h", - "content/media/video/src/nsChannelReader.cpp", - "content/media/video/src/nsOggDecoder.cpp" - ], - "components": [], - "directories": [ - "content", - "content/media" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "d0c342436fa89f4d72c4ff14e98115a640f52b4e", - "author": "Daniel Holbert ", - "bug_id": 421885, - "desc": "Backed out changeset e4690fcf6f7c, due to reftest failures on linux (421885-1.xml and 403181-1.xml)", - "pushdate": "2008-11-14 21:17:30", - "backsout": [ - "e4690fcf6f7c741c62bb7793bc36afd0b81b1c9e" - ], - "backedoutby": "", - "author_email": "dholbert@cs.stanford.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 15866377.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "gfx/src/thebes/nsThebesImage.cpp" - ], - "components": [], - "directories": [ - "gfx/src", - "gfx" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "75a38b047225e75426cc7ed74b1ab2e45e5ad513", - "author": "Igor Bukanov ", - "bug_id": 453157, - "desc": "Backed out changeset 8329a91db67d - bug 453157, CLOSED TREE", - "pushdate": "2008-11-20 23:18:55", - "backsout": [ - "8329a91db67db793cd4b392318ba55ec3a4e2d77" - ], - "backedoutby": "", - "author_email": "igor@mir2.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 13398236.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "dom/src/base/nsJSEnvironment.cpp", - "dom/src/threads/nsDOMThreadService.cpp", - "js/src/js.cpp", - "js/src/jsapi.cpp", - "js/src/jsapi.h", - "js/src/jscntxt.cpp", - "js/src/jscntxt.h", - "js/src/jsinterp.cpp", - "js/src/jspubtd.h", - "js/src/jsversion.h", - "js/src/xpconnect/idl/nsIXPConnect.idl", - "js/src/xpconnect/src/nsXPConnect.cpp", - "js/src/xpconnect/src/xpccomponents.cpp", - "js/src/xpconnect/src/xpccontext.cpp", - "js/src/xpconnect/src/xpcjsruntime.cpp", - "js/src/xpconnect/src/xpcprivate.h" - ], - "components": [ - "Core::JavaScript Engine" - ], - "directories": [ - "dom", - "js", - "dom/src", - "js/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "1f6bac1d9ed0bef5a0c9af637b63c5a905004de3", - "author": "Dave Townsend ", - "bug_id": 463384, - "desc": "Backed out changeset 4b5e00c182be from bug 463384 due to it causing bug 465883", - "pushdate": "2008-11-20 23:59:44", - "backsout": [ - "4b5e00c182beb9fef71dcc710258ca76bd94a323" - ], - "backedoutby": "", - "author_email": "dtownsend@oxymoronical.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 14735742.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/base/content/browser.js", - "browser/base/content/tabbrowser.xml" - ], - "components": [ - "Firefox::General" - ], - "directories": [ - "browser/base", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "25a79f857a12b49dc3cf819331cb0457fdafa8db", - "author": "Igor Bukanov ", - "bug_id": 453157, - "desc": "Backed out changeset c54f1957d564 - bug 453157 - build system changes caused mouchi test failures. CLOSED TREE", - "pushdate": "2008-11-21 23:13:52", - "backsout": [ - "c54f1957d56426d1c6e06c51d03dac01b1f116e1" - ], - "backedoutby": "", - "author_email": "igor@mir2.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 13484333.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "build/Makefile.in", - "build/pgo/Makefile.in", - "build/pgo/automation.py.in", - "dom/src/base/nsJSEnvironment.cpp", - "dom/src/threads/nsDOMThreadService.cpp", - "js/src/js.cpp", - "js/src/jsapi.cpp", - "js/src/jsapi.h", - "js/src/jscntxt.cpp", - "js/src/jscntxt.h", - "js/src/jsinterp.cpp", - "js/src/jspubtd.h", - "js/src/jsversion.h", - "js/src/xpconnect/idl/nsIXPConnect.idl", - "js/src/xpconnect/src/nsXPConnect.cpp", - "js/src/xpconnect/src/xpccomponents.cpp", - "js/src/xpconnect/src/xpccontext.cpp", - "js/src/xpconnect/src/xpcjsruntime.cpp", - "js/src/xpconnect/src/xpcprivate.h" - ], - "components": [ - "Core::JavaScript Engine" - ], - "directories": [ - "js/src", - "dom/src", - "build", - "dom", - "js", - "build/pgo" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "51249e968f249def386436609c6f2950197e2061", - "author": "Igor Bukanov ", - "bug_id": 453157, - "desc": "Backed out changeset 700ae4e59496 - bug 453157 caused talos oranges. CLOSED TREE", - "pushdate": "2008-11-24 10:37:44", - "backsout": [ - "700ae4e594966339b34ef0467c82997293d32def" - ], - "backedoutby": "", - "author_email": "igor@mir2.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 13698165.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "build/Makefile.in", - "build/pgo/Makefile.in", - "build/pgo/automation.py.in", - "dom/src/base/nsJSEnvironment.cpp", - "dom/src/threads/nsDOMThreadService.cpp", - "js/src/js.cpp", - "js/src/jsapi.cpp", - "js/src/jsapi.h", - "js/src/jscntxt.cpp", - "js/src/jscntxt.h", - "js/src/jsinterp.cpp", - "js/src/jspubtd.h", - "js/src/jsversion.h", - "js/src/xpconnect/idl/nsIXPConnect.idl", - "js/src/xpconnect/src/nsXPConnect.cpp", - "js/src/xpconnect/src/xpccomponents.cpp", - "js/src/xpconnect/src/xpccontext.cpp", - "js/src/xpconnect/src/xpcjsruntime.cpp", - "js/src/xpconnect/src/xpcprivate.h", - "testing/mochitest/Makefile.in" - ], - "components": [ - "Core::JavaScript Engine" - ], - "directories": [ - "js/src", - "dom/src", - "build", - "testing/mochitest", - "dom", - "js", - "testing", - "build/pgo" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "21d4cb73f6fe401968c9f1f10da7ed1cb72e40db", - "author": "Shawn Wilsher ", - "bug_id": 435474, - "desc": "Backed out changeset 87f6ae0c4324 (bug 435474) for orange.", - "pushdate": "2008-11-27 21:18:19", - "backsout": [ - "87f6ae0c4324ce0d1b6133fbe6405e8d3baa6934" - ], - "backedoutby": "", - "author_email": "me@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/app/Makefile.in", - "config/Makefile.in", - "config/rules.mk", - "config/static-rules.mk", - "embedding/browser/photon/src/Makefile.in", - "embedding/componentlib/Makefile.in", - "extensions/java/xpcom/interfaces/Makefile.in", - "modules/staticmod/Makefile.in", - "toolkit/mozapps/installer/packager.mk", - "xpcom/tests/static-checker/Makefile.in", - "xulrunner/app/Makefile.in", - "xulrunner/installer/Makefile.in" - ], - "components": [ - "Firefox Build System::General", - "Firefox::Installer" - ], - "directories": [ - "embedding/browser", - "embedding", - "toolkit", - "browser/app", - "xpcom/tests", - "config", - "extensions/java", - "xulrunner/installer", - "embedding/componentlib", - "toolkit/mozapps", - "extensions", - "browser", - "xpcom", - "xulrunner/app", - "xulrunner", - "modules/staticmod", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "ec6ae3ecb8815f3e272e5acf74321173a53ee171", - "author": "Shawn Wilsher ", - "bug_id": 453865, - "desc": "Backed out changeset 17842a2d0c7f (bug 453865) due to test failures", - "pushdate": "2008-11-27 22:23:09", - "backsout": [ - "17842a2d0c7f6b7f4dea7e7eb0119e1a8363f62b" - ], - "backedoutby": "", - "author_email": "me@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 3890.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "dom/public/idl/threads/nsIDOMWorkers.idl", - "dom/src/threads/Makefile.in", - "dom/src/threads/nsDOMWorker.cpp", - "dom/src/threads/nsDOMWorker.h", - "dom/src/threads/nsDOMWorkerEvents.cpp", - "dom/src/threads/nsDOMWorkerEvents.h", - "dom/src/threads/nsDOMWorkerMacros.h", - "dom/src/threads/test/Makefile.in", - "dom/src/threads/test/json_worker.js", - "dom/src/threads/test/test_json.html", - "dom/src/threads/test/test_xhrAbort.html", - "js/src/json.cpp", - "js/src/xpconnect/public/nsAutoJSValHolder.h" - ], - "components": [], - "directories": [ - "js/src", - "dom/public", - "dom/src", - "dom", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "1b45760df6eefe25863b23b93cafc5bc73b6a559", - "author": "Shawn Wilsher ", - "bug_id": 561566, - "desc": "Backed out changeset 037f635ced9f (bug 561566)", - "pushdate": "2008-11-28 04:35:30", - "backsout": [ - "037f635ced9f8885ca36bf33edca1d436a1041b4" - ], - "backedoutby": "", - "author_email": "me@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 26231.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "dom/src/base/nsDOMClassInfo.cpp", - "dom/src/base/nsDOMClassInfo.h", - "js/src/xpconnect/idl/nsIXPConnect.idl", - "js/src/xpconnect/src/nsXPConnect.cpp", - "js/src/xpconnect/src/qsgen.py", - "js/src/xpconnect/src/xpcconvert.cpp", - "js/src/xpconnect/src/xpcjsruntime.cpp", - "js/src/xpconnect/src/xpcprivate.h", - "js/src/xpconnect/src/xpcquickstubs.cpp", - "js/src/xpconnect/src/xpcquickstubs.h", - "js/src/xpconnect/src/xpcwrappednative.cpp" - ], - "components": [], - "directories": [ - "dom", - "js", - "dom/src", - "js/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "3957258880e7d6f4a8a3c7b4aff5475666cbd3b1", - "author": "Shawn Wilsher ", - "bug_id": 457215, - "desc": "Backed out changeset 527249758771 (bug 457215) to investigate a performance regression (bug 467102)", - "pushdate": "2008-11-28 19:08:08", - "backsout": [ - "52724975877131b7607539dfd73d25c5bf7c5247" - ], - "backedoutby": "", - "author_email": "me@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 78589.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "modules/lcms/src/cmsprecache.c" - ], - "components": [], - "directories": [ - "modules/lcms", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "a6d8a0bcac507df8008225e2683664f29145f395", - "author": "Shawn Wilsher ", - "bug_id": 460629, - "desc": "Backed out changeset 0586ee185c87 (bug 460629) to investigate possible performance regression (bug 467102)", - "pushdate": "2008-11-28 19:08:08", - "backsout": [ - "0586ee185c87bf8e109d390d93ddc5df09ca7100" - ], - "backedoutby": "", - "author_email": "me@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 78589.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "gfx/thebes/src/gfxPlatform.cpp", - "modules/lcms/include/lcms.h", - "modules/lcms/src/cmsio1.c", - "modules/lcms/src/lcms.def" - ], - "components": [], - "directories": [ - "modules/lcms", - "gfx/thebes", - "gfx", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "a3f9376ede1ea7fd6c56c4cb4e6f192267a97683", - "author": "Shawn Wilsher ", - "bug_id": 460520, - "desc": "Backed out changeset 6d9d920759cb (bug 460520) to investigate a performance regression (bug 467102)", - "pushdate": "2008-11-28 19:08:08", - "backsout": [ - "6d9d920759cbb115209f7aaf908515683f209e45" - ], - "backedoutby": "", - "author_email": "me@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 78589.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "modules/lcms/src/cmsmtrx.c", - "modules/lcms/src/cmswtpnt.c" - ], - "components": [], - "directories": [ - "modules/lcms", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "de15a638ac3c89a392ecd313c3562e275e4f3f31", - "author": "Shawn Wilsher ", - "bug_id": 407725, - "desc": "Backed out changeset fdd5e4e34241 (bug 407725) to possibly fix random failures of browser/base/content/test/browser_customize.js", - "pushdate": "2008-11-28 23:22:07", - "backsout": [ - "fdd5e4e34241c888c97af7427bd8b15bf6d83446" - ], - "backedoutby": "", - "author_email": "me@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 93828.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/content/customizeToolbar.js", - "toolkit/content/widgets/toolbar.xml" - ], - "components": [], - "directories": [ - "toolkit/content", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "5d192e3eee829d162556c9ba7391222c32967154", - "author": "Shawn Wilsher ", - "bug_id": 464362, - "desc": "Backed out changeset 30adfe786ffa (bug 464362) in an attempt to fix red on tinderbox.", - "pushdate": "2008-11-29 00:15:56", - "backsout": [ - "30adfe786ffaf746040facfc35f1220f7e221415" - ], - "backedoutby": "", - "author_email": "me@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 97057.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "modules/libreg/src/Makefile.in", - "modules/libreg/src/reg.c", - "modules/libreg/standalone/Makefile.in" - ], - "components": [], - "directories": [ - "modules/libreg", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "6dc4b85cd8a70d847b884dd841cccbbea3a25277", - "author": "Shawn Wilsher ", - "bug_id": 458397, - "desc": "Backed out changeset a4495a0cf2ff (bug 458397) to investigate Txul regression (bug 467102)", - "pushdate": "2008-11-29 01:07:07", - "backsout": [ - "a4495a0cf2ffb3f358b0f149b4a11c19bf5eb426" - ], - "backedoutby": "", - "author_email": "me@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 100128.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "dom/src/base/nsDOMClassInfo.cpp", - "dom/src/base/nsDOMClassInfo.h", - "js/src/xpconnect/idl/nsIXPConnect.idl", - "js/src/xpconnect/src/nsXPConnect.cpp", - "js/src/xpconnect/src/xpcconvert.cpp", - "js/src/xpconnect/src/xpcprivate.h", - "js/src/xpconnect/src/xpcquickstubs.cpp", - "js/src/xpconnect/src/xpcwrappedjsclass.cpp" - ], - "components": [], - "directories": [ - "dom", - "js", - "dom/src", - "js/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "09ec08895dea4dfdd86671846bacc89efd1c1114", - "author": "Ted Mielczarek ", - "bug_id": 427750, - "desc": "Backed out changeset 96956634349c, bug 427750 - Require python >= 2.4 to build Mozilla (and >=2.5 on Windows). Apparently scratchbox only ships with 2.3 by default.", - "pushdate": "2008-12-02 19:17:03", - "backsout": [ - "96956634349c34be4469035052ee2dcfe6b1853b" - ], - "backedoutby": "", - "author_email": "ted.mielczarek@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 22213659.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "configure.in" - ], - "components": [], - "directories": [], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "b4b8f7a7212b6cf9a1cb5d84cc5f656d7be4970b", - "author": "Benjamin Smedberg ", - "bug_id": 466486, - "desc": "Backed out changeset f71446b6fc7e: bug 466486- directories are getting skipped, causing things like xpcshell not to be built", - "pushdate": "2008-12-02 22:18:45", - "backsout": [ - "f71446b6fc7e115a4b81d078c1d27f315c48ecdb" - ], - "backedoutby": "", - "author_email": "benjamin@smedbergs.us", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 22224561.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "config/rules.mk", - "js/src/config/rules.mk" - ], - "components": [ - "Firefox Build System::General" - ], - "directories": [ - "js/src", - "config", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "c0e30a87ce6381e10e3948f0877bd07f180e5caf", - "author": "Gavin Sharp ", - "bug_id": 455381, - "desc": "backout changeset ce8fbd7d222e from bug 455381 to fix windows unit test bustage", - "pushdate": "2008-12-03 23:51:55", - "backsout": [ - "ce8fbd7d222e0a07dc0d9d9585dfe532732830c3" - ], - "backedoutby": "", - "author_email": "gavin@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 14769262.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "xpcom/threads/nsProcessCommon.cpp" - ], - "components": [ - "Core::XPCOM" - ], - "directories": [ - "xpcom/threads", - "xpcom" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "212de1e1a1048edc5d3976b83694d0533a6c9b87", - "author": "L. David Baron ", - "bug_id": 302561, - "desc": "Backed out changeset 7b553bbed53d (bug 302561) due to chrome test crash.", - "pushdate": "2008-12-04 17:57:59", - "backsout": [ - "7b553bbed53d49d4d4dbe486818866542396a5b3" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 17622000.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/base/nsCSSFrameConstructor.cpp", - "layout/base/nsCSSFrameConstructor.h", - "layout/base/nsPresShell.cpp", - "layout/style/test/Makefile.in", - "layout/style/test/test_hover.html", - "view/public/nsIViewObserver.h", - "view/src/nsViewManager.cpp" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "view", - "view/src", - "view/public", - "layout/style", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "024fa1c26e347b5281a1cb57854f6eff6687dc90", - "author": "Daniel Holbert ", - "bug_id": 335531, - "desc": "Backed out changeset 78d662c2c878 (Bug 335531) on suspicion of causing mochitest failures in test_bug399284.html on linux & windows unittest boxes.", - "pushdate": "2008-12-05 19:53:14", - "backsout": [ - "78d662c2c8785e04d47f04a584c654830ba20993" - ], - "backedoutby": "", - "author_email": "dholbert@cs.stanford.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 17675721.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/base/public/nsContentUtils.h", - "content/base/src/nsContentUtils.cpp", - "content/base/src/nsScriptLoader.cpp", - "dom/locales/en-US/chrome/charsetTitles.properties", - "extensions/universalchardet/src/base/nsUniversalDetector.cpp", - "intl/chardet/src/nsMetaCharsetObserver.cpp", - "intl/uconv/src/charsetalias.properties", - "intl/uconv/src/nsUConvModule.cpp", - "intl/uconv/tests/unit/test_bug335531.js", - "intl/uconv/ucvlatin/nsUCvLatinCID.h", - "intl/uconv/ucvlatin/nsUTF32ToUnicode.cpp", - "intl/uconv/ucvlatin/nsUTF32ToUnicode.h", - "intl/uconv/ucvlatin/nsUnicodeToUTF32.cpp", - "intl/uconv/ucvlatin/nsUnicodeToUTF32.h", - "layout/style/nsCSSLoader.cpp", - "netwerk/streamconv/converters/nsUnknownDecoder.cpp", - "parser/htmlparser/src/nsParser.cpp", - "toolkit/locales/en-US/chrome/global/intl.properties" - ], - "components": [ - "Core::Networking", - "Firefox Build System::General" - ], - "directories": [ - "toolkit", - "netwerk", - "toolkit/locales", - "dom/locales", - "extensions/universalchardet", - "netwerk/streamconv", - "dom", - "content/base", - "content", - "extensions", - "intl", - "intl/chardet", - "parser", - "parser/htmlparser", - "layout/style", - "layout", - "intl/uconv" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "6c07d6a8cd3344d35263acd501806ce01c661c2f", - "author": "Shawn Wilsher ", - "bug_id": 466582, - "desc": "Backed out changeset b6f762fde736 (bug 466582) for unit test orange.", - "pushdate": "2008-12-08 23:53:23", - "backsout": [ - "b6f762fde736dbbfec42b91a39c3d363ffc80310" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 16185972.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "chrome/src/nsChromeProtocolHandler.cpp", - "chrome/src/nsChromeRegistry.cpp", - "chrome/test/unit/data/test_bug401153.manifest", - "chrome/test/unit/data/test_data_protocol_registration.manifest", - "chrome/test/unit/data/test_no_remote_registration.manifest", - "chrome/test/unit/test_bug401153.js", - "chrome/test/unit/test_data_protocol_registration.js", - "chrome/test/unit/test_no_remote_registration.js", - "docshell/base/nsDocShell.cpp", - "modules/libpr0n/decoders/icon/nsIconProtocolHandler.cpp", - "netwerk/base/public/nsIProtocolHandler.idl", - "netwerk/protocol/data/src/nsDataHandler.cpp", - "netwerk/protocol/file/src/nsFileProtocolHandler.cpp", - "netwerk/protocol/res/src/nsResProtocolHandler.cpp", - "toolkit/components/places/src/nsAnnoProtocolHandler.cpp" - ], - "components": [ - "Core::DOM: Navigation", - "Toolkit::Startup and Profile System" - ], - "directories": [ - "modules", - "netwerk/base", - "netwerk/protocol", - "toolkit", - "modules/libpr0n", - "netwerk", - "toolkit/components", - "docshell/base", - "docshell", - "chrome/src", - "chrome/test", - "chrome" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "5af0a48a20d48baf754d6b71831334134effc6aa", - "author": "Shawn Wilsher ", - "bug_id": 432938, - "desc": "Backed out changeset 3744204c1576 (bug 432938) due to orange", - "pushdate": "2008-12-08 23:53:23", - "backsout": [ - "3744204c15769a48972e8376324afc78faf4ebfc" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 16185972.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/themes/gnomestripe/browser/jar.mn" - ], - "components": [], - "directories": [ - "browser/themes", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "3ce0936aef4054e10469b2af018aa2779f25de57", - "author": "L. David Baron ", - "bug_id": 466104, - "desc": "Backed out changeset 957a4fed14af (bug 466104) due to leaks", - "pushdate": "2008-12-09 07:13:47", - "backsout": [ - "957a4fed14af1edfccedb05131ac3385f0d84881" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 18015348.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "testing/mochitest/tests/SimpleTest/SimpleTest.js", - "testing/mochitest/tests/SimpleTest/TestRunner.js" - ], - "components": [ - "Testing::Mochitest" - ], - "directories": [ - "testing/mochitest", - "testing" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "57c92d052aca6c275b7a08ed52cf7a084d664526", - "author": "Shawn Wilsher ", - "bug_id": 463887, - "desc": "Backed out changeset 00563815af18 (bug 463887) because it caused orange.", - "pushdate": "2008-12-12 01:27:07", - "backsout": [ - "00563815af185abbb0c0191666d07415697b11da" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 16450796.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "configure.in" - ], - "components": [], - "directories": [], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "c39b5108ca5184cafb529908608991022e2c63ae", - "author": "L. David Baron ", - "bug_id": 468824, - "desc": "Backed out changeset 12f97a5bc3b6 (bug 468824) for causing failed unit test because of differences between config/system-headers and js/src/config/system-headers", - "pushdate": "2008-12-12 02:21:01", - "backsout": [ - "12f97a5bc3b6158d56ccae8d60cc81eae909c4f9" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 18256982.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "config/system-headers" - ], - "components": [], - "directories": [ - "config" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "3cbb1961f1f7047554228cbae0629112ffeaf5f5", - "author": "Benjamin Smedberg ", - "bug_id": 460926, - "desc": "Backed out changeset 71c3a9d14712 - Bug 460926 - due to crash regression, bug 468845", - "pushdate": "2008-12-15 14:21:49", - "backsout": [ - "71c3a9d147120c5abe9dceb6aaa39991cdfce6d4" - ], - "backedoutby": "", - "author_email": "benjamin@smedbergs.us", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 23319145.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/xre/nsAppRunner.cpp" - ], - "components": [ - "Toolkit::Startup and Profile System" - ], - "directories": [ - "toolkit", - "toolkit/xre" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "44ef5053568e07019c19149684eae85c1b8a64e4", - "author": "Joe Drew ", - "bug_id": 469809, - "desc": "Backed out changeset 0c0bf7bd8e7b for bug 469809", - "pushdate": "2008-12-16 19:54:02", - "backsout": [ - "0c0bf7bd8e7bebe4807bddb81c311d0a120db087" - ], - "backedoutby": "", - "author_email": "joe@drew.ca", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 10323370.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "widget/src/gtk2/nsWindow.cpp" - ], - "components": [], - "directories": [ - "widget", - "widget/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "eceb4663cfd926c4541e094756c1c0bc29500401", - "author": "Justin Dolske ", - "bug_id": 463806, - "desc": "Backed out changeset 98ea743c9156 (Bug 463806) due to crashes on OS X 10.4 talos boxes.", - "pushdate": "2008-12-17 21:03:07", - "backsout": [ - "98ea743c9156328763a87df55ce5f82e786df338" - ], - "backedoutby": "", - "author_email": "dolske@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 15903431.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "gfx/thebes/src/gfxQuartzFontCache.h", - "gfx/thebes/src/gfxQuartzFontCache.mm" - ], - "components": [], - "directories": [ - "gfx/thebes", - "gfx" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "e0740bbd7f753add0a5973e031f7388c2c87a2a1", - "author": "L. David Baron ", - "bug_id": 470769, - "desc": "Backed out changeset 441f119f1a0c (Bug 470769) due to failures in layout/style/test/test_bug365932.html", - "pushdate": "2008-12-23 16:12:28", - "backsout": [ - "441f119f1a0c0ded15ad4c4e9b563befd64497cc" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 19257269.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/style/nsComputedDOMStyle.cpp", - "layout/style/nsROCSSPrimitiveValue.cpp", - "layout/style/nsROCSSPrimitiveValue.h", - "layout/style/test/Makefile.in", - "layout/style/test/test_bug373875.html" - ], - "components": [ - "Core::DOM: CSS Object Model" - ], - "directories": [ - "layout/style", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "f506b00d99f4bfcd16df58ff86c0e435ae3bbcc0", - "author": "Igor Bukanov ", - "bug_id": 453157, - "desc": "Backed out changeset 7184e014cd05 - the patch for bug 453157 bursted tgfx test on Windows.", - "pushdate": "2008-12-26 01:26:36", - "backsout": [ - "7184e014cd05187008c3c579b66e79799e423710" - ], - "backedoutby": "", - "author_email": "igor@mir2.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 16429897.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "build/Makefile.in", - "build/pgo/Makefile.in", - "build/pgo/automation.py.in", - "dom/src/base/nsJSEnvironment.cpp", - "dom/src/threads/nsDOMThreadService.cpp", - "js/src/js.cpp", - "js/src/jsapi.cpp", - "js/src/jsapi.h", - "js/src/jscntxt.cpp", - "js/src/jscntxt.h", - "js/src/jsinterp.cpp", - "js/src/jspubtd.h", - "js/src/jsversion.h", - "js/src/xpconnect/idl/nsIXPConnect.idl", - "js/src/xpconnect/src/nsXPConnect.cpp", - "js/src/xpconnect/src/xpccomponents.cpp", - "js/src/xpconnect/src/xpccontext.cpp", - "js/src/xpconnect/src/xpcjsruntime.cpp", - "js/src/xpconnect/src/xpcprivate.h", - "testing/mochitest/Makefile.in" - ], - "components": [ - "Core::JavaScript Engine" - ], - "directories": [ - "js/src", - "dom/src", - "build", - "testing/mochitest", - "dom", - "js", - "testing", - "build/pgo" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "0928c4fc27901f10216e5ac2509530bea0c62c3b", - "author": "Phil Ringnalda ", - "bug_id": 467862, - "desc": "Backed out changeset 73be1c836d7f (bug 467862) to see if that fixes Windows bustage (bug 471097)", - "pushdate": "2008-12-26 03:30:08", - "backsout": [ - "73be1c836d7f066f200ad4565d74bbc9354d2689" - ], - "backedoutby": "", - "author_email": "philringnalda@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 16769818.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "config/config.mk", - "config/rules.mk", - "js/src/config/config.mk", - "js/src/config/rules.mk" - ], - "components": [ - "Firefox Build System::General" - ], - "directories": [ - "js/src", - "config", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "bac73f9f2d2b28630201fe2a2511b3a5bce0f68e", - "author": "Phil Ringnalda ", - "bug_id": 462004, - "desc": "Backed out changeset 55e23c647137 (bug 462004) so the backout for bug 467862 to solve bug 471097 can actually build", - "pushdate": "2008-12-26 03:52:55", - "backsout": [ - "55e23c6471379101a0e8a8e1f1f0e0b39b26c711" - ], - "backedoutby": "", - "author_email": "philringnalda@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 16771185.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "config/autoconf.mk.in", - "configure.in", - "js/src/Makefile.in", - "js/src/config/autoconf.mk.in", - "js/src/configure.in", - "js/src/editline/Makefile.in", - "js/src/js.cpp", - "js/src/shell/Makefile.in", - "js/src/shell/js.cpp" - ], - "components": [ - "Firefox Build System::General", - "Core::JavaScript Engine" - ], - "directories": [ - "js/src", - "config", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "de8572d5add0ea788427cc233df093a3e893d76d", - "author": "Phil Ringnalda ", - "bug_id": 466224, - "desc": "Backed out changeset e0cce6a738c9 (Bug 466224 - Make quickstubs call nsINode/nsINodeList methods) for failing mochitest", - "pushdate": "2009-01-01 02:43:25", - "backsout": [ - "e0cce6a738c9e2e69f5e4fc8a0bff2f0d71f2e91" - ], - "backedoutby": "", - "author_email": "philringnalda@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 17285415.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/base/public/nsIDocument.h", - "content/base/public/nsINode.h", - "content/base/public/nsINodeList.h", - "content/base/src/nsDOMAttribute.cpp", - "content/base/src/nsDocument.cpp", - "content/base/src/nsGenericDOMDataNode.cpp", - "content/base/src/nsGenericDOMDataNode.h", - "content/base/src/nsGenericElement.cpp", - "content/base/src/nsGenericElement.h", - "js/src/xpconnect/src/Makefile.in", - "js/src/xpconnect/src/dom_quickstubs.qsconf", - "js/src/xpconnect/src/nsXPConnect.cpp", - "js/src/xpconnect/src/qsgen.py", - "js/src/xpconnect/src/xpcconvert.cpp", - "js/src/xpconnect/src/xpcprivate.h", - "js/src/xpconnect/src/xpcquickstubs.cpp", - "js/src/xpconnect/src/xpcquickstubs.h", - "js/src/xpconnect/src/xpcwrappedjsclass.cpp" - ], - "components": [], - "directories": [ - "js", - "content/base", - "content", - "js/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "4a377a57eb8ef906c2381bc07212154f5323a402", - "author": "Dave Camp ", - "bug_id": 441359, - "desc": "Backed out changeset e31d0d3c28fd (bug 441359)", - "pushdate": "2009-01-05 09:29:44", - "backsout": [ - "e31d0d3c28fd85fd96ae7194d13ec437927cf30a" - ], - "backedoutby": "", - "author_email": "dcamp@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 16700722.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "build/pgo/server-locations.txt", - "content/base/src/nsObjectLoadingContent.cpp", - "content/base/src/nsScriptLoader.cpp", - "docshell/base/nsDocShell.cpp", - "docshell/base/nsDocShell.h", - "docshell/base/nsIChannelClassifier.idl", - "layout/style/nsCSSLoader.cpp", - "toolkit/components/url-classifier/tests/Makefile.in", - "toolkit/components/url-classifier/tests/mochitest/Makefile.in", - "toolkit/components/url-classifier/tests/mochitest/classifierFrame.html", - "toolkit/components/url-classifier/tests/mochitest/evil.css", - "toolkit/components/url-classifier/tests/mochitest/evil.js", - "toolkit/components/url-classifier/tests/mochitest/import.css", - "toolkit/components/url-classifier/tests/mochitest/test_classifier.html" - ], - "components": [ - "Toolkit::Safe Browsing", - "Firefox Build System::General", - "Core::DOM: Navigation" - ], - "directories": [ - "toolkit", - "toolkit/components", - "docshell/base", - "docshell", - "build", - "content/base", - "content", - "layout/style", - "build/pgo", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "e3bab6e6bfc24812be67c4952811ffcd341f37a1", - "author": "Boris Zbarsky ", - "bug_id": 437366, - "desc": "Backed out changeset f87b46d44d22 (bug 437366)", - "pushdate": "2009-01-05 22:05:44", - "backsout": [ - "f87b46d44d22cfac0a7a075837827323b341aee6" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 15638452.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/style/nsCSSDataBlock.cpp" - ], - "components": [], - "directories": [ - "layout/style", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "0f85bea9dea38a4923d328f57b6ab00d5d751669", - "author": "Andreas Gal ", - "bug_id": 453157, - "desc": "Backed out changeset adbe8e4b21dc due to tinderbox failures/timeouts (453157).", - "pushdate": "2009-01-08 04:49:11", - "backsout": [ - "adbe8e4b21dcd4dd78d505bf1026d2b02984f636" - ], - "backedoutby": "", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 16390673.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "build/Makefile.in", - "build/pgo/Makefile.in", - "build/pgo/automation.py.in", - "dom/src/base/nsJSEnvironment.cpp", - "dom/src/threads/nsDOMThreadService.cpp", - "js/src/js.cpp", - "js/src/jsapi.cpp", - "js/src/jsapi.h", - "js/src/jscntxt.cpp", - "js/src/jscntxt.h", - "js/src/jsinterp.cpp", - "js/src/jspubtd.h", - "js/src/jsversion.h", - "js/src/xpconnect/idl/nsIXPConnect.idl", - "js/src/xpconnect/src/nsXPConnect.cpp", - "js/src/xpconnect/src/xpccomponents.cpp", - "js/src/xpconnect/src/xpccontext.cpp", - "js/src/xpconnect/src/xpcjsruntime.cpp", - "js/src/xpconnect/src/xpcprivate.h", - "testing/mochitest/Makefile.in" - ], - "components": [ - "Core::JavaScript Engine" - ], - "directories": [ - "js/src", - "dom/src", - "build", - "testing/mochitest", - "dom", - "js", - "testing", - "build/pgo" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "d77eef73aeb6917ae4edb654a15fbdf8c9321bc8", - "author": "Boris Zbarsky ", - "bug_id": 464838, - "desc": "Backed out changeset b73e063a3f99 (bug 464838)", - "pushdate": "2009-01-08 19:59:07", - "backsout": [ - "b73e063a3f99066828df567b3f73308a6965f837" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 15890055.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/html/content/src/nsHTMLAnchorElement.cpp", - "content/html/content/src/nsHTMLDNSPrefetch.cpp", - "content/html/content/src/nsHTMLDNSPrefetch.h" - ], - "components": [], - "directories": [ - "content/html", - "content" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "48b1dea326bb61ab862b363b4223404e242b2e88", - "author": "Dave Townsend ", - "bug_id": 469613, - "desc": "Backed out changeset fe759e3fd895 from bug 469613 due to mochitest failures", - "pushdate": "2009-01-09 13:47:34", - "backsout": [ - "fe759e3fd8950cc6c3525b435ef1a389fffc9047" - ], - "backedoutby": "", - "author_email": "dtownsend@oxymoronical.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 19019012.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/generic/test/Makefile.in", - "layout/generic/test/test_bug469613.xul", - "view/src/nsScrollPortView.cpp" - ], - "components": [], - "directories": [ - "view", - "layout/generic", - "view/src", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "864061941ee1bd4ae34deec261b8440e4a3a720d", - "author": "Benjamin Smedberg ", - "bug_id": 396185, - "desc": "Backed out changeset 4c4df6ed1b41 - Bug 396185 - Make nsIFrame not inherit from nsISupports due to mochitest failures... these appear to be crashes in nsGenericHTMLElement::GetEditorInternal.", - "pushdate": "2009-01-09 16:36:02", - "backsout": [ - "4c4df6ed1b41131568d4659d62908214e8c81b7b" - ], - "backedoutby": "", - "author_email": "benjamin@smedbergs.us", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 25487198.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "accessible/public/nsIAccessibilityService.idl", - "accessible/src/base/nsAccessibilityService.cpp", - "accessible/src/base/nsAccessibilityService.h", - "accessible/src/base/nsAccessible.cpp", - "accessible/src/base/nsCoreUtils.cpp", - "accessible/src/base/nsRootAccessible.cpp", - "accessible/src/html/nsHTMLAreaAccessible.cpp", - "accessible/src/html/nsHTMLFormControlAccessible.cpp", - "accessible/src/html/nsHTMLSelectAccessible.cpp", - "accessible/src/html/nsHTMLTableAccessible.cpp", - "accessible/src/html/nsHyperTextAccessible.cpp", - "accessible/src/msaa/nsAccessibleWrap.cpp", - "content/base/src/nsFrameLoader.cpp", - "content/base/src/nsGenericElement.cpp", - "content/base/src/nsObjectLoadingContent.cpp", - "content/events/src/nsEventStateManager.cpp", - "content/html/content/src/nsGenericHTMLElement.cpp", - "content/html/content/src/nsHTMLButtonElement.cpp", - "content/html/content/src/nsHTMLInputElement.cpp", - "content/html/content/src/nsHTMLObjectElement.cpp", - "content/html/content/src/nsHTMLSelectElement.cpp", - "content/html/content/src/nsHTMLTextAreaElement.cpp", - "content/html/document/src/nsPluginDocument.cpp", - "content/svg/content/src/nsISVGTextContentMetrics.h", - "content/svg/content/src/nsISVGValue.h", - "content/svg/content/src/nsSVGGraphicElement.cpp", - "content/svg/content/src/nsSVGPatternElement.cpp", - "content/svg/content/src/nsSVGSVGElement.cpp", - "content/svg/content/src/nsSVGSwitchElement.cpp", - "content/svg/content/src/nsSVGTSpanElement.cpp", - "content/svg/content/src/nsSVGTextElement.cpp", - "content/svg/content/src/nsSVGTextPathElement.cpp", - "content/svg/content/src/nsSVGTextPathElement.h", - "docshell/base/nsDocShell.cpp", - "editor/libeditor/html/nsTableEditor.cpp", - "embedding/components/find/src/nsFind.cpp", - "embedding/components/find/src/nsWebBrowserFind.cpp", - "layout/base/nsBidiPresUtils.cpp", - "layout/base/nsCSSFrameConstructor.cpp", - "layout/base/nsCSSRendering.cpp", - "layout/base/nsCaret.cpp", - "layout/base/nsDocumentViewer.cpp", - "layout/base/nsFrameManager.cpp", - "layout/base/nsIPercentHeightObserver.h", - "layout/base/nsLayoutDebugger.cpp", - "layout/base/nsLayoutUtils.cpp", - "layout/base/nsPresShell.cpp", - "layout/forms/nsComboboxControlFrame.cpp", - "layout/forms/nsComboboxControlFrame.h", - "layout/forms/nsFileControlFrame.cpp", - "layout/forms/nsFileControlFrame.h", - "layout/forms/nsFormControlFrame.cpp", - "layout/forms/nsFormControlFrame.h", - "layout/forms/nsGfxButtonControlFrame.cpp", - "layout/forms/nsGfxButtonControlFrame.h", - "layout/forms/nsGfxCheckboxControlFrame.cpp", - "layout/forms/nsGfxCheckboxControlFrame.h", - "layout/forms/nsGfxRadioControlFrame.cpp", - "layout/forms/nsGfxRadioControlFrame.h", - "layout/forms/nsHTMLButtonControlFrame.cpp", - "layout/forms/nsHTMLButtonControlFrame.h", - "layout/forms/nsICheckboxControlFrame.h", - "layout/forms/nsIComboboxControlFrame.h", - "layout/forms/nsIFormControlFrame.h", - "layout/forms/nsIListControlFrame.h", - "layout/forms/nsIRadioControlFrame.h", - "layout/forms/nsISelectControlFrame.h", - "layout/forms/nsImageControlFrame.cpp", - "layout/forms/nsIsIndexFrame.cpp", - "layout/forms/nsIsIndexFrame.h", - "layout/forms/nsLegendFrame.cpp", - "layout/forms/nsLegendFrame.h", - "layout/forms/nsListControlFrame.cpp", - "layout/forms/nsListControlFrame.h", - "layout/forms/nsTextControlFrame.cpp", - "layout/forms/nsTextControlFrame.h", - "layout/generic/Makefile.in", - "layout/generic/nsAbsoluteContainingBlock.cpp", - "layout/generic/nsBRFrame.cpp", - "layout/generic/nsBlockFrame.cpp", - "layout/generic/nsBlockFrame.h", - "layout/generic/nsContainerFrame.cpp", - "layout/generic/nsFloatManager.cpp", - "layout/generic/nsFrame.cpp", - "layout/generic/nsFrame.h", - "layout/generic/nsFrameFrame.cpp", - "layout/generic/nsFrameList.cpp", - "layout/generic/nsFrameSetFrame.cpp", - "layout/generic/nsFrameSetFrame.h", - "layout/generic/nsGfxScrollFrame.cpp", - "layout/generic/nsGfxScrollFrame.h", - "layout/generic/nsHTMLFrame.cpp", - "layout/generic/nsIAnonymousContentCreator.h", - "layout/generic/nsICanvasFrame.h", - "layout/generic/nsIFrame.h", - "layout/generic/nsIFrameDebug.h", - "layout/generic/nsIFrameFrame.h", - "layout/generic/nsIImageFrame.h", - "layout/generic/nsIObjectFrame.h", - "layout/generic/nsIPageSequenceFrame.h", - "layout/generic/nsIScrollableFrame.h", - "layout/generic/nsIScrollableViewProvider.h", - "layout/generic/nsIStatefulFrame.h", - "layout/generic/nsImageFrame.cpp", - "layout/generic/nsImageFrame.h", - "layout/generic/nsInlineFrame.cpp", - "layout/generic/nsInlineFrame.h", - "layout/generic/nsLineBox.cpp", - "layout/generic/nsObjectFrame.cpp", - "layout/generic/nsObjectFrame.h", - "layout/generic/nsQueryFrame.h", - "layout/generic/nsSelection.cpp", - "layout/generic/nsSimplePageSequence.cpp", - "layout/generic/nsSimplePageSequence.h", - "layout/generic/nsVideoFrame.cpp", - "layout/generic/nsVideoFrame.h", - "layout/generic/nsViewportFrame.cpp", - "layout/mathml/base/src/nsIMathMLFrame.h", - "layout/mathml/base/src/nsMathMLContainerFrame.cpp", - "layout/mathml/base/src/nsMathMLContainerFrame.h", - "layout/mathml/base/src/nsMathMLForeignFrameWrapper.cpp", - "layout/mathml/base/src/nsMathMLForeignFrameWrapper.h", - "layout/mathml/base/src/nsMathMLFrame.cpp", - "layout/mathml/base/src/nsMathMLFrame.h", - "layout/mathml/base/src/nsMathMLmactionFrame.cpp", - "layout/mathml/base/src/nsMathMLmfencedFrame.cpp", - "layout/mathml/base/src/nsMathMLmtableFrame.cpp", - "layout/mathml/base/src/nsMathMLmtableFrame.h", - "layout/printing/nsPrintEngine.cpp", - "layout/style/nsComputedDOMStyle.cpp", - "layout/style/nsICSSPseudoComparator.h", - "layout/svg/base/src/nsISVGChildFrame.h", - "layout/svg/base/src/nsISVGGlyphFragmentLeaf.h", - "layout/svg/base/src/nsISVGGlyphFragmentNode.h", - "layout/svg/base/src/nsISVGSVGFrame.h", - "layout/svg/base/src/nsSVGClipPathFrame.cpp", - "layout/svg/base/src/nsSVGContainerFrame.cpp", - "layout/svg/base/src/nsSVGContainerFrame.h", - "layout/svg/base/src/nsSVGFilterFrame.cpp", - "layout/svg/base/src/nsSVGForeignObjectFrame.cpp", - "layout/svg/base/src/nsSVGForeignObjectFrame.h", - "layout/svg/base/src/nsSVGGlyphFrame.cpp", - "layout/svg/base/src/nsSVGGlyphFrame.h", - "layout/svg/base/src/nsSVGInnerSVGFrame.cpp", - "layout/svg/base/src/nsSVGIntegrationUtils.cpp", - "layout/svg/base/src/nsSVGMarkerFrame.cpp", - "layout/svg/base/src/nsSVGOuterSVGFrame.cpp", - "layout/svg/base/src/nsSVGOuterSVGFrame.h", - "layout/svg/base/src/nsSVGPathGeometryFrame.cpp", - "layout/svg/base/src/nsSVGPathGeometryFrame.h", - "layout/svg/base/src/nsSVGPatternFrame.cpp", - "layout/svg/base/src/nsSVGSwitchFrame.cpp", - "layout/svg/base/src/nsSVGTSpanFrame.cpp", - "layout/svg/base/src/nsSVGTSpanFrame.h", - "layout/svg/base/src/nsSVGTextContainerFrame.cpp", - "layout/svg/base/src/nsSVGTextContainerFrame.h", - "layout/svg/base/src/nsSVGUseFrame.cpp", - "layout/svg/base/src/nsSVGUtils.cpp", - "layout/tables/nsITableCellLayout.h", - "layout/tables/nsITableLayout.h", - "layout/tables/nsTableCellFrame.cpp", - "layout/tables/nsTableCellFrame.h", - "layout/tables/nsTableFrame.cpp", - "layout/tables/nsTableFrame.h", - "layout/tables/nsTableOuterFrame.cpp", - "layout/tables/nsTableOuterFrame.h", - "layout/tables/nsTableRowGroupFrame.cpp", - "layout/tables/nsTableRowGroupFrame.h", - "layout/xul/base/public/nsIMenuFrame.h", - "layout/xul/base/public/nsIScrollbarMediator.h", - "layout/xul/base/src/grid/nsGrid.cpp", - "layout/xul/base/src/grid/nsGridRowLeafLayout.cpp", - "layout/xul/base/src/nsBoxObject.cpp", - "layout/xul/base/src/nsContainerBoxObject.cpp", - "layout/xul/base/src/nsDocElementBoxFrame.cpp", - "layout/xul/base/src/nsIRootBox.h", - "layout/xul/base/src/nsIScrollbarFrame.h", - "layout/xul/base/src/nsListBoxBodyFrame.cpp", - "layout/xul/base/src/nsListBoxBodyFrame.h", - "layout/xul/base/src/nsListBoxObject.cpp", - "layout/xul/base/src/nsListItemFrame.cpp", - "layout/xul/base/src/nsListItemFrame.h", - "layout/xul/base/src/nsMenuFrame.cpp", - "layout/xul/base/src/nsMenuFrame.h", - "layout/xul/base/src/nsMenuPopupFrame.cpp", - "layout/xul/base/src/nsPopupSetFrame.cpp", - "layout/xul/base/src/nsRootBoxFrame.cpp", - "layout/xul/base/src/nsScrollBoxObject.cpp", - "layout/xul/base/src/nsScrollbarButtonFrame.cpp", - "layout/xul/base/src/nsScrollbarFrame.cpp", - "layout/xul/base/src/nsScrollbarFrame.h", - "layout/xul/base/src/nsSliderFrame.cpp", - "layout/xul/base/src/nsSplitterFrame.cpp", - "layout/xul/base/src/nsSplitterFrame.h", - "layout/xul/base/src/tree/src/nsTreeBodyFrame.cpp", - "layout/xul/base/src/tree/src/nsTreeBodyFrame.h", - "layout/xul/base/src/tree/src/nsTreeBoxObject.cpp", - "layout/xul/base/src/tree/src/nsTreeColFrame.cpp", - "layout/xul/base/src/tree/src/nsTreeColFrame.h", - "widget/src/gtk2/nsNativeThemeGTK.cpp", - "widget/src/windows/nsNativeThemeWin.cpp" - ], - "components": [ - "Core::DOM: Navigation", - "Core::Layout: Block and Inline", - "Core::DOM: CSS Object Model", - "Core::Audio/Video", - "Core::Layout: Form Controls", - "Core::Layout: Images, Video, and HTML Frames", - "Core::Layout", - "Core::Layout: Tables", - "Core::Layout: Scrolling and Overflow", - "Core::Layout: Text and Fonts", - "Core::Layout: Positioned", - "Core::Layout: Floats" - ], - "directories": [ - "accessible/src", - "accessible", - "docshell/base", - "layout/mathml", - "editor", - "content/base", - "content", - "content/html", - "embedding/components", - "layout/generic", - "accessible/public", - "layout/style", - "layout", - "layout/xul", - "docshell", - "layout/forms", - "layout/base", - "widget", - "editor/libeditor", - "layout/tables", - "embedding", - "layout/printing", - "layout/svg", - "content/svg", - "widget/src", - "content/events" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "a7489d8375cf34005f915e5bc93f997ae239ed11", - "author": "Shawn Wilsher ", - "bug_id": 471685, - "desc": "Backed out changeset 4de172f0d8b8 (bug 471685) with a CLOSED TREE", - "pushdate": "2009-01-09 21:19:50", - "backsout": [ - "4de172f0d8b8018f9a73494979798d6c7fd0f566" - ], - "backedoutby": "", - "author_email": "me@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 3715291.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "db/sqlite3/src/sqlite3.c", - "db/sqlite3/src/sqlite3.h" - ], - "components": [], - "directories": [ - "db/sqlite3", - "db" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "f8a05a8b28eb977cf4a1a2e032e06489fead4d26", - "author": "Shawn Wilsher ", - "bug_id": 471685, - "desc": "Backed out changeset c569a8f91c0e (bug 471685) with a CLOSED TREE", - "pushdate": "2009-01-09 21:19:50", - "backsout": [ - "c569a8f91c0ee93e0a1976903b9f7b17070d441e" - ], - "backedoutby": "", - "author_email": "me@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 3715291.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "configure.in", - "db/sqlite3/README.MOZILLA" - ], - "components": [], - "directories": [ - "db/sqlite3", - "db" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "e1da61348ddaee37776ea497c30e517b718caa6b", - "author": "Benjamin Smedberg ", - "bug_id": 469558, - "desc": "Backed out changeset 8f347bf50a53 due to x86-64 build bustage, and the fact that the committed patch didn't match the reviewed patch in an important way (bug 469558)", - "pushdate": "2009-01-13 15:22:11", - "backsout": [ - "8f347bf50a53e16f8aa8e08f14ee92b10cff749f" - ], - "backedoutby": "", - "author_email": "benjamin@smedbergs.us", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 25828367.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "config/Makefile.in", - "config/autoconf.mk.in", - "config/system-headers", - "configure.in", - "js/src/config/system-headers", - "toolkit/toolkit-makefiles.sh", - "toolkit/toolkit-tiers.mk" - ], - "components": [ - "Firefox Build System::General" - ], - "directories": [ - "js/src", - "config", - "js", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "c573ff777cc4311b0b57bb909fd1eeac274e9e5f", - "author": "Peter Van der Beken ", - "bug_id": 471126, - "desc": "Back out changeset 9fd8740decb8 (Fix for bug 471126 (leak content nodes (and sometimes dom windows) after clicking on nytimes.com articles).) to try to fix orange.", - "pushdate": "2009-01-14 14:13:59", - "backsout": [ - "9fd8740decb8c166955527a0c3cd199de45f0cd9" - ], - "backedoutby": "", - "author_email": "peterv@propagandism.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 17878266.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "editor/composer/src/nsComposerCommandsUpdater.cpp", - "editor/composer/src/nsComposerCommandsUpdater.h", - "layout/base/nsDocumentViewer.cpp", - "layout/base/tests/Makefile.in", - "layout/base/tests/test_bug471126.html", - "layout/generic/nsFrameSelection.h", - "layout/generic/nsSelection.cpp" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "layout/generic", - "editor", - "editor/composer", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "d7c6fc72e3cd032ee4c24f903d58730336372dd3", - "author": "Kai Engert ", - "bug_id": 473837, - "desc": "Backout 6c571dc80a99, bug 473837", - "pushdate": "2009-01-16 19:16:17", - "backsout": [ - "6c571dc80a993be1b40e6a89cfad2892669d0982" - ], - "backedoutby": "", - "author_email": "kaie@kuix.de", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 19572297.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "dbm/Makefile.in", - "dbm/include/mcom_db.h", - "dbm/src/h_bigkey.c", - "dbm/src/h_page.c", - "dbm/src/hash.c", - "dbm/src/hash_buf.c", - "dbm/src/mktemp.c", - "dbm/src/snprintf.c", - "dbm/tests/Makefile.in", - "dbm/tests/dbmtest.pkg", - "security/coreconf/WINCE.mk", - "security/coreconf/WINCE3.0.mk", - "security/coreconf/config.mk", - "security/dbm/Makefile", - "security/nss/Makefile", - "security/nss/cmd/bltest/blapitest.c", - "security/nss/cmd/bltest/tests/seed_cbc/ciphertext0", - "security/nss/cmd/bltest/tests/seed_cbc/iv0", - "security/nss/cmd/bltest/tests/seed_cbc/key0", - "security/nss/cmd/bltest/tests/seed_cbc/numtests", - "security/nss/cmd/bltest/tests/seed_cbc/plaintext0", - "security/nss/cmd/bltest/tests/seed_ecb/ciphertext0", - "security/nss/cmd/bltest/tests/seed_ecb/iv0", - "security/nss/cmd/bltest/tests/seed_ecb/key0", - "security/nss/cmd/bltest/tests/seed_ecb/numtests", - "security/nss/cmd/bltest/tests/seed_ecb/plaintext0", - "security/nss/cmd/certutil/certutil.c", - "security/nss/cmd/pk11mode/pk11mode.c", - "security/nss/cmd/platlibs.mk", - "security/nss/cmd/shlibsign/Makefile", - "security/nss/cmd/shlibsign/mangle/Makefile", - "security/nss/cmd/shlibsign/shlibsign.c", - "security/nss/cmd/signtool/list.c", - "security/nss/cmd/symkeyutil/symkeyutil.c", - "security/nss/cmd/vfychain/vfychain.c", - "security/nss/lib/certdb/cert.h", - "security/nss/lib/certdb/certdb.c", - "security/nss/lib/certdb/certi.h", - "security/nss/lib/certdb/certt.h", - "security/nss/lib/certdb/crl.c", - "security/nss/lib/certdb/genname.c", - "security/nss/lib/certdb/stanpcertdb.c", - "security/nss/lib/certdb/xauthkid.c", - "security/nss/lib/certdb/xbsconst.c", - "security/nss/lib/certdb/xconst.c", - "security/nss/lib/certhigh/certvfypkix.c", - "security/nss/lib/certhigh/certvfypkixprint.c", - "security/nss/lib/certhigh/ocsp.c", - "security/nss/lib/certhigh/ocspi.h", - "security/nss/lib/ckfw/Makefile", - "security/nss/lib/ckfw/builtins/certdata.c", - "security/nss/lib/ckfw/builtins/certdata.txt", - "security/nss/lib/ckfw/builtins/config.mk", - "security/nss/lib/ckfw/builtins/nssckbi.h", - "security/nss/lib/crmf/crmffut.h", - "security/nss/lib/cryptohi/hasht.h", - "security/nss/lib/cryptohi/keythi.h", - "security/nss/lib/cryptohi/manifest.mn", - "security/nss/lib/cryptohi/sechash.h", - "security/nss/lib/dev/devslot.c", - "security/nss/lib/dev/devutil.c", - "security/nss/lib/freebl/Makefile", - "security/nss/lib/freebl/aeskeywrap.c", - "security/nss/lib/freebl/alg2268.c", - "security/nss/lib/freebl/alghmac.c", - "security/nss/lib/freebl/arcfive.c", - "security/nss/lib/freebl/arcfour.c", - "security/nss/lib/freebl/blapi.h", - "security/nss/lib/freebl/blapit.h", - "security/nss/lib/freebl/camellia.c", - "security/nss/lib/freebl/config.mk", - "security/nss/lib/freebl/des.c", - "security/nss/lib/freebl/desblapi.c", - "security/nss/lib/freebl/dh.c", - "security/nss/lib/freebl/dsa.c", - "security/nss/lib/freebl/ec.c", - "security/nss/lib/freebl/freebl_hash.def", - "security/nss/lib/freebl/hasht.h", - "security/nss/lib/freebl/intel-aes.h", - "security/nss/lib/freebl/intel-aes.s", - "security/nss/lib/freebl/ldvector.c", - "security/nss/lib/freebl/loader.c", - "security/nss/lib/freebl/loader.h", - "security/nss/lib/freebl/manifest.mn", - "security/nss/lib/freebl/md2.c", - "security/nss/lib/freebl/md5.c", - "security/nss/lib/freebl/mpi/mpcpucache.c", - "security/nss/lib/freebl/mpi/mpcpucache_amd64.s", - "security/nss/lib/freebl/mpi/mpcpucache_x86.s", - "security/nss/lib/freebl/mpi/mpi.h", - "security/nss/lib/freebl/mpi/mpprime.c", - "security/nss/lib/freebl/nsslowhash.c", - "security/nss/lib/freebl/nsslowhash.h", - "security/nss/lib/freebl/pqg.c", - "security/nss/lib/freebl/prng_fips1861.c", - "security/nss/lib/freebl/rawhash.c", - "security/nss/lib/freebl/rijndael.c", - "security/nss/lib/freebl/rsa.c", - "security/nss/lib/freebl/sechash.h", - "security/nss/lib/freebl/seed.c", - "security/nss/lib/freebl/seed.h", - "security/nss/lib/freebl/sha512.c", - "security/nss/lib/freebl/sha_fast.c", - "security/nss/lib/freebl/shvfy.c", - "security/nss/lib/freebl/stubs.c", - "security/nss/lib/freebl/stubs.h", - "security/nss/lib/freebl/sysrand.c", - "security/nss/lib/freebl/tlsprfalg.c", - "security/nss/lib/jar/jarfile.c", - "security/nss/lib/libpkix/include/pkix.h", - "security/nss/lib/libpkix/include/pkix_certstore.h", - "security/nss/lib/libpkix/include/pkix_crlsel.h", - "security/nss/lib/libpkix/include/pkix_errorstrings.h", - "security/nss/lib/libpkix/include/pkix_params.h", - "security/nss/lib/libpkix/include/pkix_pl_pki.h", - "security/nss/lib/libpkix/include/pkix_revchecker.h", - "security/nss/lib/libpkix/include/pkix_sample_modules.h", - "security/nss/lib/libpkix/include/pkixt.h", - "security/nss/lib/libpkix/pkix/checker/manifest.mn", - "security/nss/lib/libpkix/pkix/checker/pkix_crlchecker.c", - "security/nss/lib/libpkix/pkix/checker/pkix_crlchecker.h", - "security/nss/lib/libpkix/pkix/checker/pkix_defaultcrlchecker.c", - "security/nss/lib/libpkix/pkix/checker/pkix_defaultcrlchecker.h", - "security/nss/lib/libpkix/pkix/checker/pkix_defaultrevchecker.c", - "security/nss/lib/libpkix/pkix/checker/pkix_defaultrevchecker.h", - "security/nss/lib/libpkix/pkix/checker/pkix_ekuchecker.c", - "security/nss/lib/libpkix/pkix/checker/pkix_ekuchecker.h", - "security/nss/lib/libpkix/pkix/checker/pkix_ocspchecker.c", - "security/nss/lib/libpkix/pkix/checker/pkix_ocspchecker.h", - "security/nss/lib/libpkix/pkix/checker/pkix_revocationchecker.c", - "security/nss/lib/libpkix/pkix/checker/pkix_revocationchecker.h", - "security/nss/lib/libpkix/pkix/checker/pkix_revocationmethod.c", - "security/nss/lib/libpkix/pkix/checker/pkix_revocationmethod.h", - "security/nss/lib/libpkix/pkix/crlsel/pkix_crlselector.c", - "security/nss/lib/libpkix/pkix/crlsel/pkix_crlselector.h", - "security/nss/lib/libpkix/pkix/params/pkix_procparams.c", - "security/nss/lib/libpkix/pkix/params/pkix_procparams.h", - "security/nss/lib/libpkix/pkix/params/pkix_trustanchor.c", - "security/nss/lib/libpkix/pkix/results/pkix_verifynode.c", - "security/nss/lib/libpkix/pkix/store/pkix_store.c", - "security/nss/lib/libpkix/pkix/store/pkix_store.h", - "security/nss/lib/libpkix/pkix/top/pkix_build.c", - "security/nss/lib/libpkix/pkix/top/pkix_build.c.orig", - "security/nss/lib/libpkix/pkix/top/pkix_build.h", - "security/nss/lib/libpkix/pkix/top/pkix_validate.c", - "security/nss/lib/libpkix/pkix/top/pkix_validate.c.orig", - "security/nss/lib/libpkix/pkix/top/pkix_validate.h", - "security/nss/lib/libpkix/pkix/util/pkix_error.c", - "security/nss/lib/libpkix/pkix/util/pkix_list.c", - "security/nss/lib/libpkix/pkix/util/pkix_logger.c", - "security/nss/lib/libpkix/pkix/util/pkix_logger.h", - "security/nss/lib/libpkix/pkix/util/pkix_tools.c", - "security/nss/lib/libpkix/pkix/util/pkix_tools.h", - "security/nss/lib/libpkix/pkix_pl_nss/module/manifest.mn", - "security/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_aiamgr.c", - "security/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_colcertstore.c", - "security/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ekuchecker.c", - "security/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ekuchecker.h", - "security/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_httpcertstore.c", - "security/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_httpdefaultclient.c", - "security/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_httpdefaultclient.h", - "security/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapcertstore.c", - "security/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_nsscontext.c", - "security/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_nsscontext.h", - "security/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_pk11certstore.c", - "security/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_cert.c", - "security/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_certpolicymap.c", - "security/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_crl.h", - "security/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_date.c", - "security/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_ocsprequest.c", - "security/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_ocsprequest.h", - "security/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_ocspresponse.c", - "security/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_ocspresponse.h", - "security/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_x500name.c", - "security/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_common.h", - "security/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_lifecycle.c", - "security/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_lifecycle.h", - "security/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c", - "security/nss/lib/nss/nss.def", - "security/nss/lib/nss/nss.h", - "security/nss/lib/pk11wrap/manifest.mn", - "security/nss/lib/pk11wrap/pk11akey.c", - "security/nss/lib/pk11wrap/pk11err.c", - "security/nss/lib/pk11wrap/pk11init.h", - "security/nss/lib/pk11wrap/pk11mech.c", - "security/nss/lib/pk11wrap/pk11merge.c", - "security/nss/lib/pk11wrap/pk11obj.c", - "security/nss/lib/pk11wrap/pk11slot.c", - "security/nss/lib/pk11wrap/secmod.h", - "security/nss/lib/pk11wrap/secmodi.h", - "security/nss/lib/pk11wrap/secmodt.h", - "security/nss/lib/pki/tdcache.c", - "security/nss/lib/smime/config.mk", - "security/nss/lib/softoken/Makefile", - "security/nss/lib/softoken/config.mk", - "security/nss/lib/softoken/legacydb/config.mk", - "security/nss/lib/softoken/manifest.mn", - "security/nss/lib/softoken/pk11init.h", - "security/nss/lib/softoken/pk11pars.h", - "security/nss/lib/softoken/pkcs11.c", - "security/nss/lib/softoken/pkcs11c.c", - "security/nss/lib/softoken/pkcs11t.h", - "security/nss/lib/softoken/pkcs11u.c", - "security/nss/lib/softoken/sdb.c", - "security/nss/lib/softoken/secmodt.h", - "security/nss/lib/softoken/sftkdb.c", - "security/nss/lib/softoken/sftkdb.h", - "security/nss/lib/softoken/sftkpars.c", - "security/nss/lib/softoken/softkver.h", - "security/nss/lib/softoken/softoken.h", - "security/nss/lib/sqlite/config.mk", - "security/nss/lib/ssl/config.mk", - "security/nss/lib/ssl/ssl3con.c", - "security/nss/lib/ssl/ssl3gthr.c", - "security/nss/lib/ssl/sslenum.c", - "security/nss/lib/ssl/sslimpl.h", - "security/nss/lib/ssl/sslinfo.c", - "security/nss/lib/ssl/sslmutex.c", - "security/nss/lib/ssl/sslmutex.h", - "security/nss/lib/ssl/sslproto.h", - "security/nss/lib/ssl/sslsnce.c", - "security/nss/lib/ssl/sslsock.c", - "security/nss/lib/ssl/sslt.h", - "security/nss/lib/ssl/win32err.c", - "security/nss/lib/util/nssutil.def", - "security/nss/lib/util/secitem.c", - "security/nss/lib/util/secoid.c", - "security/nss/lib/util/secoidt.h", - "security/nss/tests/README.txt", - "security/nss/tests/all.sh", - "security/nss/tests/chains/chains.sh", - "security/nss/tests/chains/scenarios/aia.cfg", - "security/nss/tests/chains/scenarios/anypolicy.cfg", - "security/nss/tests/chains/scenarios/anypolicywithlevel.cfg", - "security/nss/tests/chains/scenarios/bridge.cfg", - "security/nss/tests/chains/scenarios/bridgewithaia.cfg", - "security/nss/tests/chains/scenarios/bridgewithhalfaia.cfg", - "security/nss/tests/chains/scenarios/bridgewithpolicyextensionandmapping.cfg", - "security/nss/tests/chains/scenarios/dsa.cfg", - "security/nss/tests/chains/scenarios/extension.cfg", - "security/nss/tests/chains/scenarios/extension2.cfg", - "security/nss/tests/chains/scenarios/mapping.cfg", - "security/nss/tests/chains/scenarios/mapping2.cfg", - "security/nss/tests/chains/scenarios/megabridge_3_2.cfg", - "security/nss/tests/chains/scenarios/realcerts.cfg", - "security/nss/tests/chains/scenarios/scenarios", - "security/nss/tests/cipher/cipher.txt", - "security/nss/tests/cipher/symmkey.txt", - "security/nss/tests/dbtests/dbtests.sh", - "security/nss/tests/libpkix/libpkix.sh", - "security/nss/tests/memleak/ignored", - "security/nss/tests/memleak/memleak.sh", - "security/nss/tests/merge/merge.sh", - "security/nss/tests/ssl/ssl.sh" - ], - "components": [ - "NSS::Libraries" - ], - "directories": [ - "security/nss", - "dbm", - "security", - "security/dbm", - "dbm/include", - "dbm/tests", - "dbm/src", - "security/coreconf" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "f5436f305f3a8917c651c798be17d63aa051cdaa", - "author": "L. David Baron ", - "bug_id": 462188, - "desc": "Backed out changeset 9b832d90d637 (bug 462188) due to 7 test failures on Linux and 1 on Windows (0 on Mac).", - "pushdate": "2009-01-16 23:01:46", - "backsout": [ - "9b832d90d637d21c08ea8be077ebee04181e6037" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 21355427.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "editor/libeditor/html/nsHTMLEditRules.cpp", - "layout/generic/test/test_backspace_delete.html" - ], - "components": [], - "directories": [ - "editor/libeditor", - "layout", - "layout/generic", - "editor" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "79043b10f34c01764ab4e9a542fdd48257d0e369", - "author": "Igor Bukanov ", - "bug_id": 473721, - "desc": "Backed out changeset 562d8990f33a - with the fix for bug 473721 this workaround is no longer necessary.", - "pushdate": "2009-01-19 01:17:02", - "backsout": [ - "562d8990f33a007ffeb1f55faac701d95948b189" - ], - "backedoutby": "", - "author_email": "igor@mir2.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 18502923.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsapi.cpp" - ], - "components": [ - "Core::JavaScript Engine" - ], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "6f2d2ef53d758d199d16ddb88ca982ecd6e67845", - "author": "L. David Baron ", - "bug_id": 468645, - "desc": "Backed out changeset 6849ce51dfef (patch 3 from bug 468645) to fix bug 472353.", - "pushdate": "2009-01-20 21:59:23", - "backsout": [ - "6849ce51dfef0df9838e72af1acdd8a9f407a373" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 21697284.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/base/nsCSSFrameConstructor.cpp", - "layout/base/nsPresContext.cpp" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "929d0451c9b5ac985511f01d48d8347a5a788276", - "author": "Benjamin Smedberg ", - "bug_id": 470971, - "desc": "Backed out changeset 700bca4b693f due to reftest failure (bug 470971)", - "pushdate": "2009-01-21 00:00:44", - "backsout": [ - "700bca4b693f4e21805bc035f36e5b66ae9fdf60" - ], - "backedoutby": "", - "author_email": "benjamin@smedbergs.us", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 26464280.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "config/autoconf.mk.in", - "configure.in", - "js/src/xpconnect/shell/Makefile.in", - "js/src/xpconnect/shell/xpcshell.cpp" - ], - "components": [ - "Firefox Build System::General" - ], - "directories": [ - "js/src", - "config", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "3b4b3555239203608307ebb31e790e9345ac145c", - "author": "Benjamin Smedberg ", - "bug_id": 269538, - "desc": "Backed out changeset 525e42406396, bug 269538 (jscpucfg-ectomy) due to Windows TUnit bustage.", - "pushdate": "2009-01-21 22:35:10", - "backsout": [ - "525e4240639636002dc72e6f3df213b1801d8312" - ], - "backedoutby": "", - "author_email": "benjamin@smedbergs.us", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 26545546.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "build/autoconf/moznbytetype.m4", - "js/src/Makefile.in", - "js/src/build/autoconf/moznbytetype.m4", - "js/src/configure.in", - "js/src/js-config.h.in", - "js/src/jscpucfg.cpp", - "js/src/jscpucfg.h", - "js/src/jslock.cpp", - "js/src/jslong.cpp", - "js/src/jslong.h", - "js/src/jstypes.h", - "js/src/prmjtime.cpp" - ], - "components": [ - "Firefox Build System::General", - "Core::JavaScript Engine" - ], - "directories": [ - "build/autoconf", - "js", - "js/src", - "build" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "835e35dd544217fb4247d8060836be95497c9b59", - "author": "Daniel Holbert ", - "bug_id": 466410, - "desc": "Backed out changeset e6566d187edd (bug 466410) on suspicion of causing linux reftest failures in 'ogg-video/basic-1.html' and 'ogg-video/zoomed-1.html'", - "pushdate": "2009-01-22 06:37:50", - "backsout": [ - "e6566d187edd0a16c6a630719f2cc49bb4fe7b73" - ], - "backedoutby": "", - "author_email": "dholbert@cs.stanford.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 21775197.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/media/video/src/nsMediaDecoder.cpp", - "content/media/video/src/nsOggDecoder.cpp", - "content/media/video/test/test_onloadedmetadata.html" - ], - "components": [], - "directories": [ - "content", - "content/media" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "d27fe7afe11e276037b99a04b77481c687cd8241", - "author": "Peter Van der Beken ", - "bug_id": 464954, - "desc": "Backed out changeset 9fc993ac4427 (Bug 464954: Update Access-Control implementation to latest draft and fix some bugs. r/sr=bz) to fix orange.", - "pushdate": "2009-01-22 13:53:44", - "backsout": [ - "9fc993ac4427fd27314961058a0b708b7e8bb0cc" - ], - "backedoutby": "", - "author_email": "peterv@propagandism.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 18568251.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/base/public/nsContentUtils.h", - "content/base/src/nsContentUtils.cpp", - "content/base/src/nsCrossSiteListenerProxy.cpp", - "content/base/src/nsCrossSiteListenerProxy.h", - "content/base/src/nsXMLHttpRequest.cpp", - "content/base/test/Makefile.in", - "content/base/test/file_CrossSiteXHR_inner.html", - "content/base/test/file_CrossSiteXHR_inner.jar", - "content/base/test/file_CrossSiteXHR_inner_data.sjs", - "content/base/test/file_CrossSiteXHR_server.sjs", - "content/base/test/test_CrossSiteXHR.html", - "docshell/test/Makefile.in", - "dom/src/base/nsGlobalWindow.cpp", - "netwerk/base/public/nsNetUtil.h", - "testing/mochitest/server.js" - ], - "components": [ - "Testing::Mochitest" - ], - "directories": [ - "netwerk/base", - "dom/src", - "netwerk", - "docshell", - "testing/mochitest", - "dom", - "docshell/test", - "content/base", - "content", - "testing" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "dffc4413419a5c0b6a88fb51ef81a37bc6c814fe", - "author": "Peter Van der Beken ", - "bug_id": 464676, - "desc": "Back out changeset 32dc89bc34ad (Fix for bug 464676 (Cycle collector sometimes unlinks live cycles). r=bent, sr=jst.) to fix orange.", - "pushdate": "2009-01-23 16:06:05", - "backsout": [ - "32dc89bc34ad32b33cbaa6d03617540db6fa2ce7" - ], - "backedoutby": "", - "author_email": "peterv@propagandism.org", - "reviewers": [ - "bent", - "jst" - ], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 18662592.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/xpconnect/src/nsXPConnect.cpp", - "js/src/xpconnect/src/xpcwrappednativescope.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "173e57cbce97ad7ed4710aacf6486fba023ddbc7", - "author": "Peter Van der Beken ", - "bug_id": 462106, - "desc": "Backed out changeset 97907892496f (Bug 462106 - Clear the data copied to clipboard inside the private browsing mode after leaving it; r,sr=roc a=blocking-firefox3.1+) to fix orange.", - "pushdate": "2009-01-24 13:28:32", - "backsout": [ - "97907892496fe9fe3533056e2c82ff6b5cbfa563" - ], - "backedoutby": "", - "author_email": "peterv@propagandism.org", - "reviewers": [ - "roc", - "blocking-firefox3.1" - ], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 18739539.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "widget/src/gtk2/nsClipboard.cpp", - "widget/src/gtk2/nsClipboard.h", - "widget/src/photon/nsClipboard.cpp", - "widget/src/photon/nsClipboard.h", - "widget/src/qt/nsClipboard.cpp", - "widget/src/qt/nsClipboard.h", - "widget/src/xpwidgets/Makefile.in", - "widget/src/xpwidgets/nsBaseClipboard.cpp", - "widget/src/xpwidgets/nsBaseClipboard.h", - "widget/src/xpwidgets/nsClipboardPrivacyHandler.cpp", - "widget/src/xpwidgets/nsClipboardPrivacyHandler.h", - "widget/tests/Makefile.in", - "widget/tests/test_bug462106.xul" - ], - "components": [], - "directories": [ - "widget/tests", - "widget", - "widget/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "6718f7e66778dc26dadec571c108b29b37df0822", - "author": "Peter Van der Beken ", - "bug_id": 464676, - "desc": "Back out changeset e919f0c1dfa9 (Fix for bug 464676 (Cycle collector sometimes unlinks live cycles). r=bent, sr=jst.) to try to fix red on leak tinderboxes.", - "pushdate": "2009-01-24 22:14:11", - "backsout": [ - "e919f0c1dfa9eff51063f3ba1df87e117cc76178" - ], - "backedoutby": "", - "author_email": "peterv@propagandism.org", - "reviewers": [ - "bent", - "jst" - ], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 18771078.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/xpconnect/src/nsXPConnect.cpp", - "js/src/xpconnect/src/xpcwrappednativescope.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "4d6ed97f82f3c86991c11b90f7f8aabc19f05094", - "author": "Peter Van der Beken ", - "bug_id": 464676, - "desc": "Backed out changeset 81428de4b5dc (Fix for bug 464676 (Cycle collector sometimes unlinks live cycles). r=bent, sr=jst.).", - "pushdate": "2009-01-26 08:11:21", - "backsout": [ - "81428de4b5dc5de515d03ed6a3abd5b63f50fdd0" - ], - "backedoutby": "", - "author_email": "peterv@propagandism.org", - "reviewers": [ - "bent", - "jst" - ], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 18893308.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/xpconnect/src/nsXPConnect.cpp", - "js/src/xpconnect/src/xpcprivate.h", - "js/src/xpconnect/src/xpcwrappednative.cpp", - "js/src/xpconnect/src/xpcwrappednativescope.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "73bfcdaa1a516a2c25ca7d9f6106ba30a3ca11c5", - "author": "Igor Bukanov ", - "bug_id": 474801, - "desc": "Backed out changeset 6657640cbbb2 - the patch from the bug 474801 caused leak and crash test failures", - "pushdate": "2009-01-27 21:40:57", - "backsout": [ - "6657640cbbb202218a8a87fe0a37e20568b8a219" - ], - "backedoutby": "", - "author_email": "igor@mir2.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 19267558.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "dom/src/base/nsJSEnvironment.cpp", - "js/src/jsapi.cpp", - "js/src/jsapi.h", - "js/src/jscntxt.h", - "js/src/jsgc.cpp", - "js/src/shell/js.cpp" - ], - "components": [ - "Core::JavaScript Engine" - ], - "directories": [ - "dom", - "js", - "dom/src", - "js/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "2bed5117722e6f63ebf50ec02562946c129bed3f", - "author": "Andreas Gal ", - "bug_id": 462027, - "desc": "Backed out changeset 17663da1b840 (bug 462027).", - "pushdate": "2009-01-27 21:40:57", - "backsout": [ - "17663da1b840384852133b3b97f6fc0298682d91" - ], - "backedoutby": "", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 18092979.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/builtins.tbl", - "js/src/imacro_asm.js.in", - "js/src/imacros.c.out", - "js/src/imacros.jsasm", - "js/src/jsbuiltins.cpp", - "js/src/jscntxt.h", - "js/src/jsgc.cpp", - "js/src/jsinterp.cpp", - "js/src/jsopcode.tbl", - "js/src/jstracer.cpp", - "js/src/jstracer.h", - "js/src/trace-test.js" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "6e5e50fe7ca61ddf885122b938f825af08c81ee2", - "author": "Andreas Gal ", - "bug_id": 24106, - "desc": "Backed out changeset 05cbbc9f1ae2, which backed out bug 24106 (so this is re-landing 24106).", - "pushdate": "2009-01-27 21:40:57", - "backsout": [ - "05cbbc9f1ae27bc382dad2032c26df0341d1d1db" - ], - "backedoutby": "", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 18092979.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jstracer.cpp", - "js/src/trace-test.js" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "799a55cfae002c1a1b0e8a6a089b3b3c007f0668", - "author": "Andreas Gal ", - "bug_id": 474771, - "desc": "Backed out changeset d50d3681b94e (attempted re-landing of 474771).", - "pushdate": "2009-01-28 18:59:34", - "backsout": [ - "d50d3681b94e" - ], - "backedoutby": "", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 18169696.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jscntxt.h", - "js/src/jsinterp.cpp", - "js/src/jsobj.cpp", - "js/src/jsstaticcheck.h", - "js/src/jstracer.cpp", - "js/src/trace-test.js" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "0cbd3800749f3bffc26297d2307262908464c554", - "author": "L. David Baron ", - "bug_id": 475128, - "desc": "Backed out changeset 24917a339f2e (bug 475128) because it didn't patch the IsRoot check nsRuleNode::Sweep, which it needs to.", - "pushdate": "2009-01-29 22:37:28", - "backsout": [ - "24917a339f2e1e6dbe955e5d318d2a6be975abc5" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 22477169.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/base/nsPresContext.h", - "layout/style/nsStyleContext.cpp", - "layout/style/nsStyleSet.cpp", - "layout/style/nsStyleSet.h" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "layout/style", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "6efc982bb051993be0ab7d97a8efc25745dbb945", - "author": "Justin Dolske ", - "bug_id": 451352, - "desc": "Backout changeset 8dd2e82503cd (bug 451352), it broke password manager.", - "pushdate": "2009-01-30 20:02:08", - "backsout": [ - "8dd2e82503cd3d6759178d1066193c07559251c3" - ], - "backedoutby": "", - "author_email": "dolske@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 19701372.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/components/passwordmgr/content/passwordManager.js" - ], - "components": [], - "directories": [ - "toolkit/components", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "6a6d6d76ebc8fad447f77cf8d537dea380361855", - "author": "shaver@mozilla.org", - "bug_id": 469625, - "desc": "Backed out changeset 7246c4dcf997 (bug 469625) due to trace-test.js failures.", - "pushdate": "2009-01-31 19:45:42", - "backsout": [ - "7246c4dcf99709f0fe1e0aefbf812e701f1961ad" - ], - "backedoutby": "", - "author_email": "shaver@mozilla.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 27399378.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsarray.cpp", - "js/src/jsemit.cpp", - "js/src/jsobj.cpp", - "js/src/jstracer.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "143ac6c35cfacf6ec31a1cb8bce9d295d3889aaf", - "author": "Ted Mielczarek ", - "bug_id": 460515, - "desc": "Backed out changeset 7c7ec4bd36a6 (bug 460515 - Remove assumption that xpcshell etc in same directory as app executable) because it's broken on OS X.", - "pushdate": "2009-02-04 20:43:14", - "backsout": [ - "7c7ec4bd36a6aae629950758362b7c589b0e4564" - ], - "backedoutby": "", - "author_email": "ted.mielczarek@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 27748430.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "build/pgo/automation.py.in", - "testing/mochitest/runtests.py.in", - "testing/mochitest/server.js" - ], - "components": [ - "Testing::Mochitest" - ], - "directories": [ - "testing/mochitest", - "build/pgo", - "testing", - "build" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "674246a64ed25f818e72b1982cc20168502c2988", - "author": "L. David Baron ", - "bug_id": 474655, - "desc": "Backed out changeset eec3076f3bab (Bug 474655, Warn when nsIDOMCSSStyleDeclaration::GetPropertyCSSValue is called) because we trigger the warning too much ourselves (Bug 475311)", - "pushdate": "2009-02-04 21:25:12", - "backsout": [ - "eec3076f3bab68a031a39a4b01617a3e4c97834b" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 22991233.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "dom/locales/en-US/chrome/layout/css.properties", - "layout/style/nsCSSRules.cpp", - "layout/style/nsComputedDOMStyle.cpp", - "layout/style/nsComputedDOMStyle.h", - "layout/style/nsDOMCSSDeclaration.cpp", - "layout/style/nsStyleUtil.cpp", - "layout/style/nsStyleUtil.h" - ], - "components": [ - "Core::DOM: CSS Object Model", - "Core::CSS Parsing and Computation" - ], - "directories": [ - "dom", - "layout", - "dom/locales", - "layout/style" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "c5044341110e9e79210a7547b1a3e75f01b6e58a", - "author": "L. David Baron ", - "bug_id": 476345, - "desc": "Backed out changeset d9eff1fb5e60 (bug 476345) due to Windows bustage.", - "pushdate": "2009-02-04 22:39:56", - "backsout": [ - "d9eff1fb5e6034d114cfae7757b4af4542d31f28" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 22995717.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/style/nsCSSValue.h" - ], - "components": [ - "Core::CSS Parsing and Computation" - ], - "directories": [ - "layout/style", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "c1dabe868c329e83fc95183ba931d0da48e7d865", - "author": "Peter Van der Beken ", - "bug_id": 445087, - "desc": "Backed out changeset d679ac3a8de0 (Bug 445087. Add extra pixel on each side of the glyph's black box returned by GetGlyphOutlineW, to avoid clipping ClearType pixels. r=vlad) to fix orange.", - "pushdate": "2009-02-05 14:35:14", - "backsout": [ - "d679ac3a8de0c6de7339056d80c7d0470b7c0a95" - ], - "backedoutby": "", - "author_email": "peterv@propagandism.org", - "reviewers": [ - "vlad" - ], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 19780341.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "gfx/cairo/README", - "gfx/cairo/cairo/src/cairo-win32-font.c", - "gfx/cairo/win32-cleartype-clipping.patch" - ], - "components": [ - "Core::Graphics" - ], - "directories": [ - "gfx/cairo", - "gfx" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "1dabc169a3c4f6afea7acec07e2fe983bdce6186", - "author": "Benjamin Smedberg ", - "bug_id": 476643, - "desc": "Backed out changeset 64d5b7cdeb69 - bug 476643 because of Windows bustage (js_LeaveTrace is not a friend API)", - "pushdate": "2009-02-06 01:20:20", - "backsout": [ - "64d5b7cdeb698e8fc8543ff863680d22fce7748c" - ], - "backedoutby": "", - "author_email": "benjamin@smedbergs.us", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 27851456.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "dom/src/base/nsJSEnvironment.cpp", - "dom/src/base/nsJSEnvironment.h", - "js/src/xpconnect/src/xpcprivate.h", - "js/src/xpconnect/src/xpcwrappedjsclass.cpp" - ], - "components": [], - "directories": [ - "dom", - "js", - "dom/src", - "js/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "27d46c33caddcf8b00b874230d539e283e9ddfa2", - "author": "L. David Baron ", - "bug_id": 460882, - "desc": "Backed out changeset 423eea03fb54 (Bug 460882) for being one of the two changesets that's causing chrome and a11y tests not to start.", - "pushdate": "2009-02-07 04:58:06", - "backsout": [ - "423eea03fb546ce9c44c47b091d92068c8462eb7" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 23191207.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "dom/src/base/nsDOMClassInfo.cpp", - "js/src/jsdbgapi.cpp", - "js/src/jsinterp.cpp", - "js/src/jsscope.h", - "js/src/xpconnect/idl/nsIXPConnect.idl", - "js/src/xpconnect/src/XPCCrossOriginWrapper.cpp", - "js/src/xpconnect/src/nsXPConnect.cpp", - "js/src/xpconnect/src/xpccallcontext.cpp", - "js/src/xpconnect/src/xpcprivate.h", - "js/src/xpconnect/src/xpcwrappednativejsops.cpp", - "js/src/xpconnect/src/xpcwrappednativescope.cpp" - ], - "components": [], - "directories": [ - "dom", - "js", - "dom/src", - "js/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "7a4f890c862d61c7d8d26f656a1f438e81c6c9d5", - "author": "Phil Ringnalda ", - "bug_id": 320954, - "desc": "Backed out changeset c8d43645a578 (bug 320954) for burning leak tests", - "pushdate": "2009-02-07 22:40:16", - "backsout": [ - "c8d43645a578b3e2d933328ed3088cbd4d98d371" - ], - "backedoutby": "", - "author_email": "philringnalda@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 20554026.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "security/manager/ssl/src/nsNSSModule.cpp" - ], - "components": [], - "directories": [ - "security/manager", - "security" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "7581b9caf300976be72d4be0a74041533a586396", - "author": "Marco Bonardo ", - "bug_id": 469831, - "desc": "Backed out changeset 92a47ed3d54e - Michael Ventnor \u2014 Bug 469831 - need gtk2 drawing code for test plugin - due to mochitest leak failures (crash?)", - "pushdate": "2009-02-10 00:37:27", - "backsout": [ - "92a47ed3d54e2e388b7fb4360a476fdc765d75d7" - ], - "backedoutby": "", - "author_email": "mbonardo@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 474492.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "modules/plugin/test/reftest/reftest.list", - "modules/plugin/test/testplugin/Makefile.in", - "modules/plugin/test/testplugin/nptest_gtk2.cpp" - ], - "components": [], - "directories": [ - "modules/plugin", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "4bb932755d5c4d2a79ce867b256e95cbb3118fcd", - "author": "Marco Zehe ", - "bug_id": 475522, - "desc": "Backout changeset 4767c92771e6 from bug 475522 because of burning tree", - "pushdate": "2009-02-12 14:37:38", - "backsout": [ - "4767c92771e658f69cc9d908b2fd147f9b0d37bc" - ], - "backedoutby": "", - "author_email": "marco.zehe@googlemail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 21778772.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "accessible/src/base/Makefile.in", - "accessible/src/base/nsAccessibilityAtomList.h", - "accessible/src/base/nsTextAttrs.cpp", - "accessible/src/base/nsTextAttrs.h", - "accessible/src/base/nsTextUtils.cpp", - "accessible/src/base/nsTextUtils.h", - "accessible/src/html/nsHyperTextAccessible.cpp", - "accessible/src/html/nsHyperTextAccessible.h", - "accessible/tests/mochitest/attributes.js", - "accessible/tests/mochitest/test_textattrs.html" - ], - "components": [ - "Core::Disability Access APIs" - ], - "directories": [ - "accessible/src", - "accessible", - "accessible/tests" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "8dccd5c59ad200b7187886fd95d6847b11d03607", - "author": "L. David Baron ", - "bug_id": 474536, - "desc": "Backed out changeset 4bd7dd7645c2 (Bug 474536)", - "pushdate": "2009-02-19 20:38:52", - "backsout": [ - "4bd7dd7645c209ec5065bab824994739587a7e51" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 24284453.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "modules/libjar/nsJARChannel.cpp", - "modules/libjar/nsJARChannel.h", - "netwerk/base/public/nsChannelProperties.h", - "netwerk/base/public/nsNetStrings.h", - "netwerk/base/public/nsNetUtil.h", - "netwerk/base/src/nsNetStrings.cpp", - "netwerk/protocol/http/src/nsHttpAtomList.h", - "netwerk/streamconv/test/Makefile.in", - "uriloader/base/nsURILoader.cpp" - ], - "components": [ - "Core::DOM: Navigation", - "Core::Networking: JAR" - ], - "directories": [ - "netwerk/base", - "modules/libjar", - "netwerk/protocol", - "netwerk", - "uriloader/base", - "netwerk/streamconv", - "uriloader", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "0590dccbad048faa84af827bb1eaefe978e95260", - "author": "L. David Baron ", - "bug_id": 322475, - "desc": "Backed out changeset fde0b361f25e (bug 322475, main patch) due to Mac talos startup failures and hitting the NS_ABORT_IF_FALSE in SetupBackgroundClip, which may be related.", - "pushdate": "2009-02-19 21:52:07", - "backsout": [ - "fde0b361f25eb13e1b18cab08150e8d3f7a34272" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 24288848.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "accessible/src/base/nsTextAttrs.cpp", - "content/html/content/src/nsGenericHTMLElement.cpp", - "content/mathml/content/src/nsMathMLElement.cpp", - "gfx/thebes/public/gfxContext.h", - "layout/base/nsCSSRendering.cpp", - "layout/base/nsDisplayList.cpp", - "layout/base/nsLayoutUtils.cpp", - "layout/base/nsPresContext.cpp", - "layout/base/nsStyleConsts.h", - "layout/generic/nsFrame.cpp", - "layout/reftests/backgrounds/aqua-32x32.png", - "layout/reftests/backgrounds/blue-32x32.png", - "layout/reftests/backgrounds/fallback-color-1.xhtml", - "layout/reftests/backgrounds/fallback-color-2.xhtml", - "layout/reftests/backgrounds/fallback-color-3.xhtml", - "layout/reftests/backgrounds/fallback-color-4.xhtml", - "layout/reftests/backgrounds/fallback-color-5.xhtml", - "layout/reftests/backgrounds/fallback-color-6.xhtml", - "layout/reftests/backgrounds/fallback-color-7.xhtml", - "layout/reftests/backgrounds/fallback-color-8.xhtml", - "layout/reftests/backgrounds/fallback-color-9.xhtml", - "layout/reftests/backgrounds/fallback-color-ref.xhtml", - "layout/reftests/backgrounds/fuchsia-32x32.png", - "layout/reftests/backgrounds/layers-layer-count-1-ref.xhtml", - "layout/reftests/backgrounds/layers-layer-count-2-ref.xhtml", - "layout/reftests/backgrounds/layers-layer-count-cascade-1.xhtml", - "layout/reftests/backgrounds/layers-layer-count-cascade-2.xhtml", - "layout/reftests/backgrounds/layers-layer-count-inheritance-1.xhtml", - "layout/reftests/backgrounds/layers-layer-count-inheritance-2.xhtml", - "layout/reftests/backgrounds/layers-stacking-order-ref.xhtml", - "layout/reftests/backgrounds/layers-stacking-order.xhtml", - "layout/reftests/backgrounds/lime-32x32.png", - "layout/reftests/backgrounds/malformed.png", - "layout/reftests/backgrounds/red-32x32.png", - "layout/reftests/backgrounds/reftest.list", - "layout/reftests/backgrounds/transparent-32x32.png", - "layout/reftests/backgrounds/yellow-32x32.png", - "layout/reftests/reftest.list", - "layout/style/nsCSSDataBlock.cpp", - "layout/style/nsCSSDeclaration.cpp", - "layout/style/nsCSSParser.cpp", - "layout/style/nsCSSPropList.h", - "layout/style/nsCSSProps.cpp", - "layout/style/nsCSSStruct.cpp", - "layout/style/nsCSSStruct.h", - "layout/style/nsComputedDOMStyle.cpp", - "layout/style/nsComputedDOMStyle.h", - "layout/style/nsRuleNode.cpp", - "layout/style/nsStyleStruct.cpp", - "layout/style/nsStyleStruct.h", - "layout/style/test/property_database.js", - "layout/style/test/test_shorthand_property_getters.html", - "layout/tables/nsTablePainter.cpp", - "layout/xul/base/src/tree/src/nsTreeBodyFrame.cpp", - "xpcom/glue/nsTArray.h" - ], - "components": [ - "Core::Layout", - "Core::DOM: CSS Object Model", - "Core::CSS Parsing and Computation" - ], - "directories": [ - "xpcom/glue", - "layout/generic", - "layout/tables", - "accessible/src", - "accessible", - "content/mathml", - "gfx/thebes", - "layout/xul", - "content", - "xpcom", - "content/html", - "layout/style", - "gfx", - "layout", - "layout/base", - "layout/reftests" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "6e008e161a0fed680d40e4f811254f51ece7b7bf", - "author": "Shawn Wilsher ", - "bug_id": 474749, - "desc": "Backed out changeset 690209fc5b6b (bug 474749) due to unit test failures.", - "pushdate": "2009-02-22 06:44:40", - "backsout": [ - "690209fc5b6b4d2816f4d02b592c1ed0739a5cf5" - ], - "backedoutby": "", - "author_email": "me@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 7464381.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "media/liboggplay/src/liboggplay/oggplay_yuv2rgb.c", - "media/liboggplay/update.sh", - "media/liboggplay/yuv_fix_mmx.patch" - ], - "components": [], - "directories": [ - "media", - "media/liboggplay" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "0e56b82242f20ff27016b2816acf79363ce9190e", - "author": "Shawn Wilsher ", - "bug_id": 479543, - "desc": "Backed out changeset f8926cd4a7b2 (bug 479543) since it breaks unit tests in\ndebug builds.", - "pushdate": "2009-02-23 22:35:40", - "backsout": [ - "f8926cd4a7b24a307d61d80dced150183ffd30de" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 22834109.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "storage/src/mozStorageConnection.cpp" - ], - "components": [], - "directories": [ - "storage/src", - "storage" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "87097563da9eb475bae4354e8b4953530d70ab25", - "author": "L. David Baron ", - "bug_id": 476245, - "desc": "Backed out changeset a328b5ae57e0 (bug 476245) for causing failures of test_videocontrols.html across platforms (although Linux hasn't cycled yet).", - "pushdate": "2009-02-24 21:39:20", - "backsout": [ - "a328b5ae57e0062d856efe7489d224d4f3df88cf" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 24720081.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/base/public/nsIContent.h", - "content/base/public/nsINode.h", - "content/base/src/nsGenericDOMDataNode.cpp", - "content/base/src/nsGenericElement.cpp", - "content/xbl/src/nsXBLBinding.cpp", - "layout/base/nsCSSFrameConstructor.cpp" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "content/base", - "content", - "content/xbl", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "596366a3c3413b7b303f75f0beb8e2ebb36ca3a9", - "author": "Jonas Sicking ", - "bug_id": 479521, - "desc": "Backed out changeset 4130ff1e52f3 (bug 479521) due to test failures.", - "pushdate": "2009-02-24 23:38:22", - "backsout": [ - "4130ff1e52f30d3cd309448fc2b3cb825d5ae300" - ], - "backedoutby": "", - "author_email": "jonas@sicking.cc", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 17628917.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "build/automation.py.in", - "content/base/src/nsCrossSiteListenerProxy.cpp", - "content/base/src/nsCrossSiteListenerProxy.h", - "content/base/src/nsXMLHttpRequest.cpp", - "content/base/test/file_CrossSiteXHR_server.sjs", - "content/base/test/test_CrossSiteXHR.html", - "modules/libpref/src/init/all.js", - "netwerk/protocol/http/src/nsHttpChannel.cpp", - "netwerk/protocol/http/src/nsHttpHandler.cpp", - "netwerk/protocol/http/src/nsHttpHandler.h" - ], - "components": [], - "directories": [ - "modules/libpref", - "netwerk/protocol", - "netwerk", - "build", - "content/base", - "content", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "34ee950622aa5c2f92b3143421fee9eef6952c5a", - "author": "Andreas Gal ", - "bug_id": 24968, - "desc": "Back out a2b6a4c57a05 (bug 24968). Cross-platform orange.", - "pushdate": "2009-02-25 09:05:38", - "backsout": [ - "a2b6a4c57a0557c922bef92bc96c388441192384" - ], - "backedoutby": "", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 20553260.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jstracer.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "939103e7a4abcecf6035ba8ff205410c958e4ec1", - "author": "Dave Camp ", - "bug_id": 479393, - "desc": "Backed out changeset 209a7cc3150e (Bug 479393)", - "pushdate": "2009-02-26 05:51:42", - "backsout": [ - "209a7cc3150ef1ab3208a0702c426af9eb3185c6" - ], - "backedoutby": "", - "author_email": "dcamp@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 21180440.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "security/manager/ssl/src/nsNSSComponent.cpp" - ], - "components": [], - "directories": [ - "security/manager", - "security" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "c395bb2cf30ab1144bc0e41da4e3accd44209589", - "author": "Johnathan Nightingale ", - "bug_id": 479499, - "desc": "Backed out changeset fdbe218cdcc7 - Causing crashtest hangs on linux. Tracked by bug 479499.", - "pushdate": "2009-03-03 14:47:16", - "backsout": [ - "fdbe218cdcc70e324f22e689e697fce690abeb6c" - ], - "backedoutby": "", - "author_email": "johnath@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 16886130.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "parser/htmlparser/tests/crashtests/crashtests.list" - ], - "components": [ - "Core::XML" - ], - "directories": [ - "parser/htmlparser", - "parser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "f8b100b574f316c48f77427708315ac7921e00a4", - "author": "Igor Bukanov ", - "bug_id": 480700, - "desc": "Backed out changeset 5befb6301e9b for bug 480700 - the patch broke 32-bit linux build.", - "pushdate": "2009-03-09 18:47:08", - "backsout": [ - "5befb6301e9bfb47fd23ef695cfd1bc2017bdda8" - ], - "backedoutby": "", - "author_email": "igor@mir2.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 22799529.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsbit.h", - "js/src/jslog2.cpp", - "js/src/jsprvtd.h", - "js/src/jstypes.h", - "js/src/jsutil.cpp" - ], - "components": [ - "Core::JavaScript Engine" - ], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "14bc4dbf10cb18b41e6a7e2f79039e6cd0eb71ea", - "author": "Joe Drew ", - "bug_id": 480267, - "desc": "Backed out changeset 635b1c8783a6 - bug 480267 - because it seems to have\ncaused a reftest failure.", - "pushdate": "2009-03-10 16:26:18", - "backsout": [ - "635b1c8783a6dabfa80aab6b55d3815ea41606cc" - ], - "backedoutby": "", - "author_email": "joe@drew.ca", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 17568506.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "gfx/thebes/public/gfxFontUtils.h", - "gfx/thebes/src/gfxFontUtils.cpp", - "gfx/thebes/src/gfxQuartzFontCache.mm", - "gfx/thebes/src/gfxWindowsFonts.cpp", - "layout/reftests/font-face/reftest.list", - "layout/reftests/font-face/synthetic-weight-style-ref.html", - "layout/reftests/font-face/synthetic-weight-style.html" - ], - "components": [ - "Core::CSS Parsing and Computation" - ], - "directories": [ - "layout/reftests", - "gfx/thebes", - "gfx", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "44cd744842422ca215443df7c86c7490686773ef", - "author": "Karl Tomlinson ", - "bug_id": 481881, - "desc": "backout dac7c3176b33 from bug 481881", - "pushdate": "2009-03-11 04:09:25", - "backsout": [ - "dac7c3176b331762557a4c3d74e32840cb002fe0" - ], - "backedoutby": "", - "author_email": "karlt+@karlt.net", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 21344141.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/generic/nsFrame.cpp", - "layout/generic/nsTextFrameThebes.cpp", - "layout/inspector/src/inDeepTreeWalker.cpp", - "layout/inspector/src/inDeepTreeWalker.h", - "layout/tables/nsCellMap.cpp", - "layout/tables/nsCellMap.h", - "layout/tables/nsTableFrame.cpp" - ], - "components": [ - "Core::Layout: Tables" - ], - "directories": [ - "layout/inspector", - "layout/generic", - "layout/tables", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "ad96e3d1ab56c30857baab534d1b353d121dc61f", - "author": "Ehsan Akhgari ", - "bug_id": 463256, - "desc": "Backed out changeset 113bda3be8df (bug 463256) due to test failures on Mac", - "pushdate": "2009-03-12 10:10:39", - "backsout": [ - "113bda3be8df2698fdd52a65b54c7d24b2eda2be" - ], - "backedoutby": "", - "author_email": "ehsan.akhgari@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 21044305.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/components/privatebrowsing/src/nsPrivateBrowsingService.js", - "browser/components/privatebrowsing/test/browser/Makefile.in", - "browser/components/privatebrowsing/test/browser/browser_privatebrowsing_sslsite_transition.js", - "toolkit/components/downloads/test/unit/test_privatebrowsing.js" - ], - "components": [], - "directories": [ - "toolkit/components", - "browser/components", - "toolkit", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "73379b9ca6ce67e1c061de3b7f450f3f613f2915", - "author": "Ehsan Akhgari ", - "bug_id": 464800, - "desc": "Backed out changeset 69322c1764ff (bug 464800) due to test failures on Mac", - "pushdate": "2009-03-12 10:10:39", - "backsout": [ - "69322c1764ffd21bd5756e54a4068fcb4c4ac077" - ], - "backedoutby": "", - "author_email": "ehsan.akhgari@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 21044305.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/mozapps/downloads/content/downloads.js", - "toolkit/mozapps/downloads/tests/chrome/Makefile.in", - "toolkit/mozapps/downloads/tests/chrome/test_privatebrowsing_title.xul" - ], - "components": [], - "directories": [ - "toolkit/mozapps", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "fbd0299ee9becb64574199c7c2ba727bf1a0055f", - "author": "Graydon Hoare ", - "bug_id": 482800, - "desc": "Backout changeset 5e0cc374593c for bug 482800.", - "pushdate": "2009-03-13 01:56:58", - "backsout": [ - "5e0cc374593c24989fb28dd1e98022373204b8ca" - ], - "backedoutby": "", - "author_email": "graydon@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 21285817.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jstracer.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "6ed065a2a0d82c1ecf4d7e15b8fbbca18075bb0d", - "author": "Igor Bukanov ", - "bug_id": 437325, - "desc": "Backed out changeset 57de81309176 - bug 437325 - due to mochitest leaks on tinderbox", - "pushdate": "2009-03-13 20:34:49", - "backsout": [ - "57de813091765f87edb63835fda7e72b6de9df5b" - ], - "backedoutby": "", - "author_email": "igor@mir2.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 23151590.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsapi.cpp", - "js/src/jscntxt.cpp", - "js/src/jscntxt.h", - "js/src/jsdbgapi.cpp", - "js/src/jsfun.cpp", - "js/src/jsgc.cpp", - "js/src/jsgc.h", - "js/src/jsinterp.cpp", - "js/src/jsinterp.h", - "js/src/jsprvtd.h", - "js/src/jsscript.cpp", - "js/src/jstracer.cpp", - "js/src/jstracer.h", - "js/src/xpconnect/src/xpcjsruntime.cpp" - ], - "components": [ - "Core::JavaScript Engine" - ], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "96fb69f98cc2c3ad734d89428918adfcf945a885", - "author": "Andreas Gal ", - "bug_id": 457065, - "desc": "Backed out changeset 10b781704400 (bug 457065).", - "pushdate": "2009-03-16 22:50:44", - "backsout": [ - "10b781704400c1b969761a460d787de171f5cb73" - ], - "backedoutby": "", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 22244366.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jstracer.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "33c68c49af9dc25355f3855452fc043c2c84b4d2", - "author": "Dave Townsend ", - "bug_id": 482659, - "desc": "Backed out changeset 55d159b75f41 from bug 482659.", - "pushdate": "2009-03-17 11:09:29", - "backsout": [ - "55d159b75f41141d92ad9bb2c52780d082ed11a0" - ], - "backedoutby": "", - "author_email": "dtownsend@oxymoronical.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 24798327.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/base/src/nsFrameLoader.cpp", - "content/html/document/test/Makefile.in", - "content/html/document/test/test_bug482659.html", - "layout/reftests/bugs/482659-1-ref.html", - "layout/reftests/bugs/482659-1a.html", - "layout/reftests/bugs/482659-1b.html", - "layout/reftests/bugs/482659-1c.html", - "layout/reftests/bugs/482659-1d.html", - "layout/reftests/bugs/reftest.list", - "netwerk/build/nsNetCID.h", - "netwerk/build/nsNetModule.cpp", - "netwerk/protocol/about/src/nsAboutProtocolHandler.cpp", - "netwerk/protocol/about/src/nsAboutProtocolHandler.h", - "netwerk/test/unit/test_aboutblank.js" - ], - "components": [ - "Core::Layout", - "Core::Networking" - ], - "directories": [ - "netwerk/protocol", - "netwerk", - "netwerk/test", - "netwerk/build", - "content/base", - "content", - "content/html", - "layout", - "layout/reftests" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "830772ae7bf41b96b9ad77c2ce55215d2f1d93cf", - "author": "Andreas Gal ", - "bug_id": 479110, - "desc": "Backed out changeset e71cb3993380 (bug 479110).", - "pushdate": "2009-03-18 06:58:56", - "backsout": [ - "e71cb3993380e6f98caffee8be67a3fff87adea0" - ], - "backedoutby": "", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 22360058.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jstracer.cpp", - "js/src/jstracer.h", - "js/src/math-trace-tests.js" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "0424abce8965b1c95c1a6ff6a893bf21b43d6253", - "author": "Gavin Sharp ", - "bug_id": 483634, - "desc": "Back out changeset 699fc684188c from bug 483634 due to unit test failures", - "pushdate": "2009-03-19 04:56:56", - "backsout": [ - "699fc684188c2ebba72ce592b644a12e3f02c6ff" - ], - "backedoutby": "", - "author_email": "gavin@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 23859563.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "dom/base/nsDOMWindowUtils.cpp", - "dom/interfaces/base/nsIDOMWindowUtils.idl", - "dom/tests/mochitest/general/Makefile.in", - "dom/tests/mochitest/general/test_domWindowUtils_scrollXY.html" - ], - "components": [ - "Core::DOM: Core & HTML" - ], - "directories": [ - "dom", - "dom/interfaces", - "dom/tests", - "dom/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "100e73c6c9e8b3315fb8b9eaec85dbb9b8b3040a", - "author": "Peter Van der Beken ", - "bug_id": 484764, - "desc": "Backed out changeset 83944488fbe6 (Preparation for fix for bug 484764 (Set up DOM prototype chains from PostCreateProto instead of PostCreate)).", - "pushdate": "2009-03-24 13:47:26", - "backsout": [ - "83944488fbe65335798cfc0e1f724e845beca785" - ], - "backedoutby": "", - "author_email": "peterv@propagandism.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 23838273.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "dom/base/nsDOMClassInfo.cpp", - "dom/base/nsDOMClassInfo.h" - ], - "components": [], - "directories": [ - "dom", - "dom/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "124a3d626d1e059fc0c13ff7549df8e2a69e6b34", - "author": "Igor Bukanov ", - "bug_id": 437325, - "desc": "Backed out changeset e117c22cc1d1 - the landed patch for bug 437325 has a shutdown leak.", - "pushdate": "2009-03-24 17:50:03", - "backsout": [ - "e117c22cc1d1a33f058191484ea339556c5ee654" - ], - "backedoutby": "", - "author_email": "igor@mir2.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 24092104.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsapi.cpp", - "js/src/jscntxt.cpp", - "js/src/jscntxt.h", - "js/src/jsdbgapi.cpp", - "js/src/jsfun.cpp", - "js/src/jsgc.cpp", - "js/src/jsgc.h", - "js/src/jsinterp.cpp", - "js/src/jsinterp.h", - "js/src/jsprvtd.h", - "js/src/jsscript.cpp", - "js/src/jstracer.cpp", - "js/src/jstracer.h", - "js/src/xpconnect/src/xpcjsruntime.cpp" - ], - "components": [ - "Core::JavaScript Engine" - ], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "a43288e59420590e1df46280dace88f4db30dbbe", - "author": "Dave Townsend ", - "bug_id": 484764, - "desc": "Backed out changeset 94673272aeab from bug 484764: Set up DOM prototype chain\nfrom nsDOMClassInfo::PostCreateProto.", - "pushdate": "2009-03-26 14:54:57", - "backsout": [ - "94673272aeab8bab601581b74567472e2985484d" - ], - "backedoutby": "", - "author_email": "dtownsend@oxymoronical.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 25589455.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "dom/base/nsDOMClassInfo.cpp", - "dom/base/nsDOMClassInfo.h" - ], - "components": [], - "directories": [ - "dom", - "dom/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "cc7213e51266945396c0f03f6bdff7e804e087b6", - "author": "Shawn Wilsher ", - "bug_id": 483980, - "desc": "Backed out changeset 2d1f7c7c7a2b (bug 483980)", - "pushdate": "2009-03-27 22:34:53", - "backsout": [ - "2d1f7c7c7a2b51459482072435cc6572f4ea7dec" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 25598862.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/components/places/src/nsNavBookmarks.cpp", - "toolkit/components/places/src/nsNavBookmarks.h", - "toolkit/components/places/src/nsNavHistory.cpp", - "toolkit/components/places/src/nsNavHistory.h", - "toolkit/components/places/src/nsNavHistoryExpire.cpp", - "toolkit/components/places/src/nsPlacesDBFlush.js", - "toolkit/components/places/src/nsPlacesMacros.h", - "toolkit/components/places/tests/unit/nsDummyObserver.js", - "toolkit/components/places/tests/unit/test_bookmark_catobs.js", - "toolkit/components/places/tests/unit/test_history_catobs.js" - ], - "components": [], - "directories": [ - "toolkit/components", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "711c24ec63bd94e0c7d1c7993cc341ab60ec5b7e", - "author": "Igor Bukanov ", - "bug_id": 485178, - "desc": "Backed out changeset 0b36bddcefe4 for bug 485178 to fix compiletaion errors on some platforms.", - "pushdate": "2009-03-29 20:42:33", - "backsout": [ - "0b36bddcefe45e07c2b4ead1f001062c9f1a4890" - ], - "backedoutby": "", - "author_email": "igor@mir2.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 24534454.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/shell/js.cpp" - ], - "components": [ - "Core::JavaScript Engine" - ], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "b39c0c0674fb5f8f3cab177d0f25dae8096fcde3", - "author": "Marco Bonardo ", - "bug_id": 427633, - "desc": "backout changeset 459c8e138144 \u2013 test for Bug 427633, due to failures on OS X", - "pushdate": "2009-03-30 22:59:52", - "backsout": [ - "459c8e138144c00e3b90d309a3284e18d7cf809e" - ], - "backedoutby": "", - "author_email": "mbonardo@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 4702237.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/components/places/tests/chrome/Makefile.in", - "browser/components/places/tests/chrome/test_editBookmarkOverlay.xul" - ], - "components": [], - "directories": [ - "browser/components", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "70cd538fd48aa091def4ad7c5df003283988b487", - "author": "Benjamin Smedberg ", - "bug_id": 485390, - "desc": "Backed out changeset f66fabdbc090 (bug 485390) - the problem is not in utils.lockFile, and you shouldn't really need to hold the file descriptor", - "pushdate": "2009-03-31 14:39:36", - "backsout": [ - "f66fabdbc090034cab166dd4d823ba082c0466ed" - ], - "backedoutby": "", - "author_email": "benjamin@smedbergs.us", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 32478612.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "config/utils.py" - ], - "components": [], - "directories": [ - "config" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "54dda9955a7fdc7f5dd468ce8ea06c3fa004f617", - "author": "L. David Baron ", - "bug_id": 395668, - "desc": "Backed out changeset 5263468b1d60 (bug 395668) due to unit test timeouts in test_tooltip.xul and test_tooltip_noautohide.xul", - "pushdate": "2009-04-02 18:06:14", - "backsout": [ - "5263468b1d60cce3af4feba31a8a2d380f7b7c13" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 27904095.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/xul/base/src/nsXULTooltipListener.cpp", - "layout/xul/base/src/nsXULTooltipListener.h" - ], - "components": [], - "directories": [ - "layout/xul", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "b025b0c6e3806754edac056176b8132b80b37c08", - "author": "Joe Drew ", - "bug_id": 481926, - "desc": "Backed out changeset 6f3c2171bbb2:\nBug 481926 - Rewrite color management component. r=joe,ted sr=vlad", - "pushdate": "2009-04-03 20:29:59", - "backsout": [ - "6f3c2171bbb22238f1e2dd13c7f748ac6e62145b" - ], - "backedoutby": "", - "author_email": "joe@drew.ca", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 19656727.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "config/autoconf.mk.in", - "config/static-config.mk", - "configure.in", - "content/canvas/src/Makefile.in", - "gfx/Makefile.in", - "gfx/qcms/Makefile.in", - "gfx/qcms/iccread.c", - "gfx/qcms/qcms.h", - "gfx/qcms/qcmsint.h", - "gfx/qcms/qcmstypes.h", - "gfx/qcms/transform.c", - "gfx/src/thebes/Makefile.in", - "gfx/thebes/public/gfxPlatform.h", - "gfx/thebes/public/gfxPlatformGtk.h", - "gfx/thebes/public/gfxPlatformMac.h", - "gfx/thebes/public/gfxQtPlatform.h", - "gfx/thebes/public/gfxWindowsPlatform.h", - "gfx/thebes/src/Makefile.in", - "gfx/thebes/src/gfxContext.cpp", - "gfx/thebes/src/gfxPattern.cpp", - "gfx/thebes/src/gfxPlatform.cpp", - "gfx/thebes/src/gfxPlatformGtk.cpp", - "gfx/thebes/src/gfxPlatformMac.cpp", - "gfx/thebes/src/gfxQtPlatform.cpp", - "gfx/thebes/src/gfxWindowsPlatform.cpp", - "gfx/thebes/test/Makefile.in", - "layout/base/Makefile.in", - "layout/mathml/Makefile.in", - "layout/svg/base/src/Makefile.in", - "modules/libpr0n/build/Makefile.in", - "modules/libpr0n/decoders/gif/Makefile.in", - "modules/libpr0n/decoders/gif/nsGIFDecoder2.cpp", - "modules/libpr0n/decoders/jpeg/Makefile.in", - "modules/libpr0n/decoders/jpeg/nsJPEGDecoder.cpp", - "modules/libpr0n/decoders/jpeg/nsJPEGDecoder.h", - "modules/libpr0n/decoders/png/Makefile.in", - "modules/libpr0n/decoders/png/nsPNGDecoder.cpp", - "modules/libpr0n/decoders/png/nsPNGDecoder.h", - "modules/libpr0n/test/reftest/pngsuite-ancillary/ccwn2c08.html", - "modules/libpr0n/test/reftest/pngsuite-ancillary/ccwn3p08.html", - "toolkit/library/libxul-rules.mk", - "toolkit/toolkit-makefiles.sh", - "toolkit/toolkit-tiers.mk", - "widget/src/build/Makefile.in", - "widget/src/cocoa/Makefile.in", - "widget/src/cocoa/nsCocoaWindow.mm", - "widget/src/gtk2/Makefile.in", - "widget/src/os2/Makefile.in", - "widget/src/qt/Makefile.in", - "widget/src/windows/Makefile.in", - "widget/src/xpwidgets/Makefile.in", - "widget/src/xpwidgets/nsXPLookAndFeel.cpp" - ], - "components": [ - "Core::Graphics", - "Firefox Build System::General" - ], - "directories": [ - "content/canvas", - "widget", - "toolkit", - "modules/libpr0n", - "config", - "gfx/thebes", - "layout/mathml", - "layout/svg", - "gfx/qcms", - "content", - "widget/src", - "toolkit/library", - "gfx/src", - "gfx", - "layout", - "layout/base", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "a55a5e3c4276ff60142187e0e6c230032323337c", - "author": "Andreas Gal ", - "bug_id": 484693, - "desc": "Backed out changeset b512be855093 (bug 484693). See bug for details.", - "pushdate": "2009-04-06 01:25:14", - "backsout": [ - "b512be855093b30f1a232035e856387964dc13c4" - ], - "backedoutby": "", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 23981636.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jscntxt.h", - "js/src/jstracer.cpp", - "js/src/jstracer.h" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "6eca563de031cb584b8a86fdd74238c3357fd198", - "author": "Jason Orendorff ", - "bug_id": 484693, - "desc": "Backout changeset 143e997c858e (bug 484693) because it caused crashes on Mac tinderboxen.", - "pushdate": "2009-04-08 04:43:16", - "backsout": [ - "143e997c858e116553451c2b7566d1679db3bccb" - ], - "backedoutby": "", - "author_email": "jorendorff@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 27070325.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jscntxt.h", - "js/src/jstracer.cpp", - "js/src/jstracer.h", - "js/src/trace-test.js" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "3c7cd3a8f785ec9a09fb4b5244f1c095f26c6fc1", - "author": "Boris Zbarsky ", - "bug_id": 484448, - "desc": "Backed out changeset 0ea22856b5d9 (bug 484448).", - "pushdate": "2009-04-08 19:58:02", - "backsout": [ - "0ea22856b5d9e25e2b687e3fb6f3da557274f42a" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 23665990.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/base/src/nsGenericDOMDataNode.cpp", - "content/base/src/nsGenericDOMDataNode.h", - "layout/base/nsCSSFrameConstructor.cpp", - "layout/base/nsCSSFrameConstructor.h", - "layout/generic/nsTextFrameThebes.cpp", - "layout/mathml/nsMathMLmtableFrame.h", - "layout/reftests/table-anonymous-boxes/3-blocks-ref.html", - "layout/reftests/table-anonymous-boxes/3-tables-ref.html", - "layout/reftests/table-anonymous-boxes/372641-1-ref.xhtml", - "layout/reftests/table-anonymous-boxes/372641-1a.xhtml", - "layout/reftests/table-anonymous-boxes/372641-1b.xhtml", - "layout/reftests/table-anonymous-boxes/372641-1c.xhtml", - "layout/reftests/table-anonymous-boxes/3x3-cols-ref.html", - "layout/reftests/table-anonymous-boxes/3x3-ref.html", - "layout/reftests/table-anonymous-boxes/dynamic-removal-14.html", - "layout/reftests/table-anonymous-boxes/infer-cells-1.html", - "layout/reftests/table-anonymous-boxes/reftest.list", - "layout/reftests/table-anonymous-boxes/white-space-1-ref.html", - "layout/reftests/table-anonymous-boxes/white-space-1.html", - "layout/reftests/table-anonymous-boxes/white-space-10.html", - "layout/reftests/table-anonymous-boxes/white-space-11.html", - "layout/reftests/table-anonymous-boxes/white-space-12.html", - "layout/reftests/table-anonymous-boxes/white-space-13.html", - "layout/reftests/table-anonymous-boxes/white-space-14.html", - "layout/reftests/table-anonymous-boxes/white-space-15.html", - "layout/reftests/table-anonymous-boxes/white-space-16.html", - "layout/reftests/table-anonymous-boxes/white-space-17.html", - "layout/reftests/table-anonymous-boxes/white-space-18.html", - "layout/reftests/table-anonymous-boxes/white-space-19.html", - "layout/reftests/table-anonymous-boxes/white-space-2.html", - "layout/reftests/table-anonymous-boxes/white-space-20.html", - "layout/reftests/table-anonymous-boxes/white-space-21.html", - "layout/reftests/table-anonymous-boxes/white-space-22.html", - "layout/reftests/table-anonymous-boxes/white-space-23.html", - "layout/reftests/table-anonymous-boxes/white-space-24.html", - "layout/reftests/table-anonymous-boxes/white-space-25.html", - "layout/reftests/table-anonymous-boxes/white-space-26.html", - "layout/reftests/table-anonymous-boxes/white-space-3.html", - "layout/reftests/table-anonymous-boxes/white-space-4.html", - "layout/reftests/table-anonymous-boxes/white-space-5.html", - "layout/reftests/table-anonymous-boxes/white-space-6.html", - "layout/reftests/table-anonymous-boxes/white-space-7.html", - "layout/reftests/table-anonymous-boxes/white-space-8.html", - "layout/reftests/table-anonymous-boxes/white-space-9.html", - "layout/reftests/table-anonymous-boxes/white-space-pre-1.html", - "layout/reftests/table-anonymous-boxes/white-space-pre-ref.html", - "layout/reftests/table-anonymous-boxes/white-space-ref.html", - "layout/tables/nsTableColFrame.h", - "layout/tables/nsTableColGroupFrame.h", - "layout/tables/nsTableFrame.h", - "layout/tables/nsTableOuterFrame.h", - "layout/tables/nsTableRowFrame.h", - "layout/tables/nsTableRowGroupFrame.h" - ], - "components": [ - "Core::Layout", - "Core::Layout: Tables", - "Core::MathML" - ], - "directories": [ - "layout/generic", - "layout/tables", - "layout/mathml", - "content/base", - "content", - "layout/reftests", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "f12b13dbd0530765cb71c97e5c80a1da2af14038", - "author": "Boris Zbarsky ", - "bug_id": 483552, - "desc": "Backed out changeset 510bd328a29d (bug 483552) due to landing on orange tree.", - "pushdate": "2009-04-09 16:04:18", - "backsout": [ - "510bd328a29d5025f7137d9f03506a41e693bc42" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 23738366.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/content/widgets/scrollbox.xml" - ], - "components": [], - "directories": [ - "toolkit/content", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "781e16e5112d9d75ea5c5045c35d27ed20c462ba", - "author": "Boris Zbarsky ", - "bug_id": 486933, - "desc": "Backed out changeset 86c8e18f20eb (bug 486933) due to landing on orange tree.", - "pushdate": "2009-04-09 16:04:18", - "backsout": [ - "86c8e18f20eb21fd20cd63e7fbb69203365a900d" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 23738366.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/base/nsCSSRendering.cpp", - "layout/base/nsCSSRendering.h", - "layout/base/nsLayoutUtils.cpp", - "layout/reftests/image/reftest.list" - ], - "components": [ - "Core::Layout", - "Core::Layout: Images, Video, and HTML Frames" - ], - "directories": [ - "layout/reftests", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "a3185147886829944da575f05300b2f5599db234", - "author": "Boris Zbarsky ", - "bug_id": 485563, - "desc": "Backed out changeset 0233d2bb8a07 (bug 485563) on suspicion of causing intermittent leak orange.", - "pushdate": "2009-04-09 16:04:18", - "backsout": [ - "0233d2bb8a0787ca9e26180f8ec0258ee5b5a050" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 23738366.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/components/sessionstore/src/nsSessionStore.js", - "browser/components/sessionstore/test/browser/Makefile.in", - "browser/components/sessionstore/test/browser/browser_485563.js" - ], - "components": [], - "directories": [ - "browser/components", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "2d6fa1ee649a41e608968c51ff46c2a002ef1d23", - "author": "Boris Zbarsky ", - "bug_id": 419612, - "desc": "Backed out changeset 17abd3beeabf (bug 419612) on suspicion of causing intermittent leak orange.", - "pushdate": "2009-04-09 16:04:18", - "backsout": [ - "17abd3beeabfc5a00a44e5f2157017300c94920b" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 23738366.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/base/content/test/Makefile.in", - "browser/base/content/test/browser_bug419612.js" - ], - "components": [], - "directories": [ - "browser/base", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "1a29fad0c1bbab453c89bf79dec70018e96eff0a", - "author": "Boris Zbarsky ", - "bug_id": 481598, - "desc": "Backed out changeset b1237eca3670 (bug 481598) on suspicion of causing intermittent leak orange.", - "pushdate": "2009-04-09 16:04:18", - "backsout": [ - "b1237eca36703defb4b7b1e3a42b843b523b4dfc" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 23738366.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/components/privatebrowsing/src/nsPrivateBrowsingService.js" - ], - "components": [], - "directories": [ - "browser/components", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "fca91e13946daba978e4a7f5d394abbfac8aeec3", - "author": "Boris Zbarsky ", - "bug_id": 486821, - "desc": "Backed out changeset 716fc2e4f7d3 (bug 486821) on suspicion of causing intermittent leak orange.", - "pushdate": "2009-04-09 16:04:18", - "backsout": [ - "716fc2e4f7d393f1f54a7602485549600beb128e" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 23738366.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/content/widgets/autocomplete.xml", - "toolkit/content/widgets/richlistbox.xml" - ], - "components": [], - "directories": [ - "toolkit/content", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "686e89bbc76494c130f48b5fb11cbabd9b6c3ae4", - "author": "Boris Zbarsky ", - "bug_id": 473732, - "desc": "Backed out changeset 50940a1eb1e9 (bug 473732) because it causes Linux unit\ntest orange.", - "pushdate": "2009-04-09 18:48:24", - "backsout": [ - "50940a1eb1e93bb1c788e79959bb5478ca62becd" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 23748212.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "accessible/src/base/nsARIAMap.cpp", - "accessible/src/base/nsARIAMap.h", - "accessible/src/base/nsAccUtils.cpp", - "accessible/src/base/nsAccessible.cpp", - "accessible/tests/mochitest/Makefile.in", - "accessible/tests/mochitest/test_actions_aria.html", - "accessible/tests/mochitest/test_actions_doc.html", - "accessible/tests/mochitest/test_nsIAccessibleDocument.html" - ], - "components": [ - "Core::Disability Access APIs" - ], - "directories": [ - "accessible/src", - "accessible", - "accessible/tests" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "c0542ed38b98aebddcfdc1ee39bbd6774cfeb04e", - "author": "Justin Dolske ", - "bug_id": 487719, - "desc": "Backed out changeset dde29bfff639 (bug 487719)", - "pushdate": "2009-04-13 08:30:54", - "backsout": [ - "dde29bfff639502f81f585b3f83c584343132a81" - ], - "backedoutby": "", - "author_email": "dolske@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 25967098.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/content/widgets/videocontrols.xml" - ], - "components": [], - "directories": [ - "toolkit/content", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "86fdfc20dccb81d978f338c850e5a028aad4e850", - "author": "Justin Dolske ", - "bug_id": 475317, - "desc": "Backed out changeset dddef115ddd2 (bug 475317)", - "pushdate": "2009-04-13 08:30:54", - "backsout": [ - "dddef115ddd26123f998caf97afc9affd635f8ce" - ], - "backedoutby": "", - "author_email": "dolske@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 25967098.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/content/widgets/videocontrols.css", - "toolkit/content/widgets/videocontrols.xml", - "toolkit/themes/pinstripe/global/jar.mn", - "toolkit/themes/pinstripe/global/media/videocontrols.css", - "toolkit/themes/pinstripe/global/media/volumeThumb.png", - "toolkit/themes/winstripe/global/jar.mn", - "toolkit/themes/winstripe/global/media/videocontrols.css", - "toolkit/themes/winstripe/global/media/volumeThumb.png" - ], - "components": [], - "directories": [ - "toolkit/content", - "toolkit", - "toolkit/themes" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "f82e3ab11e63ed737b47fcdc7ec9369931e4cb10", - "author": "Justin Dolske ", - "bug_id": 475318, - "desc": "Backed out changeset 1e38c7369a3d (bug 475318)", - "pushdate": "2009-04-13 08:30:54", - "backsout": [ - "1e38c7369a3d5d36b494f8827758fe0d1c34ef9f" - ], - "backedoutby": "", - "author_email": "dolske@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 25967098.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/content/tests/widgets/test_videocontrols.html", - "toolkit/content/widgets/videocontrols.css", - "toolkit/content/widgets/videocontrols.xml", - "toolkit/themes/pinstripe/global/jar.mn", - "toolkit/themes/pinstripe/global/media/scrubberThumb.png", - "toolkit/themes/pinstripe/global/media/scrubberThumbWide.png", - "toolkit/themes/pinstripe/global/media/videocontrols.css", - "toolkit/themes/winstripe/global/jar.mn", - "toolkit/themes/winstripe/global/media/scrubberThumb.png", - "toolkit/themes/winstripe/global/media/scrubberThumbWide.png", - "toolkit/themes/winstripe/global/media/videocontrols.css" - ], - "components": [ - "Toolkit::Video/Audio Controls" - ], - "directories": [ - "toolkit/content", - "toolkit", - "toolkit/themes" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "e9a0a746f0fa37a354e71dc69d4810d49e736b1f", - "author": "Boris Zbarsky ", - "bug_id": 477014, - "desc": "Backed out changeset 524ab31ef073 (bug 477014) in an attempt to fix the unit test orange on Mac.", - "pushdate": "2009-04-13 19:35:35", - "backsout": [ - "524ab31ef073f6c265a2e8b6657794bae66619e1" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 24096643.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/base/content/tabbrowser.xml", - "browser/base/content/test/Makefile.in", - "browser/base/content/test/browser_bug477014.js", - "toolkit/content/widgets/browser.xml" - ], - "components": [], - "directories": [ - "browser/base", - "toolkit", - "browser", - "toolkit/content" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "d7567548bc8f4af71f62079afafb1e00f20c5405", - "author": "Boris Zbarsky ", - "bug_id": 487631, - "desc": "Backed out changeset 05fd6a9c8ff7 (bug 487631) on suspicion of causing Windows unit test orange in CLOSED TREE.", - "pushdate": "2009-04-13 21:50:07", - "backsout": [ - "05fd6a9c8ff7172fec210ebf36518785cc9853f0" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 24104715.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/content/tests/chrome/Makefile.in", - "toolkit/content/tests/chrome/window_largemenu.xul", - "toolkit/content/tests/widgets/Makefile.in", - "toolkit/content/tests/widgets/test_contextmenu_list.xul", - "toolkit/content/tests/widgets/test_popupincontent.xul" - ], - "components": [], - "directories": [ - "toolkit/content", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "1e9079e22c18aadb40ebe1eba26c2cbf531bcfc2", - "author": "Andreas Gal ", - "bug_id": 487845, - "desc": "Backed out changeset 4c157cfe2289 (bug 487845).", - "pushdate": "2009-04-15 21:40:40", - "backsout": [ - "4c157cfe22891e402bbbdac575c1483713e97200" - ], - "backedoutby": "", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 24832162.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jscntxt.h", - "js/src/jstracer.cpp", - "js/src/jstracer.h", - "js/src/trace-test.js" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "c221393049dcc32dfa4a15f763372da262a6f888", - "author": "Igor Bukanov ", - "bug_id": 480301, - "desc": "Backed out changeset f97f196dcb58 - bug 480301 needs more work", - "pushdate": "2009-04-16 00:13:30", - "backsout": [ - "f97f196dcb58542c4f2e242b0fa525e7f4242214" - ], - "backedoutby": "", - "author_email": "igor@mir2.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 26015911.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsapi.cpp", - "js/src/jsgc.cpp", - "js/src/jslock.cpp" - ], - "components": [ - "Core::JavaScript Engine" - ], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "64d7df1fe160a1e8f595e1d936c179699eba21ce", - "author": "Andreas Gal ", - "bug_id": 488203, - "desc": "Backed out changeset e8c23c42db7f (bug 488203) to see whether it causes the leak.", - "pushdate": "2009-04-18 15:37:12", - "backsout": [ - "e8c23c42db7f0165c370b45094780502d5d66936" - ], - "backedoutby": "062ea62f9bda22be55d94c71dc98e780d91342e6", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 25069554.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsinterp.cpp", - "js/src/jsinterp.h", - "js/src/jstracer.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "062ea62f9bda22be55d94c71dc98e780d91342e6", - "author": "Andreas Gal ", - "bug_id": 488203, - "desc": "Backed out changeset 64d7df1fe160 (re-landing 488203).", - "pushdate": "2009-04-18 15:37:12", - "backsout": [ - "64d7df1fe160a1e8f595e1d936c179699eba21ce" - ], - "backedoutby": "4273c0708552544e8a0317e84c02e515b0a02476", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 25069554.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsinterp.cpp", - "js/src/jsinterp.h", - "js/src/jstracer.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "4273c0708552544e8a0317e84c02e515b0a02476", - "author": "Andreas Gal ", - "bug_id": 488203, - "desc": "Backed out changeset 062ea62f9bda (backed out bug 488203 again).", - "pushdate": "2009-04-18 15:37:12", - "backsout": [ - "062ea62f9bda22be55d94c71dc98e780d91342e6" - ], - "backedoutby": "", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 25069554.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsinterp.cpp", - "js/src/jsinterp.h", - "js/src/jstracer.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "5bd1161481752fa00ec6154dddf36fa239dd0dcc", - "author": "Andreas Gal ", - "bug_id": 487204, - "desc": "Backed out changeset d1a4ee3d0c59 (bug 487204, due to possible leak).", - "pushdate": "2009-04-18 15:37:12", - "backsout": [ - "d1a4ee3d0c595c2697bd586697d399d337e09c2a" - ], - "backedoutby": "324bb9dc8372bc9353711fffa97ecaa9c61eef31", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 25069554.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsarray.cpp", - "js/src/jsbuiltins.cpp", - "js/src/jsinterp.cpp", - "js/src/jsinterp.h", - "js/src/jsobj.cpp", - "js/src/jsobj.h", - "js/src/jsscope.cpp", - "js/src/jsscope.h", - "js/src/jstracer.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "324bb9dc8372bc9353711fffa97ecaa9c61eef31", - "author": "Andreas Gal ", - "bug_id": 487204, - "desc": "Backed out changeset 5bd116148175 (attempting to re-land bug 487204).", - "pushdate": "2009-04-18 15:37:12", - "backsout": [ - "5bd1161481752fa00ec6154dddf36fa239dd0dcc" - ], - "backedoutby": "9c63c15b92b5b606f14fc7b07f51d9edf91cd6bd", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 25069554.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsarray.cpp", - "js/src/jsbuiltins.cpp", - "js/src/jsinterp.cpp", - "js/src/jsinterp.h", - "js/src/jsobj.cpp", - "js/src/jsobj.h", - "js/src/jsscope.cpp", - "js/src/jsscope.h", - "js/src/jstracer.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "9c63c15b92b5b606f14fc7b07f51d9edf91cd6bd", - "author": "Andreas Gal ", - "bug_id": 487204, - "desc": "Backed out changeset 324bb9dc8372 (bug 487204 is implicated in top site failures).", - "pushdate": "2009-04-18 15:37:12", - "backsout": [ - "324bb9dc8372bc9353711fffa97ecaa9c61eef31" - ], - "backedoutby": "", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 25069554.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsarray.cpp", - "js/src/jsbuiltins.cpp", - "js/src/jsinterp.cpp", - "js/src/jsinterp.h", - "js/src/jsobj.cpp", - "js/src/jsobj.h", - "js/src/jsscope.cpp", - "js/src/jsscope.h", - "js/src/jstracer.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "c0a409243f7b5262a069d05a91a70f160c4e55c8", - "author": "Igor Bukanov ", - "bug_id": 488414, - "desc": "Backed out changeset f4662701526b (bug 488414) to fix !JS_THREADSAFE compilation errors", - "pushdate": "2009-04-20 18:44:02", - "backsout": [ - "f4662701526b6c7d3402fdd8021b576a295218ec" - ], - "backedoutby": "", - "author_email": "igor@mir2.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 26428143.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsapi.cpp", - "js/src/jsbuiltins.cpp", - "js/src/jscntxt.cpp", - "js/src/jscntxt.h", - "js/src/jsgc.cpp", - "js/src/jsgc.h", - "js/src/jsinterp.cpp", - "js/src/jsinterp.h", - "js/src/jsobj.cpp", - "js/src/jsscope.cpp", - "js/src/jsscope.h" - ], - "components": [ - "Core::JavaScript Engine" - ], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "f58de2414f51ac92548b9b52e2ee85abc9b35456", - "author": "Joe Drew ", - "bug_id": 67752, - "desc": "Backed out changeset 6a452e522e07 - Boris Zbarsky \u2013 Bug 67752. Implement interruptible reflow. r=roc,dbaron - because of apparent Tp hangs.", - "pushdate": "2009-04-22 03:13:36", - "backsout": [ - "6a452e522e0775c1993c41085fb2851acd3aaf5b" - ], - "backedoutby": "", - "author_email": "joe@drew.ca", - "reviewers": [ - "dbaron", - "roc" - ], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 21236144.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/base/public/mozFlushType.h", - "content/base/src/nsDocument.cpp", - "content/events/src/nsEventStateManager.cpp", - "content/html/content/src/nsGenericHTMLElement.cpp", - "content/html/document/src/nsHTMLContentSink.cpp", - "content/xml/document/src/nsXMLContentSink.cpp", - "layout/base/nsIPresShell.h", - "layout/base/nsPresContext.cpp", - "layout/base/nsPresContext.h", - "layout/base/nsPresShell.cpp", - "layout/generic/nsAbsoluteContainingBlock.cpp", - "layout/generic/nsAbsoluteContainingBlock.h", - "layout/generic/nsBlockFrame.cpp", - "layout/generic/nsBlockFrame.h", - "layout/generic/nsColumnSetFrame.cpp", - "layout/generic/nsGfxScrollFrame.cpp", - "layout/generic/nsLineLayout.cpp", - "layout/reftests/bugs/67752-1-ref.html", - "layout/reftests/bugs/67752-1.html", - "layout/reftests/bugs/67752-2-ref.html", - "layout/reftests/bugs/67752-2.html", - "layout/reftests/bugs/reftest.list", - "layout/svg/base/src/nsSVGForeignObjectFrame.cpp", - "widget/public/nsIWidget.h", - "widget/src/cocoa/nsAppShell.mm", - "widget/src/cocoa/nsChildView.h", - "widget/src/cocoa/nsChildView.mm", - "widget/src/cocoa/nsCocoaWindow.h", - "widget/src/cocoa/nsCocoaWindow.mm", - "widget/src/gtk2/nsWindow.cpp", - "widget/src/gtk2/nsWindow.h", - "widget/src/os2/nsWindow.cpp", - "widget/src/os2/nsWindow.h", - "widget/src/windows/nsWindow.cpp", - "widget/src/windows/nsWindow.h", - "widget/src/xpwidgets/nsBaseWidget.cpp", - "widget/src/xpwidgets/nsBaseWidget.h" - ], - "components": [ - "Core::Layout: Columns", - "Core::Layout: Block and Inline", - "Core::Layout", - "Core::Layout: Scrolling and Overflow", - "Core::Layout: Positioned" - ], - "directories": [ - "widget", - "layout/generic", - "layout/svg", - "content/base", - "content", - "widget/public", - "widget/src", - "content/html", - "content/xml", - "layout", - "layout/base", - "content/events", - "layout/reftests" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "1a1611bb10630cda771042ef8089b7b6060c3f55", - "author": "Ehsan Akhgari ", - "bug_id": 489585, - "desc": "Backed out changeset 88f76db49467 (bug 489585) due to test failures on OS X", - "pushdate": "2009-04-23 07:16:09", - "backsout": [ - "88f76db49467b87ce93ed43653b5855d19e6bcc9" - ], - "backedoutby": "", - "author_email": "ehsan.akhgari@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 24662635.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "netwerk/test/unit/test_bug248970_cache.js" - ], - "components": [ - "Core::Networking" - ], - "directories": [ - "netwerk/test", - "netwerk" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "a0e5385d86c43e251b192f74e88de4b35753172f", - "author": "D\u00e3o Gottwald ", - "bug_id": 487250, - "desc": "Backed out changeset 69f84bd26700 (bug 487250) to fix browser_privatebrowsing_searchbar.js failure", - "pushdate": "2009-04-23 09:48:27", - "backsout": [ - "69f84bd267008c385528fcb71c8fa9c842d6bde6" - ], - "backedoutby": "", - "author_email": "dao@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 27286570.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/base/content/browser.css", - "browser/themes/pinstripe/browser/browser.css", - "browser/themes/pinstripe/browser/searchbar.css", - "toolkit/content/tests/widgets/test_textbox_emptytext.xul", - "toolkit/content/textbox.css", - "toolkit/content/widgets/textbox.xml", - "toolkit/themes/gnomestripe/global/textbox.css", - "toolkit/themes/pinstripe/global/textbox.css", - "toolkit/themes/winstripe/global/textbox-aero.css", - "toolkit/themes/winstripe/global/textbox.css" - ], - "components": [ - "Firefox::General" - ], - "directories": [ - "browser/base", - "toolkit/content", - "toolkit", - "browser/themes", - "browser", - "toolkit/themes" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "0cb354f894d1ca1c72edf04893250e2d2513021c", - "author": "Ehsan Akhgari ", - "bug_id": 490879, - "desc": "Backout revision 12536e9936b2 (bug 490879) because of unknown potential problems for Thunderbird 3.next", - "pushdate": "2009-05-03 18:02:56", - "backsout": [ - "12536e9936b2c43538eb5803937d5314ec3c4cf8" - ], - "backedoutby": "", - "author_email": "ehsan.akhgari@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 25565442.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "editor/libeditor/html/nsHTMLDataTransfer.cpp", - "editor/libeditor/html/tests/Makefile.in", - "editor/libeditor/html/tests/green.png", - "editor/libeditor/html/tests/test_bug490879.xul" - ], - "components": [], - "directories": [ - "editor/libeditor", - "editor" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "38512deaca7e5ca4fcd39ca9c60f2640fa3ad773", - "author": "Andreas Gal ", - "bug_id": 491013, - "desc": "Backed out changeset 6534f8b9aa74 (bug 491013, assert on startup).", - "pushdate": "2009-05-05 18:41:02", - "backsout": [ - "6534f8b9aa74ba67ee31dc87e5250eeeb3c185aa" - ], - "backedoutby": "", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 26549384.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsapi.cpp", - "js/src/jsfun.cpp", - "js/src/jsfun.h", - "js/src/jsinterp.cpp", - "js/src/jsobj.cpp", - "js/src/jsobj.h", - "js/src/jsproto.tbl", - "js/src/jsregexp.cpp", - "js/src/jsregexp.h", - "js/src/jsscope.cpp", - "js/src/jsscript.cpp", - "js/src/jsxdrapi.h", - "js/src/jsxml.cpp", - "js/src/jsxml.h" - ], - "components": [ - "Core::JavaScript Engine" - ], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "f2151b06463e21d8546b27ffaf382a68c6314251", - "author": "Josh Aas ", - "bug_id": 491834, - "desc": "Backed out changeset 7df4317278f5, bug 491834.", - "pushdate": "2009-05-07 13:25:33", - "backsout": [ - "7df4317278f56284fa394c0681a542f74275ce3c" - ], - "backedoutby": "", - "author_email": "joshmoz@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 27162294.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "modules/plugin/base/src/nsPluginDirServiceProvider.cpp", - "modules/plugin/base/src/nsPluginHostImpl.cpp", - "modules/plugin/base/src/nsPluginHostImpl.h" - ], - "components": [], - "directories": [ - "modules/plugin", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "d525ab89ac0229543a0c14d0cfe1bd1ead465090", - "author": "Josh Aas ", - "bug_id": 480080, - "desc": "Backed out changeset 9f9b05760fff, bug 480080, to see if it fixes orange", - "pushdate": "2009-05-08 17:43:16", - "backsout": [ - "9f9b05760fffaf3a5ec11c1ad4fd51514a4e7aa3" - ], - "backedoutby": "", - "author_email": "joshmoz@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 27264157.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/components/viewsource/content/viewSource.js" - ], - "components": [], - "directories": [ - "toolkit/components", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "c60c37d487cae83cbcbb7db59b1b867d6eba27e2", - "author": "Shawn Wilsher ", - "bug_id": 490833, - "desc": "Backed out changeset b6f09258a505 (bug 490833).", - "pushdate": "2009-05-09 02:58:20", - "backsout": [ - "b6f09258a505f54e81d64221d35b096d68e7a844" - ], - "backedoutby": "", - "author_email": "me@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 14017201.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "storage/public/mozIStorageStatement.idl", - "storage/src/mozStorageStatement.cpp", - "storage/src/mozStorageStatementParams.cpp", - "storage/test/unit/test_storage_statement.js" - ], - "components": [ - "Toolkit::Storage" - ], - "directories": [ - "storage/src", - "storage", - "storage/test", - "storage/public" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "88df6943633f8f75d3df5460ae720d860f4307a1", - "author": "Steven Michaud ", - "bug_id": 489864, - "desc": "Backed out changeset add33a95e3ef to fix talos crashes. b=489864", - "pushdate": "2009-05-11 20:41:08", - "backsout": [ - "add33a95e3ef643243db7d287251cacbadecf515" - ], - "backedoutby": "", - "author_email": "smichaud@pobox.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 27487690.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "docshell/build/nsDocShellModule.cpp", - "modules/libpr0n/decoders/icon/mac/nsIconChannelCocoa.mm", - "netwerk/mime/public/nsIMIMEInfo.idl", - "uriloader/exthandler/Makefile.in", - "uriloader/exthandler/mac/nsInternetConfig.h", - "uriloader/exthandler/mac/nsInternetConfig.mm", - "uriloader/exthandler/mac/nsInternetConfigService.h", - "uriloader/exthandler/mac/nsInternetConfigService.mm", - "uriloader/exthandler/mac/nsMIMEInfoMac.mm", - "uriloader/exthandler/mac/nsOSHelperAppService.h", - "uriloader/exthandler/mac/nsOSHelperAppService.mm", - "uriloader/exthandler/nsExternalHelperAppService.cpp", - "uriloader/exthandler/nsIInternetConfigService.idl", - "uriloader/exthandler/nsMIMEInfoImpl.cpp", - "uriloader/exthandler/nsMIMEInfoImpl.h", - "widget/src/cocoa/nsLookAndFeel.mm" - ], - "components": [ - "Firefox::File Handling", - "Core::DOM: Navigation" - ], - "directories": [ - "widget", - "netwerk", - "modules/libpr0n", - "docshell", - "netwerk/mime", - "widget/src", - "uriloader", - "uriloader/exthandler", - "docshell/build", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "29692abf4c295b6018f546a3a68e6309bf57cafd", - "author": "Jonas Sicking ", - "bug_id": 492037, - "desc": "Backed out changeset 888aff8f57d2. Bug 492037", - "pushdate": "2009-05-13 00:05:00", - "backsout": [ - "888aff8f57d2309ea008b3aa86f865f4a1775948" - ], - "backedoutby": "", - "author_email": "jonas@sicking.cc", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 24283315.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/xul/templates/src/crashtests/441785-1.xul", - "content/xul/templates/src/nsXULTreeBuilder.cpp" - ], - "components": [], - "directories": [ - "content/xul", - "content" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "9a308a1a5a9436005c74d7209fbe1e84dc836283", - "author": "Andreas Gal ", - "bug_id": 492664, - "desc": "Backed out changeset c8a74fe0f9af (bug 492664).", - "pushdate": "2009-05-13 03:21:33", - "backsout": [ - "c8a74fe0f9af820db21be004f0aaabea1c085b8b" - ], - "backedoutby": "", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 27185415.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jstracer.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "3415a6e08696e5c501a8dc98e69cae825c33247d", - "author": "Peter Van der Beken ", - "bug_id": 492483, - "desc": "Backed out changeset 3e3d2d8cc70f (bug 492483 - fixing !JS_THREADSAFE build failure.) to try to fix Tshutdown regression.", - "pushdate": "2009-05-15 14:40:55", - "backsout": [ - "3e3d2d8cc70f30d55765cf414c69977ec1c2f266" - ], - "backedoutby": "", - "author_email": "peterv@propagandism.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 28334282.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jscntxt.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "0f55d91d7724eccced6bc37570f08ec59c6c7ec0", - "author": "Peter Van der Beken ", - "bug_id": 490592, - "desc": "Backed out changeset 5e867032abe5 (Fix for bug 490592 (Possible to GC way too much during shutdown due to XUL and XBL prototypes).) to try to fix Tshutdown regression.", - "pushdate": "2009-05-15 14:40:55", - "backsout": [ - "5e867032abe58fde99cb01a689dc456eb47c98ea" - ], - "backedoutby": "", - "author_email": "peterv@propagandism.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 28334282.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/xbl/src/nsXBLDocumentInfo.cpp", - "content/xul/document/src/nsXULPrototypeDocument.cpp", - "dom/base/nsDOMScriptObjectFactory.cpp", - "js/src/xpconnect/loader/mozJSComponentLoader.cpp" - ], - "components": [], - "directories": [ - "js/src", - "dom/base", - "dom", - "content/xul", - "content", - "content/xbl", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "e720085bf9ba7617e54c9e64888e6fa91830268d", - "author": "Josh Aas ", - "bug_id": 488042, - "desc": "Backed out changeset 7ff6eeaad3d1, bug 488042", - "pushdate": "2009-05-16 06:06:11", - "backsout": [ - "7ff6eeaad3d16a34be7d2cf3a0cb685693fde65f" - ], - "backedoutby": "", - "author_email": "joshmoz@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 27913532.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "modules/plugin/base/src/nsPluginDirServiceProvider.cpp", - "modules/plugin/base/src/nsPluginHostImpl.cpp", - "modules/plugin/base/src/nsPluginHostImpl.h", - "modules/plugin/base/src/nsPluginsDirWin.cpp" - ], - "components": [], - "directories": [ - "modules/plugin", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "fb7f8956aff514c965cbe93b858369fe02d48cc9", - "author": "Peter Van der Beken ", - "bug_id": 475737, - "desc": "Backed out changeset 0c8d4f846be8 (Fix for bug 475737 (Windows stay alive too long because nsJSContext doesn't unlink correctly).) to try to fix Tshutdown regression.", - "pushdate": "2009-05-16 14:18:37", - "backsout": [ - "0c8d4f846be88e2b6c7c0ca131e51b4876c83bbd" - ], - "backedoutby": "", - "author_email": "peterv@propagandism.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 28419344.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "dom/base/nsJSEnvironment.cpp", - "dom/base/nsJSEnvironment.h", - "js/src/jscntxt.cpp", - "js/src/xpconnect/src/xpcjsruntime.cpp", - "xpcom/base/nsAgg.h", - "xpcom/glue/nsCycleCollectionParticipant.h" - ], - "components": [ - "Core::DOM: Core & HTML" - ], - "directories": [ - "xpcom/glue", - "js/src", - "xpcom/base", - "dom/base", - "dom", - "xpcom", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "6e86393b03ad1e2e801dfc1b26d81f39a3087f4e", - "author": "Josh Aas ", - "bug_id": 488181, - "desc": "Backed out changeset accd95d7ba9d. [OS/2] fix build break following bug 488181", - "pushdate": "2009-05-17 01:11:47", - "backsout": [ - "accd95d7ba9d1a85a2fbc2dfe3a0d8a3f9492018" - ], - "backedoutby": "", - "author_email": "joshmoz@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 27982268.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "modules/plugin/base/src/nsPluginsDirOS2.cpp" - ], - "components": [], - "directories": [ - "modules/plugin", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "687daa472dd409cc7a175a7cf8fbe5b056296734", - "author": "Josh Aas ", - "bug_id": 488181, - "desc": "Backed out changeset 7cd22106e8d9. Simplify code for exposing plugin file names vs. full path. b=488181", - "pushdate": "2009-05-17 01:11:47", - "backsout": [ - "7cd22106e8d9784eed2acc3c063f716ffaf2605e" - ], - "backedoutby": "", - "author_email": "joshmoz@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 27982268.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "dom/locales/en-US/chrome/plugins.properties", - "modules/plugin/base/src/nsPluginHostImpl.cpp", - "modules/plugin/base/src/nsPluginsDirBeOS.cpp", - "modules/plugin/base/src/nsPluginsDirOS2.cpp", - "modules/plugin/base/src/nsPluginsDirUnix.cpp", - "modules/plugin/base/src/nsPluginsDirWin.cpp", - "toolkit/content/plugins.html" - ], - "components": [], - "directories": [ - "toolkit/content", - "toolkit", - "modules/plugin", - "dom/locales", - "dom", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "e3b0b664e5ddfc425fd84409b6dc8678508a4487", - "author": "Shawn Wilsher ", - "bug_id": 486974, - "desc": "Backed out changeset d88e6b8fab83 (bug 486974) due to reftest parsing issues.", - "pushdate": "2009-05-18 16:32:46", - "backsout": [ - "d88e6b8fab83f1f7fbbec25484a74e10cefbac7f" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 30069935.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "gfx/thebes/crashtests/486974-1.html", - "gfx/thebes/crashtests/crashtests.list" - ], - "components": [], - "directories": [ - "gfx/thebes", - "gfx" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "6fecf8267e038e5e6709c46c8c37035539e1c220", - "author": "Shawn Wilsher ", - "bug_id": 493560, - "desc": "Backed out changeset 4480c18255f2 (bug 493560)", - "pushdate": "2009-05-19 20:47:31", - "backsout": [ - "4480c18255f27af5832ca804bec4dae58bdb8561" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 30171620.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "db/sqlite3/src/sqlite3.c", - "db/sqlite3/src/sqlite3.h" - ], - "components": [], - "directories": [ - "db/sqlite3", - "db" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "e54a1c608d8cb0e3a801b9928c6b8bb7b7080cca", - "author": "Shawn Wilsher ", - "bug_id": 493560, - "desc": "Backed out changeset dd3d70e5849e (bug 493560)", - "pushdate": "2009-05-19 20:47:31", - "backsout": [ - "dd3d70e5849edf509953ab09422c6f49fec969d8" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 30171620.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "configure.in", - "db/sqlite3/README.MOZILLA" - ], - "components": [], - "directories": [ - "db/sqlite3", - "db" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "c4cea7365f4e9199f0da846b74fee206d42b4c91", - "author": "Andreas Gal ", - "bug_id": 493657, - "desc": "Backed out changeset cec8ee353407 (bug 493657).", - "pushdate": "2009-05-20 16:22:49", - "backsout": [ - "cec8ee353407eb98805af87a926b19746139784b" - ], - "backedoutby": "8f6c242a75ffee31f467c7d81fea114d226a4fd8", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 27837091.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jstracer.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "8f6c242a75ffee31f467c7d81fea114d226a4fd8", - "author": "Andreas Gal ", - "bug_id": 493657, - "desc": "Backed out changeset c4cea7365f4e (re-landing 493657).", - "pushdate": "2009-05-20 16:22:49", - "backsout": [ - "c4cea7365f4e9199f0da846b74fee206d42b4c91" - ], - "backedoutby": "a18035c7c3d2016c4b347d5a6e4109f402125b80", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 27837091.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jstracer.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "a18035c7c3d2016c4b347d5a6e4109f402125b80", - "author": "Andreas Gal ", - "bug_id": 493657, - "desc": "Backed out changeset 8f6c242a75ff (backing out bug 493657 again).", - "pushdate": "2009-05-20 16:22:49", - "backsout": [ - "8f6c242a75ffee31f467c7d81fea114d226a4fd8" - ], - "backedoutby": "", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 27837091.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jstracer.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "288e71bdc98a83a5b891129aa9ef4bf329f53866", - "author": "L. David Baron ", - "bug_id": 480205, - "desc": "Backed out changeset 1abeb6c87131 (Bug 480205 - Implement a wrapper for exposing chrome objects to content (aka COWs)) due to mochitest failures and leaks.", - "pushdate": "2009-05-21 10:58:20", - "backsout": [ - "1abeb6c87131ef99f9a4b84ff3d0c6ddb3ba1e2a" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 32112021.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/components/feeds/src/FeedWriter.js", - "dom/base/nsDOMClassInfo.cpp", - "dom/base/nsDOMClassInfo.h", - "js/src/xpconnect/idl/nsIXPConnect.idl", - "js/src/xpconnect/src/Makefile.in", - "js/src/xpconnect/src/XPCChromeObjectWrapper.cpp", - "js/src/xpconnect/src/XPCWrapper.h", - "js/src/xpconnect/src/nsXPConnect.cpp", - "js/src/xpconnect/src/xpcconvert.cpp", - "js/src/xpconnect/src/xpcjsruntime.cpp", - "js/src/xpconnect/src/xpcprivate.h", - "js/src/xpconnect/src/xpcwrappednative.cpp" - ], - "components": [], - "directories": [ - "js/src", - "dom/base", - "browser/components", - "dom", - "browser", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "10908cb7ea5b38e13b19eb0f1d71cdc713054d4d", - "author": "Benjamin Smedberg ", - "bug_id": 326628, - "desc": "Backed out changeset eea9639048b8, bug 326628 main patch, due to regression bug 494899", - "pushdate": "2009-05-27 13:28:12", - "backsout": [ - "eea9639048b867e81504e14b46515a1f07bfaef9" - ], - "backedoutby": "", - "author_email": "benjamin@smedbergs.us", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 37399128.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "dom/base/nsDOMClassInfo.cpp", - "dom/base/nsDOMClassInfoID.h", - "dom/base/nsGlobalWindow.cpp", - "dom/base/nsGlobalWindow.h", - "dom/interfaces/base/Makefile.in", - "dom/interfaces/base/nsIDOMPkcs11.idl", - "security/manager/ssl/public/Makefile.in", - "security/manager/ssl/public/nsIPKCS11.idl", - "security/manager/ssl/src/nsCrypto.cpp", - "security/manager/ssl/src/nsCrypto.h" - ], - "components": [], - "directories": [ - "dom/interfaces", - "security", - "dom/base", - "dom", - "security/manager" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "4156a420a7325be68b97f67bf1d7b3fdb07bdc07", - "author": "Benjamin Smedberg ", - "bug_id": 326628, - "desc": "Backed out changeset 1aaacee9b2d0, bug 326628 string removal due to regression bug 494899", - "pushdate": "2009-05-27 13:28:12", - "backsout": [ - "1aaacee9b2d0b18915088807125c0103767c358b" - ], - "backedoutby": "", - "author_email": "benjamin@smedbergs.us", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 37399128.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "security/manager/locales/en-US/chrome/pipnss/pipnss.properties" - ], - "components": [ - "Core::Security: PSM" - ], - "directories": [ - "security/manager", - "security" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "a0154ac712c96a49c13a43bae52c8fa00dc75aa4", - "author": "Benjamin Smedberg ", - "bug_id": 487980, - "desc": "Backed out changeset c41b9f3a9d83 - bug 487980 due to backing out 326628, due to regression bug 494899", - "pushdate": "2009-05-27 13:28:12", - "backsout": [ - "c41b9f3a9d83a8f9194b5103f22454642e46cf21" - ], - "backedoutby": "", - "author_email": "benjamin@smedbergs.us", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 37399128.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "dom/base/nsGlobalWindow.cpp", - "dom/interfaces/base/domstubs.idl", - "dom/interfaces/base/nsIDOMWindowInternal.idl" - ], - "components": [ - "Core::DOM: Core & HTML" - ], - "directories": [ - "dom", - "dom/interfaces", - "dom/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "30aa3539cedca522384c7a574ecfab59902cb40b", - "author": "Dave Townsend ", - "bug_id": 481406, - "desc": "Backed out changeset ddd616e58309 from bug 481406 due to tinderbox shortlog\nspam", - "pushdate": "2009-05-28 11:20:17", - "backsout": [ - "ddd616e583093f3079a7a6c29f55ef39bdf27fff" - ], - "backedoutby": "", - "author_email": "dtownsend@oxymoronical.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 31019775.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "testing/mochitest/browser-harness.xul", - "testing/mochitest/browser-test.js", - "testing/mochitest/tests/browser/browser_pass.js" - ], - "components": [ - "Testing::Mochitest" - ], - "directories": [ - "testing/mochitest", - "testing" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "f5e133f0c13282882e632df0129993dbeb36b51b", - "author": "Andreas Gal ", - "bug_id": 496482, - "desc": "Backed out changeset 17664f5cab40 (bug 496482, also backing out the bug that introduced this bug).", - "pushdate": "2009-06-05 08:41:32", - "backsout": [ - "17664f5cab40ca0cb7b807ae1e5b02898ba7371e" - ], - "backedoutby": "", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 29191814.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jstracer.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "47ae3c6dcf9ee2b9783fa4e2f9642965b035294a", - "author": "Andreas Gal ", - "bug_id": 495958, - "desc": "Backed out changeset 2ad658e9f42a (bug 495958, re-opened).", - "pushdate": "2009-06-05 08:41:32", - "backsout": [ - "2ad658e9f42ad5e92d0fe3439c464c21f1d32ce3" - ], - "backedoutby": "", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 29191814.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jstracer.cpp", - "js/src/jstracer.h" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "6bced1a34c8f04226e23cc7021fe4fe6ebf68c92", - "author": "Markus Stange ", - "bug_id": 482681, - "desc": "Backed out changeset 04f5a3303ebf, bug 482681 due to test failures", - "pushdate": "2009-06-11 11:15:19", - "backsout": [ - "04f5a3303ebf0c3c67c4872f028b4838eea84a68" - ], - "backedoutby": "", - "author_email": "mstange@themasta.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 29929415.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/themes/pinstripe/global/button.css", - "toolkit/themes/pinstripe/global/global.css" - ], - "components": [], - "directories": [ - "toolkit/themes", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "97e7f0da28d6c7c4e311a49eefd8c218ca563b7d", - "author": "Shawn Wilsher ", - "bug_id": 483980, - "desc": "Backed out changeset d891a7418d95 (bug 483980)", - "pushdate": "2009-06-11 23:08:59", - "backsout": [ - "d891a7418d9514991182f2a9df9e360ebd0848db" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 32167308.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/components/places/tests/unit/head_bookmarks.js", - "browser/components/places/tests/unit/tail_bookmarks.js", - "toolkit/components/places/src/nsNavBookmarks.cpp", - "toolkit/components/places/src/nsNavBookmarks.h", - "toolkit/components/places/src/nsNavHistory.cpp", - "toolkit/components/places/src/nsNavHistory.h", - "toolkit/components/places/src/nsNavHistoryExpire.cpp", - "toolkit/components/places/src/nsPlacesDBFlush.js", - "toolkit/components/places/src/nsPlacesMacros.h", - "toolkit/components/places/tests/autocomplete/head_000.js", - "toolkit/components/places/tests/autocomplete/tail_autocomplete.js", - "toolkit/components/places/tests/bookmarks/head_bookmarks.js", - "toolkit/components/places/tests/bookmarks/tail_bookmarks.js", - "toolkit/components/places/tests/bookmarks/test_384228.js", - "toolkit/components/places/tests/bookmarks/test_448584.js", - "toolkit/components/places/tests/queries/head_queries.js", - "toolkit/components/places/tests/queries/tail_queries.js", - "toolkit/components/places/tests/sync/head_sync.js", - "toolkit/components/places/tests/sync/tail_sync.js", - "toolkit/components/places/tests/unit/head_bookmarks.js", - "toolkit/components/places/tests/unit/nsDummyObserver.js", - "toolkit/components/places/tests/unit/tail_bookmarks.js", - "toolkit/components/places/tests/unit/test_000_frecency.js", - "toolkit/components/places/tests/unit/test_421180.js", - "toolkit/components/places/tests/unit/test_454977.js", - "toolkit/components/places/tests/unit/test_bookmark_catobs.js", - "toolkit/components/places/tests/unit/test_history.js", - "toolkit/components/places/tests/unit/test_history_catobs.js", - "toolkit/components/places/tests/unit/test_migrateFrecency.js" - ], - "components": [ - "Firefox::Bookmarks & History", - "Toolkit::Places" - ], - "directories": [ - "toolkit/components", - "browser/components", - "toolkit", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "06027b3d50d99bb1d03ed761fb8c6e99597b718f", - "author": "Shawn Wilsher ", - "bug_id": 119061, - "desc": "Backed out changeset f3fcd36fcbd1 (bug 119061) for linux orange.", - "pushdate": "2009-06-11 23:58:06", - "backsout": [ - "f3fcd36fcbd190362e1869607d5387e23a892a51" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 32170255.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/svg/content/test/Makefile.in", - "content/svg/content/test/test_moveUnderMouse.xhtml", - "layout/reftests/svg/dynamic-move-under-mouse.svg", - "layout/reftests/svg/reftest.list", - "layout/svg/base/src/nsSVGOuterSVGFrame.cpp" - ], - "components": [ - "Core::SVG" - ], - "directories": [ - "layout/svg", - "content", - "content/svg", - "layout/reftests", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "f0b1b5b7ae6269b70c953d939a9231beb7c53472", - "author": "Marco Zehe ", - "bug_id": 493723, - "desc": "Backed out changeset 2928cc356e14 of bug 493723 to fix screen reader bustage", - "pushdate": "2009-06-12 14:32:48", - "backsout": [ - "2928cc356e14d01ffe4670a9657c5e7cc90970e4" - ], - "backedoutby": "", - "author_email": "marco.zehe@googlemail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 32146482.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "accessible/src/atk/Makefile.in", - "accessible/src/atk/nsARIAGridAccessibleWrap.h", - "accessible/src/base/nsAccessibilityService.cpp", - "accessible/src/mac/Makefile.in", - "accessible/src/mac/nsARIAGridAccessibleWrap.h", - "accessible/src/msaa/Makefile.in", - "accessible/src/msaa/nsARIAGridAccessibleWrap.cpp", - "accessible/src/msaa/nsARIAGridAccessibleWrap.h", - "accessible/src/other/Makefile.in", - "accessible/src/other/nsARIAGridAccessibleWrap.h" - ], - "components": [], - "directories": [ - "accessible/src", - "accessible" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "be99fcdb6addb56c5bd73d9b18fda04490ac7eda", - "author": "Karl Tomlinson ", - "bug_id": 450930, - "desc": "backout 06a7d2def034 and 58c89ce9719d as possible cause of failure in test_bug450930.xhtml", - "pushdate": "2009-06-15 06:41:26", - "backsout": [ - "06a7d2def034ecb21b9fb5658dcc1fe090e1b586" - ], - "backedoutby": "", - "author_email": "karlt+@karlt.net", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 29647662.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "gfx/thebes/public/gfxAtsuiFonts.h", - "gfx/thebes/public/gfxCoreTextFonts.h", - "gfx/thebes/src/gfxAtsuiFonts.cpp", - "gfx/thebes/src/gfxCoreTextFonts.cpp", - "gfx/thebes/src/gfxWindowsFonts.cpp", - "layout/reftests/bugs/308406-1-ref.html", - "layout/reftests/bugs/308406-1.html", - "layout/reftests/bugs/308406-2-ref.html", - "layout/reftests/bugs/308406-2.html", - "layout/reftests/bugs/363858-5-ref.html", - "layout/reftests/bugs/363858-5a.html", - "layout/reftests/bugs/363858-5b.html", - "layout/reftests/bugs/363858-6-ref.html", - "layout/reftests/bugs/363858-6a.html", - "layout/reftests/bugs/363858-6b.html", - "layout/reftests/bugs/387876-1-ref.html", - "layout/reftests/bugs/387876-1.html", - "layout/reftests/bugs/reftest.list" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "layout/reftests", - "gfx/thebes", - "gfx", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "72f6372d784a147d2335c0371aca0602ae0678d7", - "author": "Arpad Borsos ", - "bug_id": 493701, - "desc": "Back out 7d502207183d (Bug 493701), it really did cause the windows dhtml regression", - "pushdate": "2009-06-16 12:44:37", - "backsout": [ - "7d502207183da020cfe9071055394ce9dc9df77d" - ], - "backedoutby": "", - "author_email": "arpad.borsos@googlemail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 31847699.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "uriloader/base/nsDocLoader.cpp", - "xpcom/tests/TestObserverArray.cpp" - ], - "components": [ - "Core::DOM: Navigation" - ], - "directories": [ - "uriloader/base", - "xpcom/tests", - "xpcom", - "uriloader" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "f9c14b122aa2ead4b62b6c3329c28d014cf711a3", - "author": "Arpad Borsos ", - "bug_id": 474369, - "desc": "Back out b8e531a6c961 (Bug 474369), it really did cause the windows dhtml regression", - "pushdate": "2009-06-16 12:44:37", - "backsout": [ - "b8e531a6c961d7e4814efb7a0bb24c3ebfd3aacd" - ], - "backedoutby": "", - "author_email": "arpad.borsos@googlemail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 31847699.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "caps/include/nsPrincipal.h", - "caps/src/nsPrincipal.cpp", - "chrome/src/nsChromeRegistry.cpp", - "chrome/src/nsChromeRegistry.h", - "db/morkreader/nsMorkReader.cpp", - "docshell/base/nsDocShell.cpp", - "dom/base/nsIDOMClassInfo.h", - "dom/src/storage/nsDOMStorage.h", - "editor/libeditor/base/nsSelectionState.cpp", - "editor/txmgr/src/nsTransactionManager.cpp", - "embedding/components/commandhandler/src/nsCommandGroup.h", - "extensions/java/xpcom/src/nsJavaXPTCStub.cpp", - "extensions/java/xpcom/src/nsJavaXPTCStub.h", - "extensions/layout-debug/src/nsRegressionTester.cpp", - "extensions/pref/system-pref/src/gconf/nsSystemPrefService.cpp", - "extensions/pref/system-pref/src/gconf/nsSystemPrefService.h", - "extensions/spellcheck/src/mozPersonalDictionary.h", - "extensions/spellcheck/src/mozSpellChecker.h", - "intl/locale/src/nsLocale.cpp", - "layout/inspector/src/inCSSValueSearch.cpp", - "layout/style/nsCSSRuleProcessor.cpp", - "modules/libpref/src/nsPrefBranch.cpp", - "modules/libpref/src/nsPrefBranch.h", - "netwerk/cache/src/nsCacheService.cpp", - "security/manager/ssl/src/nsKeygenHandler.cpp", - "security/manager/ssl/src/nsKeygenHandler.h", - "tools/trace-malloc/leaksoup.cpp", - "uriloader/base/nsDocLoader.cpp", - "uriloader/base/nsDocLoader.h", - "view/src/nsViewManager.cpp", - "view/src/nsViewManager.h", - "xpcom/glue/nsTObserverArray.h", - "xpinstall/src/nsXPITriggerInfo.h" - ], - "components": [ - "Core::Spelling checker", - "Core::DOM: Navigation" - ], - "directories": [ - "xpcom/glue", - "modules/libpref", - "docshell/base", - "extensions/java", - "extensions/layout-debug", - "dom/base", - "editor", - "view", - "uriloader", - "caps/include", - "db", - "modules", - "embedding/components", - "netwerk", - "uriloader/base", - "caps/src", - "dom", - "extensions", - "layout/inspector", - "chrome/src", - "layout/style", - "layout", - "xpinstall", - "tools/trace-malloc", - "dom/src", - "extensions/spellcheck", - "netwerk/cache", - "docshell", - "caps", - "view/src", - "editor/txmgr", - "security/manager", - "xpcom", - "db/morkreader", - "intl/locale", - "xpinstall/src", - "editor/libeditor", - "embedding", - "extensions/pref", - "security", - "intl", - "tools", - "chrome" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "83ba7296195e738749ce695f89d242ea98d4bcc6", - "author": "Shawn Wilsher ", - "bug_id": 490085, - "desc": "Backed out changeset d546bd2c46a4 (bug 490085) because it's broken (and thunderbird's test caught it)", - "pushdate": "2009-06-17 20:45:30", - "backsout": [ - "d546bd2c46a4271215bbae1cbe87fdc6975afe21" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 32677099.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "storage/public/Makefile.in", - "storage/public/mozIStorageBindingParams.idl", - "storage/public/mozIStorageBindingParamsArray.idl", - "storage/public/mozIStorageStatement.idl", - "storage/src/Makefile.in", - "storage/src/mozStorageAsyncStatementExecution.cpp", - "storage/src/mozStorageAsyncStatementExecution.h", - "storage/src/mozStorageBindingParams.cpp", - "storage/src/mozStorageBindingParams.h", - "storage/src/mozStorageBindingParamsArray.cpp", - "storage/src/mozStorageBindingParamsArray.h", - "storage/src/mozStorageConnection.cpp", - "storage/src/mozStorageStatement.cpp", - "storage/src/mozStorageStatement.h", - "storage/src/mozStorageStatementData.h", - "storage/test/unit/test_connection_executeAsync.js", - "storage/test/unit/test_statement_executeAsync.js", - "storage/test/unit/test_storage_statement_executeAsync.js" - ], - "components": [ - "Toolkit::Storage" - ], - "directories": [ - "storage/src", - "storage", - "storage/test", - "storage/public" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "78f649cdd7f81ab9a45d60a6daecb16f44aa4d26", - "author": "Igor Bukanov ", - "bug_id": 498899, - "desc": "Backed out changeset 7ab1be136cfa - that patch for bug 498899 has a bug.", - "pushdate": "2009-06-19 13:23:15", - "backsout": [ - "7ab1be136cfa78376328f6de33f80d110a62149f" - ], - "backedoutby": "", - "author_email": "igor@mir2.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 31592896.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsinterp.cpp", - "js/src/jsinterp.h", - "js/src/jslock.cpp", - "js/src/jslock.h" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "1e873ec2be87523bc8b5a77e581859eef40a6151", - "author": "Shawn Wilsher ", - "bug_id": 488148, - "desc": "Backed out changeset 0997bcc75daf (bug 488148). Silly me - this patch is wrong!", - "pushdate": "2009-06-19 19:22:34", - "backsout": [ - "0997bcc75daf217886ccf010cdb0b37dc3e30b26" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 32844923.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "storage/src/mozStorageAsyncStatementExecution.cpp", - "storage/src/mozStorageAsyncStatementExecution.h", - "storage/src/mozStorageConnection.cpp", - "storage/src/mozStorageConnection.h" - ], - "components": [], - "directories": [ - "storage/src", - "storage" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "3ffbe0634669f82d3b3b6a3f81b3080058575301", - "author": "Peter Van der Beken ", - "bug_id": 499777, - "desc": "Backed out c8297c309ab3 (Fix for bug 499777 (Cannot convert WrappedNative to function (NS_ERROR_XPC_CANT_CONVERT_WN_TO_FUN)). r/sr=mrbkap.) to fix orange.", - "pushdate": "2009-06-23 14:47:03", - "backsout": [ - "c8297c309ab3a9de623027c7f975c7da29a2a5d3" - ], - "backedoutby": "", - "author_email": "peterv@propagandism.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 31704250.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "dom/base/nsDOMClassInfo.cpp" - ], - "components": [], - "directories": [ - "dom", - "dom/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "a8fafd6b563eefb05f2c5bbef81312a075343ccb", - "author": "Andreas Gal ", - "bug_id": 499664, - "desc": "Backed out changeset 55a8910d8436 (no consensus whether patch should be applied, bug 499664).", - "pushdate": "2009-06-30 19:21:13", - "backsout": [ - "55a8910d8436234482f6d000f5d008dc65c34ac9" - ], - "backedoutby": "", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 31390195.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/nanojit/Assembler.cpp", - "js/src/nanojit/LIR.cpp", - "js/src/nanojit/LIRopcode.tbl" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "dd5b7ac3f7d3e1ed9ae4410dcf0ece1ec6b4ca85", - "author": "Karl Tomlinson ", - "bug_id": 498143, - "desc": "backout a2d8f3384b3c due to mochitest failures b=498143", - "pushdate": "2009-07-09 03:36:29", - "backsout": [ - "a2d8f3384b3ca6aa22eaf843b624d53a580a4034" - ], - "backedoutby": "", - "author_email": "karlt+@karlt.net", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 31710165.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "widget/src/gtk2/nsWindow.cpp" - ], - "components": [], - "directories": [ - "widget", - "widget/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "9d7f4b459a18e821fa66f17d8d61f94a69ab748e", - "author": "Peter Van der Beken ", - "bug_id": 503990, - "desc": "Backed out changeset c5433450795f (Bug 503990: make isStmt() table-driven).", - "pushdate": "2009-07-14 09:23:52", - "backsout": [ - "c5433450795f1f6f4b560b82938f8bf217f6e6c2" - ], - "backedoutby": "", - "author_email": "peterv@propagandism.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 33499259.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/lirasm/lirasm.cpp", - "js/src/nanojit/Fragmento.cpp", - "js/src/nanojit/LIR.cpp", - "js/src/nanojit/LIR.h", - "js/src/nanojit/LIRopcode.tbl" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "6b7b67ed41b913e9871c41dd956ad81e97783155", - "author": "Peter Van der Beken ", - "bug_id": 503463, - "desc": "Backed out changeset 2073d5aae8b6 (Avoid integer math for GC trigger factor calculation in allocation path (bug 503463)).", - "pushdate": "2009-07-14 09:50:08", - "backsout": [ - "2073d5aae8b6d4fd5ae00b8c560f1ba44a2d5da4" - ], - "backedoutby": "", - "author_email": "peterv@propagandism.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 33500835.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsapi.cpp", - "js/src/jscntxt.h", - "js/src/jsgc.cpp" - ], - "components": [ - "Core::JavaScript Engine" - ], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "17a10b614f99d9486cc5e3f14585a49216ef1f45", - "author": "Jonathan Kew ", - "bug_id": 503718, - "desc": "Backed out changeset 705ef05105e8 for causing bug 503718 on OS X", - "pushdate": "2009-07-15 11:14:22", - "backsout": [ - "705ef05105e82731347566a66da9151961fbf240" - ], - "backedoutby": "", - "author_email": "jfkthame@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 19932958.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "gfx/thebes/public/gfxAtsuiFonts.h", - "gfx/thebes/public/gfxCoreTextFonts.h", - "gfx/thebes/src/gfxAtsuiFonts.cpp", - "gfx/thebes/src/gfxCoreTextFonts.cpp", - "layout/reftests/bugs/363858-5-ref.html", - "layout/reftests/bugs/363858-5a.html", - "layout/reftests/bugs/363858-5b.html", - "layout/reftests/bugs/363858-6-ref.html", - "layout/reftests/bugs/363858-6a.html", - "layout/reftests/bugs/363858-6b.html", - "layout/reftests/bugs/387876-1-ref.html", - "layout/reftests/bugs/387876-1.html", - "layout/reftests/bugs/reftest.list" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "layout/reftests", - "gfx/thebes", - "gfx", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "980e61b2e20b207ff3d0e2c63b1c6953d5be9a84", - "author": "Jonathan Kew ", - "bug_id": 503718, - "desc": "Backed out changeset b6d407af386f for causing bug 503718 on Windows", - "pushdate": "2009-07-15 11:14:22", - "backsout": [ - "b6d407af386fac51cbc7c511aafc01c28f9f9aba" - ], - "backedoutby": "", - "author_email": "jfkthame@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 19932958.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "gfx/thebes/src/gfxWindowsFonts.cpp", - "layout/reftests/bugs/308406-1-ref.html", - "layout/reftests/bugs/308406-1.html", - "layout/reftests/bugs/308406-2-ref.html", - "layout/reftests/bugs/308406-2.html" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "layout/reftests", - "gfx/thebes", - "gfx", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "191ef763e892a81b56685717adad3788fad266fd", - "author": "L. David Baron ", - "bug_id": 503942, - "desc": "Backed out changeset ebea850caba8 (Bug 503942) for causing timeouts of dom/tests/mochitest/geolocation/test_allowCurrent.html and test_allowWatch.html", - "pushdate": "2009-07-15 23:52:59", - "backsout": [ - "ebea850caba803942ef77addabd73a0dd9ce9087" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 36910500.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "dom/interfaces/geolocation/Makefile.in", - "dom/interfaces/geolocation/nsIDOMGeoPosition.idl", - "dom/interfaces/geolocation/nsIDOMGeoPositionAddress.idl", - "dom/src/geolocation/NetworkGeolocationProvider.js" - ], - "components": [ - "Core::DOM: Geolocation" - ], - "directories": [ - "dom", - "dom/interfaces", - "dom/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "c0d86da168885b0cd20af7eefacb33c5e330e128", - "author": "L. David Baron ", - "bug_id": 503597, - "desc": "Backed out changeset 6e11834d07c9 (Bug 503597) until x86_64 Linux tinderboxes (bug 505215) and maybe other tinderboxes (bug 505203, bug 505204) are updated.", - "pushdate": "2009-07-20 12:58:59", - "backsout": [ - "6e11834d07c9e5eb2d5d0370119b072ba14b060f" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 37303260.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "configure.in" - ], - "components": [], - "directories": [], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "080ff82bff5ed421cc1e4f2c65bda3aab190fcca", - "author": "Andreas Gal ", - "bug_id": 504705, - "desc": "Backed out changeset 692e8a1325f8 (bug 504705). Crashes with TMFLAGS=full on browser startup.", - "pushdate": "2009-07-21 04:58:00", - "backsout": [ - "692e8a1325f8ed8744de4020523bf9e7ff0f1785" - ], - "backedoutby": "", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 33152802.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsregexp.cpp", - "js/src/jstracer.cpp", - "js/src/lirasm/lirasm.cpp", - "js/src/nanojit/LIR.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "d75d6cd530413239b644ed14ef8ec76d010ecd56", - "author": "Andreas Gal ", - "bug_id": 501232, - "desc": "Backed out changeset 8877e1f8645b (bug 501232).", - "pushdate": "2009-07-21 04:58:00", - "backsout": [ - "8877e1f8645b8e2d0ee5e91ac593fdead31d841b" - ], - "backedoutby": "", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 33152802.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/nanojit/LIR.cpp", - "js/src/nanojit/LIR.h", - "js/src/nanojit/LIRopcode.tbl", - "js/src/nanojit/NativeARM.cpp", - "js/src/nanojit/NativeSparc.cpp", - "js/src/nanojit/Nativei386.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "e81b6512fc4ae2668a847bcbd136b81145934aa6", - "author": "Benjamin Smedberg ", - "bug_id": 448375, - "desc": "Backed out changeset 6722800f261e - bug 448375 because it broke at least x86-64... turns out we do actually use DBUS bits from within libxul.so, and the fix for that bug may be quite a bit more complicated.", - "pushdate": "2009-07-23 17:45:58", - "backsout": [ - "6722800f261ef0787bd1a767c6e3cd8e9a70c3db" - ], - "backedoutby": "", - "author_email": "benjamin@smedbergs.us", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 42339394.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/library/Makefile.in" - ], - "components": [], - "directories": [ - "toolkit/library", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "2772a410e518ffa9ef8aba6cfcb235f75c92297a", - "author": "Gavin Sharp ", - "bug_id": 506116, - "desc": "Backed out changeset 870f451d8385 from bug 506116", - "pushdate": "2009-07-28 07:41:27", - "backsout": [ - "870f451d8385af4fdeee958e7b1067bbf69b96da" - ], - "backedoutby": "", - "author_email": "gavin@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 35187834.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/base/content/browser.js", - "toolkit/content/contentAreaUtils.js" - ], - "components": [ - "Toolkit::General", - "Firefox::General" - ], - "directories": [ - "browser/base", - "toolkit", - "browser", - "toolkit/content" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "069d94d0d7ef237e07669cc9399444bf08a5a5a5", - "author": "Boris Zbarsky ", - "bug_id": 495176, - "desc": "Backed out changeset 9d5e247b5052 to see whether bug 495176 might be causing\nthe WinXP Txul regression.", - "pushdate": "2009-07-28 18:39:06", - "backsout": [ - "9d5e247b505267fe6d1aaf9ae0db8a30c20d808b" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 33251654.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "caps/src/nsScriptSecurityManager.cpp" - ], - "components": [], - "directories": [ - "caps", - "caps/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "78b2c479870c73c5da37cdcf1b012061c60be326", - "author": "Boris Zbarsky ", - "bug_id": 495176, - "desc": "Backed out changeset b55e7e3c0bfb to see whether bug 495176 might be causing the WinXP Txul regression", - "pushdate": "2009-07-28 18:39:06", - "backsout": [ - "b55e7e3c0bfb2f1e09c54d41e64f6069e9987890" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 33251654.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "caps/src/nsScriptSecurityManager.cpp", - "dom/locales/en-US/chrome/security/caps.properties" - ], - "components": [ - "Core::Security" - ], - "directories": [ - "caps", - "dom", - "dom/locales", - "caps/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "0468583f64f4ba451040840369df0dd03ce35e75", - "author": "Boris Zbarsky ", - "bug_id": 496823, - "desc": "Backed out changeset 622a29736f33 to see whether bug 496823 causes the WinXP Txul regression.", - "pushdate": "2009-07-28 18:39:06", - "backsout": [ - "622a29736f33891b79d0187dabe1d0ea2ef4615b" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 33251654.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/base/nsCSSFrameConstructor.cpp", - "layout/generic/nsBlockFrame.cpp", - "layout/generic/nsBlockFrame.h", - "layout/generic/nsFrame.cpp", - "layout/generic/nsIFrame.h" - ], - "components": [ - "Core::Layout", - "Core::Layout: Block and Inline" - ], - "directories": [ - "layout/generic", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "c1ab8650e0cee5e6e3592bdce8d8103fd16bea1a", - "author": "Boris Zbarsky ", - "bug_id": 505988, - "desc": "Backed out changeset 03c40c5a2d4b (bug 505988) to fix password manager test orange.", - "pushdate": "2009-07-30 15:03:51", - "backsout": [ - "03c40c5a2d4be8a6cf2e7fa37050e78ff064ac3c" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 33411539.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/xpconnect/src/xpcprivate.h", - "js/src/xpconnect/src/xpcvariant.cpp", - "js/src/xpconnect/tests/mochitest/Makefile.in", - "js/src/xpconnect/tests/mochitest/test_bug384632.html" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "60b97c3496c4517e74445b2e741629f9d5373e95", - "author": "Shawn Wilsher ", - "bug_id": 504422, - "desc": "Backed out changeset 06433d3dafd9 (bug 504422) because the patch is wrong.", - "pushdate": "2009-07-30 17:34:32", - "backsout": [ - "06433d3dafd932539aa3c64d404e4ed04208da52" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 36380841.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "build/automationutils.py", - "toolkit/components/places/src/SQLFunctions.cpp", - "toolkit/components/places/src/SQLFunctions.h" - ], - "components": [], - "directories": [ - "toolkit/components", - "toolkit", - "build" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "236a7507a0f1e0127782daff0d5cb2d2683e5f69", - "author": "Shawn Wilsher ", - "bug_id": 504384, - "desc": "Backed out changeset 246b44df7dd3 (bug 504384).\nThis fix was wrong.", - "pushdate": "2009-07-30 17:34:32", - "backsout": [ - "246b44df7dd37aba850e536fdae31221f8de424b" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 36380841.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/content/widgets/autocomplete.xml" - ], - "components": [], - "directories": [ - "toolkit/content", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "6fa97a14dde15f0c89160cc15a4e7ba928ea55f2", - "author": "Shawn Wilsher ", - "bug_id": 504311, - "desc": "Backed out changeset 8506b25206cf (bug 504311) because the test added uses enablePrivilege which hangs tinderbox asking for privileges.", - "pushdate": "2009-07-30 20:17:53", - "backsout": [ - "8506b25206cf63f5da2f4c4d7902c5140e2724e5" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 36390642.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/style/crashtests/504311-1.xul", - "layout/style/crashtests/crashtests.list", - "layout/style/nsStyleStruct.cpp" - ], - "components": [ - "Core::CSS Parsing and Computation" - ], - "directories": [ - "layout/style", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "c6cab4ce7379c19306d34d7e923a59ea538cd62a", - "author": "L. David Baron ", - "bug_id": 499655, - "desc": "Backed out changeset 358af1196dc2 (bug 499655) until we get bug 507487 sorted out.", - "pushdate": "2009-07-31 16:41:01", - "backsout": [ - "358af1196dc2b298080cbe73efc9d5570153876e" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 38266982.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/style/nsCSSParser.cpp", - "layout/style/nsCSSRuleProcessor.cpp", - "layout/style/nsCSSStyleRule.cpp", - "layout/style/nsICSSStyleRule.h", - "layout/style/test/Makefile.in", - "layout/style/test/test_bug499655.html", - "layout/style/test/test_bug499655.xhtml", - "layout/xul/base/src/tree/src/nsTreeBodyFrame.cpp" - ], - "components": [ - "Core::CSS Parsing and Computation" - ], - "directories": [ - "layout/xul", - "layout/style", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "d556710b95a87c8f2d69e085c1d399d36886d25c", - "author": "Josh Aas ", - "bug_id": 506812, - "desc": "Backed out changeset ad9a4a3a5409, bug 506812. CLOSED TREE", - "pushdate": "2009-07-31 20:50:50", - "backsout": [ - "ad9a4a3a54095479c020f18fc6c57d65dd4b28f6" - ], - "backedoutby": "", - "author_email": "joshmoz@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 34533011.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "xpcom/io/nsLocalFileOSX.h", - "xpcom/io/nsLocalFileOSX.mm" - ], - "components": [], - "directories": [ - "xpcom/io", - "xpcom" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "8e2681f2fcba3a5d56f421d28e6ee0a9a5f4658f", - "author": "Josh Aas ", - "bug_id": 506812, - "desc": "Backed out changeset 4318f781ab87 to investigate Ts changes, b=506812 CLOSED TREE", - "pushdate": "2009-07-31 20:54:50", - "backsout": [ - "4318f781ab87deddf9d4f6f9bca7501567323bf2" - ], - "backedoutby": "", - "author_email": "joshmoz@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 34533251.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/xre/nsAppRunner.cpp" - ], - "components": [ - "Toolkit::Startup and Profile System" - ], - "directories": [ - "toolkit", - "toolkit/xre" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "1708ccd0ffe4a65523cadc76d5e94c1f83cbd5ba", - "author": "L. David Baron ", - "bug_id": 501608, - "desc": "Backed out changeset 8cd49a8cbb88 (bug 501608) on suspicion of causing lots of mochitest-browser-chrome timeouts and leaks (bug 507698).", - "pushdate": "2009-07-31 21:54:27", - "backsout": [ - "8cd49a8cbb88c1316079b79b7a10b5b135fb4e9a" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 38285788.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/content/tests/browser/Makefile.in", - "toolkit/content/tests/browser/browser_keyevents_during_autoscrolling.js", - "toolkit/content/widgets/browser.xml" - ], - "components": [ - "Toolkit::UI Widgets" - ], - "directories": [ - "toolkit/content", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "850b96d836c46b5c3aa67c7b9207e22ffc1f0822", - "author": "L. David Baron ", - "bug_id": 507605, - "desc": "Backed out changeset 6a5f22ccbe0e (no bug) to see if it is the cause of the mozilla-browser-chrome orange (bug 507605 and bug 507698)", - "pushdate": "2009-08-01 02:38:15", - "backsout": [ - "6a5f22ccbe0e" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 38302816.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/components/sessionstore/test/browser/browser_483330.js", - "browser/components/sessionstore/test/browser/browser_491168.js" - ], - "components": [], - "directories": [ - "browser/components", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "94e882183752b48c85bf046e13908bfe26a72ffe", - "author": "Ehsan Akhgari ", - "bug_id": 125282, - "desc": "Backed out changeset 8366e5cc9f57 (bug 125282) because of four windows unit test oranges in a row (all timed out when running mochitest-plain)", - "pushdate": "2009-08-02 10:41:59", - "backsout": [ - "8366e5cc9f57cbcb1168385cdd38b7da124e95a4" - ], - "backedoutby": "", - "author_email": "ehsan.akhgari@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 33401385.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/base/content/test/Makefile.in", - "browser/base/content/test/browser_bug125282.js", - "dom/base/nsFocusManager.cpp" - ], - "components": [ - "Core::DOM: Core & HTML" - ], - "directories": [ - "browser/base", - "dom/base", - "dom", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "7fb86c108ae7981111030e5520593c10859d3562", - "author": "Boris Zbarsky ", - "bug_id": 502288, - "desc": "Backed out changeset 25462849adcc (bug 502288) to get some talos cycles for the tracemonkey merge without this patch in.", - "pushdate": "2009-08-03 19:12:58", - "backsout": [ - "25462849adcc87648a7fa7fc362b34dd3931a82b" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 33772086.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/base/nsCSSFrameConstructor.cpp", - "layout/base/nsCSSFrameConstructor.h", - "layout/base/nsChangeHint.h", - "layout/base/nsFrameManager.cpp", - "layout/style/nsStyleStruct.cpp" - ], - "components": [ - "Core::Layout", - "Core::CSS Parsing and Computation" - ], - "directories": [ - "layout/style", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "c29765db7521970a25767c46a0876f12ef39e1ee", - "author": "Ted Mielczarek ", - "bug_id": 459114, - "desc": "Backed out changeset 9ddc25fb2246 - bug 459114 - helper function to provide a clean profile directory for xpcshell tests. r=sdwilsh - for test failures", - "pushdate": "2009-08-05 19:36:30", - "backsout": [ - "9ddc25fb224655f0300f78c8fe9c8ebbd4a70488" - ], - "backedoutby": "", - "author_email": "ted.mielczarek@gmail.com", - "reviewers": [ - "sdwilsh" - ], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 43469226.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/components/places/tests/unit/head_bookmarks.js", - "extensions/cookie/test/unit/test_permmanager_removeall.js", - "modules/plugin/test/unit/head_plugins.js", - "modules/plugin/test/unit/test_bug455213.js", - "netwerk/test/unit/test_bug248970_cache.js", - "testing/xpcshell/example/unit/test_get_file.js", - "testing/xpcshell/example/unit/test_profile.js", - "testing/xpcshell/head.js", - "testing/xpcshell/runxpcshelltests.py", - "toolkit/components/downloads/test/schema_migration/head_migration.js", - "toolkit/components/downloads/test/unit/head_download_manager.js", - "toolkit/components/downloads/test/unit/test_bug_382825.js", - "toolkit/components/downloads/test/unit/test_bug_395092.js", - "toolkit/components/downloads/test/unit/test_bug_401430.js", - "toolkit/components/downloads/test/unit/test_bug_401582.js", - "toolkit/components/downloads/test/unit/test_bug_409179.js", - "toolkit/components/downloads/test/unit/test_bug_420230.js", - "toolkit/components/downloads/test/unit/test_download_manager.js", - "toolkit/components/downloads/test/unit/test_privatebrowsing.js", - "toolkit/components/passwordmgr/test/unit/head_storage_legacy_1.js", - "toolkit/components/places/tests/autocomplete/head_000.js", - "toolkit/components/places/tests/bookmarks/head_bookmarks.js", - "toolkit/components/places/tests/queries/head_queries.js", - "toolkit/components/places/tests/unit/head_bookmarks.js", - "toolkit/components/satchel/test/unit/head_satchel.js", - "toolkit/components/url-classifier/tests/unit/head_urlclassifier.js", - "toolkit/mozapps/extensions/test/unit/head_extensionmanager.js", - "toolkit/mozapps/extensions/test/unit/tail_extensionmanager.js" - ], - "components": [ - "Core::Networking", - "Toolkit::Form Manager", - "Testing::XPCShell Harness", - "Toolkit::Safe Browsing", - "Firefox::Bookmarks & History", - "Toolkit::Places" - ], - "directories": [ - "testing/xpcshell", - "toolkit", - "netwerk", - "toolkit/components", - "modules/plugin", - "netwerk/test", - "extensions/cookie", - "browser/components", - "toolkit/mozapps", - "extensions", - "browser", - "testing", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "227c1358d161e4ec2745b8cb9f777d6ad9695d92", - "author": "L. David Baron ", - "bug_id": 505718, - "desc": "Backed out changeset bae405b94b96 (testing to see if it affected bug 505718, bug 508767) to re-enable leaked url dump for unit test boxes.", - "pushdate": "2009-08-07 15:23:53", - "backsout": [ - "bae405b94b961ea90c8793b05e19992ffe7bed48" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 38867154.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "netwerk/base/src/nsStandardURL.h" - ], - "components": [], - "directories": [ - "netwerk/base", - "netwerk" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "b3631e1453f29a5020a393b960b1eb851a770279", - "author": "Markus Stange ", - "bug_id": 429954, - "desc": "Backed out changeset b52fa2372a3a, bug 429954 because of test_popup_preventdefault_chrome.xul orange.", - "pushdate": "2009-08-12 23:44:06", - "backsout": [ - "b52fa2372a3aa6c622ab865987fa7d6e6f6354ea" - ], - "backedoutby": "", - "author_email": "mstange@themasta.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 35331142.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "widget/src/cocoa/nsCocoaWindow.h", - "widget/src/cocoa/nsCocoaWindow.mm" - ], - "components": [], - "directories": [ - "widget", - "widget/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "157b3aa1100f993e37b419c048e30c9d2b61b26f", - "author": "Jason Orendorff ", - "bug_id": 510193, - "desc": "Backed out changeset a17cbb14793f (bug 510193) which caused trace-test.js to fail (spuriously) on x86.", - "pushdate": "2009-08-13 21:38:45", - "backsout": [ - "a17cbb14793f5db1218a2634a185715bf720c477" - ], - "backedoutby": "", - "author_email": "jorendorff@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 38104054.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jitstats.tbl", - "js/src/jstracer.cpp", - "js/src/trace-test.js" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "6c04c1cdedcb5489ee4e2ea3871e574efbfefb65", - "author": "Markus Stange ", - "bug_id": 494927, - "desc": "Backed out changeset 43fdf17e10a3, bug 494927, because of a 2.5% Mac Txul regression", - "pushdate": "2009-08-14 04:53:30", - "backsout": [ - "43fdf17e10a33aa10bee5fcbcb289e023c403802" - ], - "backedoutby": "", - "author_email": "mstange@themasta.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 35436106.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/themes/pinstripe/browser/Toolbar.png", - "browser/themes/pinstripe/browser/browser.css" - ], - "components": [], - "directories": [ - "browser/themes", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "a6fa91f76877b834d4e7db0d5b847a9353156e3e", - "author": "Ted Mielczarek ", - "bug_id": 378528, - "desc": "Backed out changeset 21ad4f1ce214 - Ted Mielczarek \u2013 bug 378528 - crash reporter should allow resubmission of pending reports, due to leaks", - "pushdate": "2009-08-17 18:45:00", - "backsout": [ - "21ad4f1ce2145b76592c958153009bf35f66a442" - ], - "backedoutby": "", - "author_email": "ted.mielczarek@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 44502936.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/crashreporter/content/crash-submit-form.xhtml", - "toolkit/crashreporter/content/crashes.js", - "toolkit/crashreporter/content/crashes.xhtml", - "toolkit/crashreporter/jar.mn", - "toolkit/crashreporter/test/Makefile.in", - "toolkit/crashreporter/test/browser/aboutcrashes_utils.js", - "toolkit/crashreporter/test/browser/browser_aboutCrashes.js", - "toolkit/crashreporter/test/browser/browser_aboutCrashesResubmit.js", - "toolkit/crashreporter/test/browser/crashreport.sjs" - ], - "components": [ - "Toolkit::Crash Reporting" - ], - "directories": [ - "toolkit", - "toolkit/crashreporter" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "ae162a38f56ed5090f6b3b3ebf92d0ff13cff9b1", - "author": "Dave Townsend ", - "bug_id": 502307, - "desc": "Backed out changeset 405a715a4d81 from bug 502307 due to test failures", - "pushdate": "2009-08-19 09:38:41", - "backsout": [ - "405a715a4d8148131ccdc89a1dcd799bf96b0fe0" - ], - "backedoutby": "", - "author_email": "dtownsend@oxymoronical.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 38184879.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/base/content/browser.js", - "toolkit/content/globalOverlay.js" - ], - "components": [ - "Toolkit::General", - "Firefox::General" - ], - "directories": [ - "browser/base", - "toolkit", - "browser", - "toolkit/content" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "36d3597620c7b8392cfb99cc056dcbd2caea2de4", - "author": "L. David Baron ", - "bug_id": 482935, - "desc": "Backed out changeset 3a829715fd39 (Bug 482935) on suspicion of causing mochitest-plain leaks.", - "pushdate": "2009-08-20 19:23:10", - "backsout": [ - "3a829715fd3983cadb48d9de83b78bf85daffd2e" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 40004711.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/base/test/Makefile.in", - "content/base/test/bug482935.sjs", - "content/base/test/test_bug482935.html", - "netwerk/protocol/http/src/nsHttpChannel.cpp" - ], - "components": [], - "directories": [ - "content/base", - "content", - "netwerk/protocol", - "netwerk" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "85899e12310f9eb9be0db8ec7fd421c238c40a26", - "author": "L. David Baron ", - "bug_id": 445765, - "desc": "Backed out changeset 6b686281f9ac (Bug 445765) for causing a 3% Txul (Twinopen) regression on Linux.", - "pushdate": "2009-08-23 15:07:40", - "backsout": [ - "6b686281f9acdf3af782754eb1bac0966eea0851" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 40248581.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/base/nsLayoutUtils.cpp" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "201784b33fc94a3a55139cc7dc8684e66aee803c", - "author": "Boris Zbarsky ", - "bug_id": 488249, - "desc": "Backed out changeset eb32cbfba7f5 (bug 488249 followup) to fix test orange.", - "pushdate": "2009-08-25 00:52:50", - "backsout": [ - "eb32cbfba7f58425d354abb870ce697465bed3c2" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 35606878.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "accessible/src/base/nsAccessible.cpp" - ], - "components": [], - "directories": [ - "accessible/src", - "accessible" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "7687616b2a35d841691da03b55eb482965eb1548", - "author": "Boris Zbarsky ", - "bug_id": 488249, - "desc": "Backed out changeset 59ae87416f96 (bug 488249 followup) to fix test orange.", - "pushdate": "2009-08-25 00:52:50", - "backsout": [ - "59ae87416f96691b00ea478036eb2ef04546eb18" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 35606878.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/base/nsCSSFrameConstructor.cpp", - "widget/src/cocoa/nsMenuBarX.mm", - "widget/src/cocoa/nsNativeThemeCocoa.mm" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "widget", - "layout", - "layout/base", - "widget/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "2e8b6f1bf670fc64652d0f82cd140fc339b96daf", - "author": "Boris Zbarsky ", - "bug_id": 488249, - "desc": "Backed out changeset 4aa19414e651 (bug 488249) to fix test orange.", - "pushdate": "2009-08-25 00:52:50", - "backsout": [ - "4aa19414e651669fa16f4c4a5ac53567f8f471c9" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 35606878.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "accessible/src/base/nsAccessibilityService.cpp", - "accessible/src/base/nsAccessible.cpp", - "accessible/src/base/nsAccessibleTreeWalker.cpp", - "accessible/src/base/nsCoreUtils.cpp", - "accessible/src/base/nsTextEquivUtils.cpp", - "accessible/src/html/nsHTMLSelectAccessible.cpp", - "accessible/src/html/nsHyperTextAccessible.cpp", - "content/base/public/nsIContent.h", - "content/base/public/nsINode.h", - "content/base/src/mozSanitizingSerializer.cpp", - "content/base/src/nsContentUtils.cpp", - "content/base/src/nsCopySupport.cpp", - "content/base/src/nsDOMAttributeMap.cpp", - "content/base/src/nsDocument.cpp", - "content/base/src/nsFrameLoader.cpp", - "content/base/src/nsGenericElement.cpp", - "content/base/src/nsNodeUtils.cpp", - "content/base/src/nsObjectLoadingContent.cpp", - "content/base/src/nsPlainTextSerializer.cpp", - "content/base/src/nsScriptElement.cpp", - "content/base/src/nsXHTMLContentSerializer.cpp", - "content/base/src/nsXMLContentSerializer.cpp", - "content/events/src/nsContentEventHandler.cpp", - "content/events/src/nsEventStateManager.cpp", - "content/html/content/src/nsGenericHTMLElement.cpp", - "content/html/content/src/nsGenericHTMLElement.h", - "content/html/content/src/nsHTMLMediaElement.cpp", - "content/html/content/src/nsHTMLOptGroupElement.cpp", - "content/html/content/src/nsHTMLOptionElement.cpp", - "content/html/content/src/nsHTMLSelectElement.cpp", - "content/html/content/src/nsHTMLTableCellElement.cpp", - "content/html/content/src/nsHTMLTableRowElement.cpp", - "content/html/document/src/nsHTMLDocument.cpp", - "content/mathml/content/src/nsMathMLElement.cpp", - "content/svg/content/src/nsSVGElement.cpp", - "content/svg/content/src/nsSVGLength2.cpp", - "content/xbl/src/nsXBLContentSink.cpp", - "content/xbl/src/nsXBLPrototypeHandler.cpp", - "content/xbl/src/nsXBLService.cpp", - "content/xslt/src/xpath/txMozillaXPathTreeWalker.cpp", - "content/xslt/src/xpath/txXPathTreeWalker.h", - "content/xslt/src/xslt/txMozillaXMLOutput.cpp", - "content/xul/content/src/nsXULElement.cpp", - "content/xul/content/src/nsXULElement.h", - "content/xul/templates/src/nsXULContentBuilder.cpp", - "content/xul/templates/src/nsXULSortService.cpp", - "content/xul/templates/src/nsXULTemplateBuilder.cpp", - "docshell/base/nsDocShell.cpp", - "dom/base/nsDOMClassInfo.cpp", - "dom/base/nsFocusManager.cpp", - "embedding/components/find/src/nsFind.cpp", - "layout/base/nsCSSFrameConstructor.cpp", - "layout/base/nsPresShell.cpp", - "layout/forms/nsListControlFrame.cpp", - "layout/forms/nsTextControlFrame.cpp", - "layout/generic/nsBlockFrame.cpp", - "layout/generic/nsContainerFrame.cpp", - "layout/generic/nsFrame.cpp", - "layout/generic/nsFrameFrame.cpp", - "layout/generic/nsFrameSetFrame.cpp", - "layout/generic/nsImageMap.cpp", - "layout/generic/nsInlineFrame.cpp", - "layout/generic/nsObjectFrame.cpp", - "layout/generic/nsSelection.cpp", - "layout/mathml/nsMathMLContainerFrame.cpp", - "layout/printing/nsPrintEngine.cpp", - "layout/printing/nsPrintPreviewListener.cpp", - "layout/style/nsCSSRuleProcessor.cpp", - "layout/style/nsHTMLStyleSheet.cpp", - "layout/style/nsStyleUtil.cpp", - "layout/svg/base/src/nsSVGContainerFrame.cpp", - "layout/svg/base/src/nsSVGSwitchFrame.cpp", - "layout/xul/base/src/nsBox.cpp", - "layout/xul/base/src/nsListBoxBodyFrame.cpp", - "layout/xul/base/src/tree/src/nsTreeBodyFrame.cpp", - "layout/xul/base/src/tree/src/nsTreeContentView.cpp", - "toolkit/components/typeaheadfind/src/nsTypeAheadFind.cpp", - "widget/src/gtk2/nsNativeThemeGTK.cpp", - "widget/src/windows/nsNativeThemeWin.cpp", - "widget/src/xpwidgets/nsNativeTheme.cpp" - ], - "components": [ - "Core::DOM: Core & HTML", - "Core::CSS Parsing and Computation", - "Core::DOM: Navigation", - "Core::Layout: Block and Inline", - "Core::Layout: Form Controls", - "Core::Layout: Images, Video, and HTML Frames", - "Core::MathML", - "Core::Layout" - ], - "directories": [ - "accessible/src", - "accessible", - "docshell/base", - "layout/mathml", - "dom/base", - "content/xul", - "content/base", - "content", - "content/html", - "embedding/components", - "layout/generic", - "toolkit", - "dom", - "content/xslt", - "layout/style", - "layout", - "toolkit/components", - "layout/xul", - "docshell", - "layout/forms", - "layout/base", - "widget", - "embedding", - "content/mathml", - "layout/printing", - "layout/svg", - "content/svg", - "content/xbl", - "widget/src", - "content/events" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "b5c5bf855c53870a43f0681f68012ce2bf362366", - "author": "Boris Zbarsky ", - "bug_id": 474536, - "desc": "Backed out changeset 6ee269c6c118 (test for bug 474536) because it hangs on Tinderbox", - "pushdate": "2009-09-02 17:35:49", - "backsout": [ - "6ee269c6c118762de6d21b86025c2792290750f6" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 36358257.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "netwerk/test/unit/data/bug474536/foo.jar", - "netwerk/test/unit/data/bug474536/foo.jar^headers^", - "netwerk/test/unit/test_bug474536.js" - ], - "components": [], - "directories": [ - "netwerk/test", - "netwerk" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "941346617e4fa0946dea86a611917d7362765d10", - "author": "Josh Aas ", - "bug_id": 510920, - "desc": "Backed out changeset e8c01867056a, breakpad update b=510920", - "pushdate": "2009-09-04 04:02:57", - "backsout": [ - "e8c01867056a2dea44260030f35f743f73c7e272" - ], - "backedoutby": "", - "author_email": "joshmoz@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 37496538.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/crashreporter/google-breakpad/Makefile.am", - "toolkit/crashreporter/google-breakpad/Makefile.in", - "toolkit/crashreporter/google-breakpad/aclocal.m4", - "toolkit/crashreporter/google-breakpad/src/breakpad_googletest_includes.h", - "toolkit/crashreporter/google-breakpad/src/client/linux/handler/exception_handler.cc", - "toolkit/crashreporter/google-breakpad/src/client/linux/handler/exception_handler.h", - "toolkit/crashreporter/google-breakpad/src/client/linux/handler/minidump_generator.cc", - "toolkit/crashreporter/google-breakpad/src/client/mac/Breakpad.xcodeproj/project.pbxproj", - "toolkit/crashreporter/google-breakpad/src/client/mac/Framework/Breakpad.h", - "toolkit/crashreporter/google-breakpad/src/client/mac/Framework/Breakpad.mm", - "toolkit/crashreporter/google-breakpad/src/client/mac/Framework/Breakpad_Prefix.pch", - "toolkit/crashreporter/google-breakpad/src/client/mac/Framework/Info.plist", - "toolkit/crashreporter/google-breakpad/src/client/mac/Framework/OnDemandServer.h", - "toolkit/crashreporter/google-breakpad/src/client/mac/Framework/OnDemandServer.mm", - "toolkit/crashreporter/google-breakpad/src/client/mac/UnitTests-Info.plist", - "toolkit/crashreporter/google-breakpad/src/client/mac/crash_generation/Inspector.h", - "toolkit/crashreporter/google-breakpad/src/client/mac/crash_generation/Inspector.mm", - "toolkit/crashreporter/google-breakpad/src/client/mac/crash_generation/InspectorMain.mm", - "toolkit/crashreporter/google-breakpad/src/client/mac/gcov/libgcov.a", - "toolkit/crashreporter/google-breakpad/src/client/mac/handler/exception_handler.cc", - "toolkit/crashreporter/google-breakpad/src/client/mac/handler/exception_handler.h", - "toolkit/crashreporter/google-breakpad/src/client/mac/handler/exception_handler_test.cc", - "toolkit/crashreporter/google-breakpad/src/client/mac/handler/minidump_generator.cc", - "toolkit/crashreporter/google-breakpad/src/client/mac/handler/minidump_generator.h", - "toolkit/crashreporter/google-breakpad/src/client/mac/handler/minidump_generator_test.cc", - "toolkit/crashreporter/google-breakpad/src/client/mac/handler/testcases/testdata/dump_syms_i386_breakpad.sym", - "toolkit/crashreporter/google-breakpad/src/client/mac/sender/Breakpad.nib/classes.nib", - "toolkit/crashreporter/google-breakpad/src/client/mac/sender/Breakpad.nib/info.nib", - "toolkit/crashreporter/google-breakpad/src/client/mac/sender/Breakpad.nib/keyedobjects.nib", - "toolkit/crashreporter/google-breakpad/src/client/mac/sender/English.lproj/InfoPlist.strings", - "toolkit/crashreporter/google-breakpad/src/client/mac/sender/English.lproj/Localizable.strings", - "toolkit/crashreporter/google-breakpad/src/client/mac/sender/ReporterIcon.graffle", - "toolkit/crashreporter/google-breakpad/src/client/mac/sender/crash_report_sender-Info.plist", - "toolkit/crashreporter/google-breakpad/src/client/mac/sender/crash_report_sender.h", - "toolkit/crashreporter/google-breakpad/src/client/mac/sender/crash_report_sender.icns", - "toolkit/crashreporter/google-breakpad/src/client/mac/sender/crash_report_sender.m", - "toolkit/crashreporter/google-breakpad/src/client/mac/testapp/Controller.h", - "toolkit/crashreporter/google-breakpad/src/client/mac/testapp/Controller.m", - "toolkit/crashreporter/google-breakpad/src/client/mac/testapp/English.lproj/InfoPlist.strings", - "toolkit/crashreporter/google-breakpad/src/client/mac/testapp/English.lproj/MainMenu.nib/classes.nib", - "toolkit/crashreporter/google-breakpad/src/client/mac/testapp/English.lproj/MainMenu.nib/info.nib", - "toolkit/crashreporter/google-breakpad/src/client/mac/testapp/English.lproj/MainMenu.nib/keyedobjects.nib", - "toolkit/crashreporter/google-breakpad/src/client/mac/testapp/Info.plist", - "toolkit/crashreporter/google-breakpad/src/client/mac/testapp/TestClass.h", - "toolkit/crashreporter/google-breakpad/src/client/mac/testapp/TestClass.mm", - "toolkit/crashreporter/google-breakpad/src/client/mac/testapp/bomb.icns", - "toolkit/crashreporter/google-breakpad/src/client/mac/testapp/crashInMain", - "toolkit/crashreporter/google-breakpad/src/client/mac/testapp/crashduringload", - "toolkit/crashreporter/google-breakpad/src/client/mac/testapp/main.m", - "toolkit/crashreporter/google-breakpad/src/client/mac/tests/BreakpadFramework_Test.mm", - "toolkit/crashreporter/google-breakpad/src/client/mac/tests/SimpleStringDictionaryTest.h", - "toolkit/crashreporter/google-breakpad/src/client/mac/tests/SimpleStringDictionaryTest.mm", - "toolkit/crashreporter/google-breakpad/src/client/minidump_file_writer_unittest.cc", - "toolkit/crashreporter/google-breakpad/src/client/windows/crash_generation/crash_generation_server.cc", - "toolkit/crashreporter/google-breakpad/src/client/windows/crash_generation/crash_generation_server.h", - "toolkit/crashreporter/google-breakpad/src/client/windows/handler/exception_handler.cc", - "toolkit/crashreporter/google-breakpad/src/client/windows/handler/exception_handler.h", - "toolkit/crashreporter/google-breakpad/src/client/windows/sender/crash_report_sender.cc", - "toolkit/crashreporter/google-breakpad/src/client/windows/sender/crash_report_sender.vcproj", - "toolkit/crashreporter/google-breakpad/src/common/linux/dump_symbols.cc", - "toolkit/crashreporter/google-breakpad/src/common/linux/dump_symbols.h", - "toolkit/crashreporter/google-breakpad/src/common/linux/file_id.cc", - "toolkit/crashreporter/google-breakpad/src/common/mac/GTMDefines.h", - "toolkit/crashreporter/google-breakpad/src/common/mac/GTMGarbageCollection.h", - "toolkit/crashreporter/google-breakpad/src/common/mac/GTMLogger.h", - "toolkit/crashreporter/google-breakpad/src/common/mac/GTMLogger.m", - "toolkit/crashreporter/google-breakpad/src/common/mac/MachIPC.h", - "toolkit/crashreporter/google-breakpad/src/common/mac/MachIPC.mm", - "toolkit/crashreporter/google-breakpad/src/common/mac/SimpleStringDictionary.h", - "toolkit/crashreporter/google-breakpad/src/common/mac/SimpleStringDictionary.mm", - "toolkit/crashreporter/google-breakpad/src/common/mac/testing/GTMSenTestCase.h", - "toolkit/crashreporter/google-breakpad/src/common/mac/testing/GTMSenTestCase.m", - "toolkit/crashreporter/google-breakpad/src/common/solaris/dump_symbols.cc", - "toolkit/crashreporter/google-breakpad/src/common/solaris/file_id.cc", - "toolkit/crashreporter/google-breakpad/src/common/windows/http_upload.cc", - "toolkit/crashreporter/google-breakpad/src/common/windows/http_upload.h", - "toolkit/crashreporter/google-breakpad/src/google_breakpad/common/minidump_cpu_ppc.h", - "toolkit/crashreporter/google-breakpad/src/google_breakpad/processor/basic_source_line_resolver.h", - "toolkit/crashreporter/google-breakpad/src/google_breakpad/processor/minidump.h", - "toolkit/crashreporter/google-breakpad/src/google_breakpad/processor/minidump_processor.h", - "toolkit/crashreporter/google-breakpad/src/google_breakpad/processor/source_line_resolver_interface.h", - "toolkit/crashreporter/google-breakpad/src/google_breakpad/processor/symbol_supplier.h", - "toolkit/crashreporter/google-breakpad/src/processor/basic_source_line_resolver.cc", - "toolkit/crashreporter/google-breakpad/src/processor/basic_source_line_resolver_unittest.cc", - "toolkit/crashreporter/google-breakpad/src/processor/contained_range_map-inl.h", - "toolkit/crashreporter/google-breakpad/src/processor/minidump_processor.cc", - "toolkit/crashreporter/google-breakpad/src/processor/minidump_processor_unittest.cc", - "toolkit/crashreporter/google-breakpad/src/processor/minidump_stackwalk.cc", - "toolkit/crashreporter/google-breakpad/src/processor/simple_symbol_supplier.cc", - "toolkit/crashreporter/google-breakpad/src/processor/simple_symbol_supplier.h", - "toolkit/crashreporter/google-breakpad/src/processor/stackwalker.cc", - "toolkit/crashreporter/google-breakpad/src/tools/linux/dump_syms/dump_syms.cc", - "toolkit/crashreporter/google-breakpad/src/tools/mac/crash_report/crash_report.mm", - "toolkit/crashreporter/google-breakpad/src/tools/mac/crash_report/on_demand_symbol_supplier.h", - "toolkit/crashreporter/google-breakpad/src/tools/mac/crash_report/on_demand_symbol_supplier.mm", - "toolkit/crashreporter/google-breakpad/src/tools/windows/symupload/symupload.cc" - ], - "components": [ - "Toolkit::Crash Reporting", - "Firefox Build System::General" - ], - "directories": [ - "toolkit", - "toolkit/crashreporter" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "845b66a2eb91290ec6ef4a5cf2c2ec587b5c8ca3", - "author": "D\u00e3o Gottwald ", - "bug_id": 514891, - "desc": "Backed out changeset b652e12fc7e3 because of bug 514891", - "pushdate": "2009-09-07 12:18:27", - "backsout": [ - "b652e12fc7e3a68a2a0aca08f6515477be3d32c5" - ], - "backedoutby": "", - "author_email": "dao@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 39132370.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/base/content/browser-tabPreviews.js" - ], - "components": [], - "directories": [ - "browser/base", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "ce62745a7c9c72cd51034b9f9710af3d2e45d038", - "author": "D\u00e3o Gottwald ", - "bug_id": 514891, - "desc": "Backed out changeset 83ba2c6e25eb because of bug 514891", - "pushdate": "2009-09-07 12:18:27", - "backsout": [ - "83ba2c6e25eb1fb9f3962eebeb4e041176133fb9" - ], - "backedoutby": "", - "author_email": "dao@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 39132370.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/xul/base/src/nsMenuPopupFrame.cpp" - ], - "components": [], - "directories": [ - "layout/xul", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "c1e5dcec20dd02e3de3d6f785408840aaa91b48d", - "author": "Josh Aas ", - "bug_id": 506812, - "desc": "Back out changeset 845b625b5eb5. b=506812", - "pushdate": "2009-09-09 13:59:18", - "backsout": [ - "845b625b5eb532b65346e0ca5f3e199d8fbfe13e" - ], - "backedoutby": "", - "author_email": "joshmoz@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 37964319.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/xre/nsAppRunner.cpp" - ], - "components": [ - "Toolkit::Startup and Profile System" - ], - "directories": [ - "toolkit", - "toolkit/xre" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "6119349e864e7d27faf80076cb7ceb790a846fc5", - "author": "Jeff Muizelaar ", - "bug_id": 514803, - "desc": "Backout ffcfaed61bed: Taras Glek \u2013 Bug 514803 - Fix for new Date().toLocaleString() triggers \"An error occured throwing an exception\". Moved more charset files to jar r=bsmedberg\n\nThis caused an unexplained Ts improvement and obj-c exceptions during Ts.", - "pushdate": "2009-09-14 20:55:06", - "backsout": [ - "ffcfaed61bedaeed17963c98015d8beb53d39e9b" - ], - "backedoutby": "", - "author_email": "jmuizelaar@mozilla.com", - "reviewers": [ - "bsmedberg" - ], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 30589658.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/installer/package-manifest.in", - "browser/installer/removed-files.in", - "intl/uconv/src/Makefile.in", - "intl/uconv/src/jar.mn" - ], - "components": [ - "Firefox::Installer" - ], - "directories": [ - "browser/installer", - "intl", - "browser", - "intl/uconv" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "71e1c4bdc3c8c9be8e849c871e294dc8a11c8be7", - "author": "Justin Dolske ", - "bug_id": 497495, - "desc": "Backed out changeset a3f33def2dca (bug 497495 part 4)", - "pushdate": "2009-09-15 00:27:03", - "backsout": [ - "a3f33def2dca968d2b335c55c2daf92a10499282" - ], - "backedoutby": "", - "author_email": "dolske@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 39330067.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/base/nsIPresShell.h", - "layout/base/nsPresArena.cpp", - "layout/base/nsPresArena.h", - "layout/base/nsPresShell.cpp", - "layout/generic/nsFrame.cpp", - "layout/generic/nsFrame.h", - "layout/generic/nsQueryFrame.h" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "layout/generic", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "dc2598d08078bade237e66b83bf0b29ebc6b7db7", - "author": "Andreas Gal ", - "bug_id": 504516, - "desc": "Backed out changeset 48c039f7ac4f (bug 504516).", - "pushdate": "2009-09-16 23:16:27", - "backsout": [ - "48c039f7ac4f41126099492743718e83095baea0" - ], - "backedoutby": "3a8acec844913490ca457c9daa16663cbaf5a411", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 38143509.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jstracer.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "0ae65841fcf88595e023f93b86451f5fd341824e", - "author": "Brendan Eich ", - "bug_id": 471214, - "desc": "Back out changeset aff171a8c4f0 (bug 471214).", - "pushdate": "2009-09-16 23:16:27", - "backsout": [ - "aff171a8c4f0009224cb87eb97b47372318bc493" - ], - "backedoutby": "", - "author_email": "brendan@mozilla.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 40358494.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/imacros.c.out", - "js/src/jsapi.cpp", - "js/src/jsarray.cpp", - "js/src/jsemit.cpp", - "js/src/jsinterp.cpp", - "js/src/jsiter.cpp", - "js/src/jsobj.cpp", - "js/src/jsobj.h", - "js/src/jsopcode.cpp", - "js/src/jsopcode.tbl", - "js/src/jsops.cpp", - "js/src/jsparse.cpp", - "js/src/jsscope.cpp", - "js/src/jsscope.h", - "js/src/jstracer.cpp", - "js/src/jstypes.h", - "js/src/jsxdrapi.h" - ], - "components": [ - "Core::JavaScript Engine" - ], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "3a8acec844913490ca457c9daa16663cbaf5a411", - "author": "Andreas Gal ", - "bug_id": 504516, - "desc": "Backed out changeset dc2598d08078 (re-landing bug 504516).", - "pushdate": "2009-09-16 23:16:27", - "backsout": [ - "dc2598d08078bade237e66b83bf0b29ebc6b7db7" - ], - "backedoutby": "", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 38143509.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jstracer.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "cda3d0eefedd79d3741d474678ab396d56c56ba1", - "author": "Andreas Gal ", - "bug_id": 515290, - "desc": "Backed out changeset 5c7fbeed8f96 (bug 515290, accidentally committed unrelated changes with the bug).", - "pushdate": "2009-09-16 23:16:27", - "backsout": [ - "5c7fbeed8f96bc2a23341f5ed895e72253b6654b" - ], - "backedoutby": "", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 38143509.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/nanojit/NativeARM.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "68b5e9772b4cd613caad675815d949a7528526a8", - "author": "Ted Mielczarek ", - "bug_id": 494165, - "desc": "Backed out changeset e5f6affc4c88 for breaking Mochitest\nBug 494165 - Support --total-chunks, --this-chunk, --chunk-by-dir, and --shuffle arguments to runtests.py. r=ted", - "pushdate": "2009-09-21 13:10:14", - "backsout": [ - "e5f6affc4c8868f65c61c9dafb4540c88991e463" - ], - "backedoutby": "", - "author_email": "ted.mielczarek@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 47506850.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "testing/mochitest/runtests.py.in", - "testing/mochitest/tests/SimpleTest/setup.js" - ], - "components": [ - "Testing::Mochitest" - ], - "directories": [ - "testing/mochitest", - "testing" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "80f8fb6eb86e72f39cd3f6ff0f6af48329e8b380", - "author": "Markus Stange ", - "bug_id": 517804, - "desc": "Backed out changeset 7799cfb99362 (Bug 517804 - Flush reflows and invalidations during viewWillDraw) because it caused a ts_shutdown regression.", - "pushdate": "2009-09-22 20:54:29", - "backsout": [ - "7799cfb993623e112a2555d6de0c4a45d29c1c90" - ], - "backedoutby": "", - "author_email": "mstange@themasta.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 38863365.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "view/src/nsViewManager.cpp", - "widget/public/nsGUIEvent.h", - "widget/src/cocoa/nsChildView.mm" - ], - "components": [], - "directories": [ - "widget", - "widget/public", - "view/src", - "view", - "widget/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "75a5fcf1a393cfccab3141f4774307d4b05c31fd", - "author": "Jeff Muizelaar ", - "bug_id": 512865, - "desc": "Backed out changeset cb4f078cc8cb (bug 512865)\n\nWas causing crashes on the leak test box.", - "pushdate": "2009-09-25 03:36:19", - "backsout": [ - "cb4f078cc8cb1b9f136986e7716305099dec8a47" - ], - "backedoutby": "", - "author_email": "jmuizelaar@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 31477731.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "gfx/qcms/Makefile.in", - "gfx/qcms/qcmsint.h", - "gfx/qcms/transform-sse1.c", - "gfx/qcms/transform-sse2.c", - "gfx/qcms/transform.c" - ], - "components": [ - "Core::Graphics" - ], - "directories": [ - "gfx/qcms", - "gfx" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "687f2a1f5ad278bbc52e6e4ff3ef829d18339ef0", - "author": "Jason Orendorff ", - "bug_id": 500431, - "desc": "Backed out changeset eafee0100926 (bug 500431) due to Tinderbox orangeness", - "pushdate": "2009-09-26 03:38:06", - "backsout": [ - "eafee0100926764290cd41a5564f00df140315f1" - ], - "backedoutby": "", - "author_email": "jorendorff@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 41840815.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jspropcache.h" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "873dd3e379db6061c9f0cb4c0c401fb0bc656421", - "author": "Jason Orendorff ", - "bug_id": 500431, - "desc": "Backed out changeset 8abad92fd850 (bug 500431) due to Tinderbox orangeness", - "pushdate": "2009-09-26 03:38:06", - "backsout": [ - "8abad92fd850559cfb11adfb1077371e8eca110d" - ], - "backedoutby": "", - "author_email": "jorendorff@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 41840815.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsops.cpp", - "js/src/jspropcache.h", - "js/src/jspropcacheinlines.h" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "31b6f6e8a56d0074eb82807a47162054b6fd522d", - "author": "Jason Orendorff ", - "bug_id": 500431, - "desc": "Backed out changeset 3f508cfdfa36 (bug 500431) due to tinderbox orangeness", - "pushdate": "2009-09-26 03:38:06", - "backsout": [ - "3f508cfdfa36efe22be8c40415a24bbe28b35356" - ], - "backedoutby": "", - "author_email": "jorendorff@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 41840815.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/Makefile.in", - "js/src/jsbuiltins.cpp", - "js/src/jscntxt.cpp", - "js/src/jscntxt.h", - "js/src/jsinterp.cpp", - "js/src/jsobj.cpp", - "js/src/jsops.cpp", - "js/src/jspropcache.cpp", - "js/src/jspropcache.h", - "js/src/jspropcacheinlines.h", - "js/src/jsscript.cpp", - "js/src/jstracer.cpp" - ], - "components": [ - "Firefox Build System::General" - ], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "0f39d12ba50518f25c340f088103ba6f1c607b26", - "author": "Jason Orendorff ", - "bug_id": 500431, - "desc": "Backed out changeset 2fbd2420ef8b (bug 500431) due to Tinderbox orangeness.", - "pushdate": "2009-09-26 03:38:06", - "backsout": [ - "2fbd2420ef8b793672ccc6a9fd3cb65b2b9c9340" - ], - "backedoutby": "", - "author_email": "jorendorff@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 41840815.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/Makefile.in", - "js/src/jsinterp.cpp", - "js/src/jsinterp.h", - "js/src/jspropcache.cpp", - "js/src/jspropcache.h" - ], - "components": [ - "Firefox Build System::General" - ], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "2c67a109e6265c64b3126c111de59482018242f0", - "author": "Robert Sayre ", - "bug_id": 518448, - "desc": "Backed out changeset f5ea964eb493. (Brendan Eich \u2014 High-level CSE for shape guards (518448, r=jorendorff).", - "pushdate": "2009-09-26 15:23:09", - "backsout": [ - "f5ea964eb493458189bb2ff20cfff74a04e3e4d0" - ], - "backedoutby": "", - "author_email": "sayrer@gmail.com", - "reviewers": [ - "jorendorff" - ], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 40766756.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsscope.cpp", - "js/src/jstracer.cpp", - "js/src/jstracer.h", - "js/src/nanojit/LIR.h", - "js/src/nanojit/LIRopcode.tbl" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "744a11942d04650232e02df7954db4dc5452ef79", - "author": "Josh Aas ", - "bug_id": 506812, - "desc": "Backed out changeset 65aff8912e7c. b=506812", - "pushdate": "2009-09-27 07:10:24", - "backsout": [ - "65aff8912e7c92d424ce046c976a29ced1266f99" - ], - "backedoutby": "", - "author_email": "joshmoz@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 39494985.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/xre/nsAppRunner.cpp", - "xpcom/io/nsLocalFileOSX.mm" - ], - "components": [ - "Toolkit::Startup and Profile System" - ], - "directories": [ - "xpcom", - "xpcom/io", - "toolkit", - "toolkit/xre" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "08c4c88536854e24ec9cc9bc14f5d148e39bc661", - "author": "Josh Aas ", - "bug_id": 506812, - "desc": "Backed out changeset 76c570389975. b=506812", - "pushdate": "2009-09-27 09:55:57", - "backsout": [ - "76c570389975acff5eac2dc5d7c443f09d666dd9" - ], - "backedoutby": "", - "author_email": "joshmoz@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 39504918.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "xpcom/io/nsLocalFileOSX.h", - "xpcom/io/nsLocalFileOSX.mm" - ], - "components": [], - "directories": [ - "xpcom/io", - "xpcom" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "7eab054403ff5dc04f3ce061125a32049476041a", - "author": "Shawn Wilsher ", - "bug_id": 517604, - "desc": "Backed out changeset 467f14a11325 (bug 517604)", - "pushdate": "2009-10-01 00:04:41", - "backsout": [ - "467f14a11325660510a69ec0f2240f7bd685cc0e" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 41761050.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "xpcom/tests/TestHarness.h" - ], - "components": [ - "Core::XPCOM" - ], - "directories": [ - "xpcom", - "xpcom/tests" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "2144fdf97e50c3a09502d25f593785a66b237102", - "author": "Boris Zbarsky ", - "bug_id": 518940, - "desc": "Backed out changeset e22b5d4e8ce9 (bug 518940) on suspicion of causing Linux orange.", - "pushdate": "2009-10-01 03:19:04", - "backsout": [ - "e22b5d4e8ce934f01713a8c51357564a79147e7a" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 38812452.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "modules/plugin/test/mochitest/Makefile.in", - "modules/plugin/test/mochitest/test_npruntime_npninvoke.html", - "modules/plugin/test/testplugin/README", - "modules/plugin/test/testplugin/nptest.cpp" - ], - "components": [], - "directories": [ - "modules/plugin", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "fb9d4a6b8330adff5022ccdaeb52285f3d95a693", - "author": "Daniel Holbert ", - "bug_id": 518991, - "desc": "Backed out changeset 58c5864cb9c6 (Bug 518991) due to linux orange (test failure in test_bug408328.html & 9240-byte leak)", - "pushdate": "2009-10-01 06:43:45", - "backsout": [ - "58c5864cb9c6614dbcb3a652f2112f8a189cb3f0" - ], - "backedoutby": "", - "author_email": "dholbert@cs.stanford.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 43548352.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/xpconnect/src/XPCChromeObjectWrapper.cpp", - "js/src/xpconnect/src/xpcinlines.h", - "js/src/xpconnect/src/xpcjsruntime.cpp", - "js/src/xpconnect/src/xpcprivate.h" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "f0bf246917580c878b38181ad1ed519b2a181934", - "author": "Igor Bukanov ", - "bug_id": 517199, - "desc": "Backed out changeset 31682547b6f1 - bug 517199 has shown persistent failure on Windows tinderboxes.", - "pushdate": "2009-10-07 06:47:58", - "backsout": [ - "31682547b6f1367b15f8dc2206310160ea72a3f7" - ], - "backedoutby": "", - "author_email": "igor@mir2.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 41073179.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsatom.cpp", - "js/src/jscntxt.h", - "js/src/jsgc.cpp", - "js/src/jsgc.h", - "js/src/jsxml.h" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "0416997adea8dea5e38e9ff5ed802fd1d29857b3", - "author": "Igor Bukanov ", - "bug_id": 517199, - "desc": "Backed out changeset 19b4c1cacdb8 - everything related to bug 517199.", - "pushdate": "2009-10-07 06:47:58", - "backsout": [ - "19b4c1cacdb8566e50754fa077448f82f5fdb333" - ], - "backedoutby": "", - "author_email": "igor@mir2.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 41073179.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsapi.cpp", - "js/src/jsarray.cpp", - "js/src/jsbuiltins.cpp", - "js/src/jsfun.h", - "js/src/jsgc.cpp", - "js/src/jsgc.h", - "js/src/jsobj.cpp", - "js/src/jsops.cpp", - "js/src/jsstr.cpp", - "js/src/jsxml.cpp" - ], - "components": [ - "Core::JavaScript Engine" - ], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "5f550d67ae78e4db972d23f5132d3d304996cdc3", - "author": "Peter Van der Beken ", - "bug_id": 517196, - "desc": "Backed out changeset 542fa9413bd0, fix for bug 517196 (The JSClass of wrappers shouldn't change when morphing from slim to XPCWrappedNative), to try to fix orange.", - "pushdate": "2009-10-08 20:42:17", - "backsout": [ - "542fa9413bd08e153155cee686a99e445d32b6c8" - ], - "backedoutby": "", - "author_email": "peterv@propagandism.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 40970364.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "caps/src/nsScriptSecurityManager.cpp", - "js/src/xpconnect/idl/nsIXPConnect.idl", - "js/src/xpconnect/src/XPCChromeObjectWrapper.cpp", - "js/src/xpconnect/src/nsXPConnect.cpp", - "js/src/xpconnect/src/xpcconvert.cpp", - "js/src/xpconnect/src/xpcjsid.cpp", - "js/src/xpconnect/src/xpcprivate.h", - "js/src/xpconnect/src/xpcquickstubs.cpp", - "js/src/xpconnect/src/xpcwrappednative.cpp", - "js/src/xpconnect/src/xpcwrappednativejsops.cpp", - "js/src/xpconnect/src/xpcwrappednativescope.cpp" - ], - "components": [], - "directories": [ - "caps", - "js/src", - "js", - "caps/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "8d2de8ddfa3b79064d583a93d239153849decef6", - "author": "Markus Stange ", - "bug_id": 456646, - "desc": "Backed out changeset 8c4658f8f0dc, bug 456646 (Cocoa print dialog) - we can do better.", - "pushdate": "2009-10-09 07:14:00", - "backsout": [ - "8c4658f8f0dc147ef1d39486bb18b7557174deb6" - ], - "backedoutby": "", - "author_email": "mstange@themasta.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 40282936.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/app/Makefile.in", - "config/autoconf.mk.in", - "configure.in", - "dom/locales/en-US/chrome/printdialog.properties", - "dom/locales/jar.mn", - "embedding/components/printingui/src/mac/Makefile.in", - "embedding/components/printingui/src/mac/nsPrintingPromptService.h", - "embedding/components/printingui/src/mac/nsPrintingPromptServiceX.mm", - "embedding/components/printingui/src/win/nsPrintDialogUtil.cpp", - "toolkit/locales/en-US/chrome/global/gnomeprintdialog.properties", - "toolkit/locales/en-US/chrome/global/printdialog.properties", - "toolkit/locales/jar.mn", - "widget/public/Makefile.in", - "widget/src/cocoa/Makefile.in", - "widget/src/cocoa/nsDeviceContextSpecX.h", - "widget/src/cocoa/nsDeviceContextSpecX.mm", - "widget/src/cocoa/nsPrintDialogX.h", - "widget/src/cocoa/nsPrintDialogX.mm", - "widget/src/cocoa/nsPrintOptionsX.h", - "widget/src/cocoa/nsPrintOptionsX.mm", - "widget/src/cocoa/nsPrintSettingsX.h", - "widget/src/cocoa/nsPrintSettingsX.mm", - "widget/src/cocoa/nsWidgetFactory.mm", - "widget/src/gtk2/nsPrintDialogGTK.cpp" - ], - "components": [ - "Core::DOM: Core & HTML", - "Firefox Build System::General" - ], - "directories": [ - "embedding/components", - "widget", - "embedding", - "toolkit", - "browser/app", - "toolkit/locales", - "config", - "dom/locales", - "dom", - "widget/public", - "browser", - "widget/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "505a2a075e1125d4e22bd39de319aba6b75fd275", - "author": "L. David Baron ", - "bug_id": 516013, - "desc": "Backed out changeset 5f03363ae12d (Bug 516013) due to xpcshell test failure (test_LightweightThemeManager) caused by exception thrown from the code added in that changeset.", - "pushdate": "2009-10-09 20:32:36", - "backsout": [ - "5f03363ae12d29d35a2a6b5d416e7facd3d39cab" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 44328877.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/mozapps/extensions/src/LightweightThemeManager.jsm" - ], - "components": [], - "directories": [ - "toolkit/mozapps", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "b40bf2ef14a7abd4780f5e27b3f1b6a6eeaf2040", - "author": "Boris Zbarsky ", - "bug_id": 489925, - "desc": "Backed out changeset c5fe17b1caa9 (bug 489925)", - "pushdate": "2009-10-13 20:51:31", - "backsout": [ - "c5fe17b1caa9260622d530c0bc881cd5ce365a93" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 39912399.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/base/src/nsDocument.cpp", - "content/base/test/Makefile.in", - "content/base/test/test_bug489925.xhtml" - ], - "components": [], - "directories": [ - "content/base", - "content" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "86a6cd7011186bb5f48d02df639989627ce159bc", - "author": "Paul O\u2019Shannessy ", - "bug_id": 511761, - "desc": "Backed out changeset 89f53914ecd9 (bug 511761)", - "pushdate": "2009-10-14 19:44:25", - "backsout": [ - "89f53914ecd9ef406178ba6d8cdbde8db65610bf" - ], - "backedoutby": "", - "author_email": "paul@oshannessy.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 17373629.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/app/Makefile.in", - "toolkit/mozapps/extensions/src/nsExtensionManager.js.in", - "toolkit/xre/nsAppRunner.cpp", - "xpcom/build/nsXPComInit.cpp", - "xpcom/components/nsComponentManager.cpp", - "xpcom/io/nsFastLoadFile.cpp", - "xpcom/system/nsIXULRuntime.idl", - "xulrunner/app/Makefile.in" - ], - "components": [ - "Core::XPCOM", - "Firefox Build System::General", - "Toolkit::Startup and Profile System" - ], - "directories": [ - "toolkit", - "browser/app", - "xulrunner/app", - "xpcom/io", - "toolkit/xre", - "toolkit/mozapps", - "xpcom/build", - "xpcom/system", - "browser", - "xpcom", - "xpcom/components", - "xulrunner" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "c0af5f72e7a8c6ad41dfa35b404487eb98bde2a8", - "author": "Andreas Gal ", - "bug_id": 521880, - "desc": "Backed out changeset 1a747dd43904 (bug 521880).", - "pushdate": "2009-10-16 17:35:08", - "backsout": [ - "1a747dd439049f11fcdc9fb0abfff4530e72f88c" - ], - "backedoutby": "", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 40715030.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jstl.h", - "js/src/jstracer.cpp", - "js/src/jstracer.h", - "js/src/jsvector.h" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "39b3dbc393bf8996d58e6b2289d6d15622c5175c", - "author": "Igor Bukanov ", - "bug_id": 505315, - "desc": "Backed out changeset 487b81c753c0 - landing of bug 505315 caused talos crashes across platforms.", - "pushdate": "2009-10-16 17:35:08", - "backsout": [ - "487b81c753c0cb8080343beb4013424d6fe162df" - ], - "backedoutby": "", - "author_email": "igor@mir2.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 41889609.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsapi.cpp", - "js/src/jsarray.cpp", - "js/src/jscntxt.cpp", - "js/src/jscntxt.h", - "js/src/jsgc.cpp", - "js/src/jsgc.h", - "js/src/jsobj.cpp", - "js/src/jsops.cpp", - "js/src/jstracer.cpp" - ], - "components": [ - "Core::JavaScript Engine" - ], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "ef149d6975fba3847d8fa31a0913b8669e39bfd7", - "author": "Brian Crowder ", - "bug_id": 519843, - "desc": "Backed out changeset 9992a4a638e2 due to Tp regression (was bug 519843)", - "pushdate": "2009-10-21 14:58:16", - "backsout": [ - "9992a4a638e2598850d67f02672c038cb624513a" - ], - "backedoutby": "", - "author_email": "crowder@fiverocks.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 41181104.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/shell/js.cpp" - ], - "components": [ - "Core::JavaScript Engine" - ], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "f702deeb07be290c488489585cb969ee202ff537", - "author": "Brian Crowder ", - "bug_id": 517109, - "desc": "Backed out changeset 899023a9fbb0 due to Ts regression (was bug 517109)", - "pushdate": "2009-10-21 14:59:50", - "backsout": [ - "899023a9fbb058ef5a75986a393d8298a8cbd9bf" - ], - "backedoutby": "", - "author_email": "crowder@fiverocks.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 41181198.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/components/faststart/FastStartup.js" - ], - "components": [], - "directories": [ - "toolkit/components", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "e3f00dd9617b2918b6ee116026914972eef95a61", - "author": "Markus Stange ", - "bug_id": 300904, - "desc": "Backed out changeset 3ee95c194798, bug 300904 (tracking rects) in order to investigate the Mac DHTML performance regression.", - "pushdate": "2009-10-21 15:10:31", - "backsout": [ - "3ee95c194798dfee926d4485165dfa650a0a27fc" - ], - "backedoutby": "", - "author_email": "mstange@themasta.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 41348327.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "widget/src/cocoa/nsChildView.h", - "widget/src/cocoa/nsChildView.mm", - "widget/src/cocoa/nsCocoaWindow.mm", - "widget/tests/native_mouse_mac_window.xul" - ], - "components": [], - "directories": [ - "widget/tests", - "widget", - "widget/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "9e086fa7728869c161e37deefacb75ddcda34f65", - "author": "L. David Baron ", - "bug_id": 523934, - "desc": "Backed out changeset 1aea70ef6f63 (temporary debugging code for bug 523934).", - "pushdate": "2009-10-23 14:47:50", - "backsout": [ - "1aea70ef6f63b5a55b8f80de9c3d6367305987be" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 45517791.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/base/crashtests/500467-1.html", - "layout/forms/crashtests/366537-1.xhtml", - "layout/tools/reftest/reftest.js" - ], - "components": [ - "Core::Layout", - "Core::Layout: Form Controls" - ], - "directories": [ - "layout/tools", - "layout/forms", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "2909091fb254aa31b11cdfb4f4e9a25ab4253d85", - "author": "Igor Bukanov ", - "bug_id": 524346, - "desc": "Backed out changeset 14c76164f4c2 - patch for bug 524346 caused test fails", - "pushdate": "2009-10-29 21:11:42", - "backsout": [ - "14c76164f4c27bd969eec08f31f36f0101fff59f" - ], - "backedoutby": "", - "author_email": "igor@mir2.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 43025803.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsapi.cpp", - "js/src/jsarray.cpp", - "js/src/jsbuiltins.cpp", - "js/src/jscntxt.h", - "js/src/jsdate.cpp", - "js/src/jsmath.cpp", - "js/src/jsnum.cpp", - "js/src/jsnum.h", - "js/src/jsops.cpp", - "js/src/jsparse.cpp", - "js/src/jsstr.cpp", - "js/src/jstracer.cpp", - "js/src/jsxml.cpp" - ], - "components": [ - "Core::JavaScript: Standard Library", - "Core::JavaScript Engine" - ], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "fdc781e5774d92e5cd542b878ef2d33eceb00f4f", - "author": "David Mandelin ", - "bug_id": 515211, - "desc": "Backed out changeset 109b74e8e902 due to tinderbox bustage (was bug 515211)", - "pushdate": "2009-10-30 18:15:48", - "backsout": [ - "109b74e8e90201e3061449731e10fd502fb32a27" - ], - "backedoutby": "", - "author_email": "dmandelin@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 47851757.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "build/wince/shunt/mozce_shunt.def.in", - "memory/jemalloc/Makefile.in", - "memory/jemalloc/jemalloc.c", - "memory/jemalloc/jemalloc.h" - ], - "components": [], - "directories": [ - "build/wince", - "memory", - "memory/jemalloc", - "build" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "6258b513a554c5098972f89716461dd5460f09c2", - "author": "Boris Zbarsky ", - "bug_id": 526178, - "desc": "Backed out changeset 2fa27d8cd3d2 (bug 526178) to fix browser-chrome orange.", - "pushdate": "2009-11-05 01:42:46", - "backsout": [ - "2fa27d8cd3d20fbad807a7f9fc4a9b2728d8b8f4" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 41830674.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/xbl/test/Makefile.in", - "content/xbl/test/test_bug526178.xhtml", - "layout/base/nsCSSFrameConstructor.cpp", - "layout/base/nsCSSFrameConstructor.h" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "content", - "layout", - "layout/base", - "content/xbl" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "811e1602f0ab7f1c533ad8e1e54f756b9b8eab08", - "author": "Phil Ringnalda ", - "bug_id": 526789, - "desc": "Backed out changeset a696d331ebf7 (bug 526789) for test failures", - "pushdate": "2009-11-10 03:48:53", - "backsout": [ - "a696d331ebf79713e699db5675c7edc6bdf1a4e0" - ], - "backedoutby": "", - "author_email": "philringnalda@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 44332543.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "extensions/cookie/test/unit/test_bug481775.js", - "extensions/cookie/test/unit/test_bug526789.js", - "netwerk/cookie/public/nsICookieManager.idl", - "netwerk/cookie/src/nsCookieService.cpp" - ], - "components": [], - "directories": [ - "netwerk/cookie", - "extensions", - "netwerk", - "extensions/cookie" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "e8f791a62494b867be1757d44fe4e045afd406d6", - "author": "Benjamin Smedberg ", - "bug_id": 525221, - "desc": "Backed out changeset 3e1290bba902 - Bug 525221 which was committed accidentally.", - "pushdate": "2009-11-10 14:54:29", - "backsout": [ - "3e1290bba9029798016d7106237fea5850f8840c" - ], - "backedoutby": "", - "author_email": "benjamin@smedbergs.us", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 51833105.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "nsprpub/config/rules.mk" - ], - "components": [ - "NSPR::NSPR" - ], - "directories": [ - "nsprpub/config", - "nsprpub" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "eb6ad91709a7d298f32e70dbee18e9babc4a420a", - "author": "D\u00e3o Gottwald ", - "bug_id": 528776, - "desc": "Backed out changeset fa212b6a9d72 to see if it caused bug 528776", - "pushdate": "2009-11-18 08:23:36", - "backsout": [ - "fa212b6a9d72832a0c76ddf50c2bf4096570c264" - ], - "backedoutby": "", - "author_email": "dao@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 45339079.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/components/sessionstore/test/browser/browser_394759.js" - ], - "components": [], - "directories": [ - "browser/components", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "ac278013c79942a704e998304c58067803d41e2d", - "author": "Jeff Walden ", - "bug_id": 478047, - "desc": "Backed out changeset 975b36c50d33; bug 478047's fix was misguided and contra ES5, and moving to ES5 semantics at this late date in the release cycle seems unwise. We'll move from old and busted directly to ES5 shortly after 3.6 so as to provide maximum time for ironing out incompatibilities in the wild. r=gal", - "pushdate": "2009-11-19 10:58:47", - "backsout": [ - "975b36c50d33c8de608e798fcde43043db10bf68" - ], - "backedoutby": "", - "author_email": "jwalden@mit.edu", - "reviewers": [ - "gal" - ], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 47729464.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsobj.cpp", - "js/src/tests/ecma_3_1/extensions/jstests.list", - "js/src/tests/ecma_3_1/extensions/regress-478047.js", - "js/src/tests/js1_5/extensions/regress-452178.js", - "js/src/tests/js1_6/extensions/regress-414098.js" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "6432560e430e1db22fe038e4450a4912221837f4", - "author": "Mark Banner ", - "bug_id": 495392, - "desc": "Back out changeset c9c35333436b / Bug 495392 due to build bustage", - "pushdate": "2009-11-24 22:31:04", - "backsout": [ - "c9c35333436bbc7b67f0414ee039d1b26d598f8c" - ], - "backedoutby": "", - "author_email": "bugzilla@standard8.plus.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 46617168.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "widget/src/gtk2/nsClipboard.cpp", - "widget/src/gtk2/nsDragService.cpp" - ], - "components": [], - "directories": [ - "widget", - "widget/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "e101dddbc4324f9ef356207c1bcf8a65b184f5ff", - "author": "Igor Bukanov ", - "bug_id": 424558, - "desc": "Backed out changeset b774250f04d3 - the landed patch for bug 424558 has regressed.", - "pushdate": "2009-12-01 18:15:12", - "backsout": [ - "b774250f04d3cfe7a8caeaca641ade1c95edb18a" - ], - "backedoutby": "", - "author_email": "igor@mir2.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 45866413.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsopcode.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "fb34a7163a43fbf79f8d1a460804452df4cf86c7", - "author": "Robert Sayre ", - "bug_id": 530507, - "desc": "Backed out changeset c696751593d6. Tolerate race condition or broken resolve hook (530507, r=jorendorff).", - "pushdate": "2009-12-01 18:15:12", - "backsout": [ - "c696751593d6056cdc40e31d4c5604338ec1d0a6" - ], - "backedoutby": "", - "author_email": "sayrer@gmail.com", - "reviewers": [ - "jorendorff" - ], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 46479479.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsobj.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "ee7bfc1923adbc60e9223103e88b3d14286137d7", - "author": "Robert Sayre ", - "bug_id": 473228, - "desc": "Backed out changeset c03ebf340688. Bye-bye middle-deletes and their O(n^2) worst case complexity; hello dictionary-mode scopes (473228, r=jorendorff).", - "pushdate": "2009-12-01 18:15:12", - "backsout": [ - "c03ebf340688227093e8fece0634afc31813919b" - ], - "backedoutby": "", - "author_email": "sayrer@gmail.com", - "reviewers": [ - "jorendorff" - ], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 46479479.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsapi.cpp", - "js/src/jsarray.cpp", - "js/src/jsbuiltins.cpp", - "js/src/jscntxt.h", - "js/src/jsdbgapi.cpp", - "js/src/jsinterp.cpp", - "js/src/jsobj.cpp", - "js/src/jsopcode.cpp", - "js/src/jsops.cpp", - "js/src/jsparse.cpp", - "js/src/jsscope.cpp", - "js/src/jsscope.h", - "js/src/jsscopeinlines.h", - "js/src/jsstr.cpp", - "js/src/jstracer.cpp" - ], - "components": [ - "Core::JavaScript Engine" - ], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "1da324b951822655298a68e7ed122531ce36d59d", - "author": "Shawn Wilsher ", - "bug_id": 525356, - "desc": "Backed out changeset a93d705bb969 (bug 525356).", - "pushdate": "2009-12-01 23:07:52", - "backsout": [ - "a93d705bb969573e1298e95bee43281822d20880" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 47114441.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "storage/src/mozStorageConnection.cpp", - "storage/src/mozStorageConnection.h", - "storage/src/mozStorageStatement.cpp" - ], - "components": [], - "directories": [ - "storage/src", - "storage" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "8e986811ab388f741166aa7b34e2caa0f8088cd4", - "author": "Shawn Wilsher ", - "bug_id": 526601, - "desc": "Backed out changeset e9f64cd044f3 (bug 526601)", - "pushdate": "2009-12-01 23:07:52", - "backsout": [ - "e9f64cd044f3af6a40f6fac1f4d377890b92badc" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 47114441.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/components/places/src/nsPlacesDBFlush.js", - "toolkit/components/places/tests/sync/test_database_sync_after_shutdown_with_removeAllPages.js" - ], - "components": [], - "directories": [ - "toolkit/components", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "78faeda5e9702c28f7ac40bdd2ec5bc2cce13c85", - "author": "Shawn Wilsher ", - "bug_id": 496019, - "desc": "Backed out changeset f91a016416d1 (bug 496019)", - "pushdate": "2009-12-01 23:07:52", - "backsout": [ - "f91a016416d11272380828cc0b20c97a7c8cf851" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 47114441.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "storage/public/Makefile.in", - "storage/public/mozIStorageConnection.idl", - "storage/src/mozStorageAsyncStatementExecution.cpp", - "storage/src/mozStorageConnection.cpp", - "storage/src/mozStorageConnection.h", - "storage/src/mozStoragePrivateHelpers.cpp", - "storage/src/mozStoragePrivateHelpers.h", - "storage/test/unit/test_connection_executeAsync.js", - "storage/test/unit/test_storage_connection.js" - ], - "components": [ - "Toolkit::Storage" - ], - "directories": [ - "storage/src", - "storage", - "storage/test", - "storage/public" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "0af1f99d2cb05b4412464758b7f3b16ca0586ceb", - "author": "Peter Van der Beken ", - "bug_id": 524745, - "desc": "Back out 7856366bcd76 (Bug 524745 - \"Session restore sets focus to minimized windows\") to fix orange, also doesn't have approval yet.", - "pushdate": "2009-12-03 11:27:44", - "backsout": [ - "7856366bcd7639c1fbef1c9c2f311a7d3fff9bb0" - ], - "backedoutby": "", - "author_email": "peterv@propagandism.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 45775491.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/components/sessionstore/src/nsSessionStore.js", - "browser/components/sessionstore/test/browser/Makefile.in", - "browser/components/sessionstore/test/browser/browser_524745.js" - ], - "components": [], - "directories": [ - "browser/components", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "4bbe26190c7dc6dad0c1c3440a9064b92a2a8bd7", - "author": "Gavin Sharp ", - "bug_id": 525047, - "desc": "Back out revision dbdbe3ad0234 from bug 525047 - every leak test box that's clobbered since it landed has failed, not finding the first thing it tries to import from automationutils", - "pushdate": "2009-12-16 04:36:11", - "backsout": [ - "dbdbe3ad0234dd583e5e79e790d68d5eaa29b7a4" - ], - "backedoutby": "", - "author_email": "gavin@gavinsharp.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 4575651.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "build/Makefile.in", - "build/automation-build.mk", - "build/pgo/Makefile.in", - "layout/tools/reftest/Makefile.in", - "testing/mochitest/Makefile.in" - ], - "components": [], - "directories": [ - "layout/tools", - "build", - "testing/mochitest", - "testing", - "build/pgo", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "31067e0bf8bf4d1f532db455e07e710b4a1ac657", - "author": "Dietrich Ayala ", - "bug_id": 532542, - "desc": "Backed out changeset a6d5fda15815 for bug 532542 due to a test failure.", - "pushdate": "2009-12-16 08:22:45", - "backsout": [ - "a6d5fda1581505489181e12dea7de232aa854b43" - ], - "backedoutby": "", - "author_email": "dietrich@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 45915462.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/components/nsBrowserGlue.js" - ], - "components": [], - "directories": [ - "browser/components", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "ada564e50e86a6285a5a6773cadf7b2f5bc16885", - "author": "Benjamin Smedberg ", - "bug_id": 533688, - "desc": "Backed out changeset 08e208698ef0: Bug 533688 (Firefox 3.6 failed to start with AT-SPI2 0.1.3) because of consistent orange on Mac/Linux:\n\n1001 ERROR TEST-UNEXPECTED-FAIL | chrome://mochikit/content/a11y/accessible/test_events_doc.html | Test timed out.\n1011 ERROR TEST-UNEXPECTED-FAIL | chrome://mochikit/content/a11y/accessible/test_events_draganddrop.html | [SimpleTest/SimpleTest.js, window.onerror] An error occurred - nsIAccessibleEvent is not defined at chrome://mochikit/content/a11y/accessible/events.js:766\nand subsequent errors and leaks", - "pushdate": "2009-12-16 15:33:14", - "backsout": [ - "08e208698ef06722b65e7bd79c09bb9440481584" - ], - "backedoutby": "", - "author_email": "benjamin@smedbergs.us", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 54945830.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "accessible/src/atk/nsAccessibleWrap.cpp", - "accessible/src/base/nsRootAccessible.cpp" - ], - "components": [], - "directories": [ - "accessible/src", - "accessible" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "382b527f32a5a15af9d5387b5061a67e03b40145", - "author": "Benjamin Smedberg ", - "bug_id": 474500, - "desc": "Backed out changeset 94561cb0f0bd, bug 474500 because of static-analysis bustage.", - "pushdate": "2009-12-21 15:00:07", - "backsout": [ - "94561cb0f0bd8890f86cbdfb782f8426a32af5b7" - ], - "backedoutby": "", - "author_email": "benjamin@smedbergs.us", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 55375843.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsapi.cpp", - "js/src/jsapi.h", - "js/src/jsregexp.cpp", - "js/src/jstracer.cpp", - "js/src/jstracer.h" - ], - "components": [ - "Core::JavaScript Engine" - ], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "f32e7f33b01530d2dba7594c3899a1922da92f3c", - "author": "L. David Baron ", - "bug_id": 531585, - "desc": "Backout revisions fa5326c011b8, 8b22441911b0, and cfa10b01b1f6 (bug 531585) on suspicion of causing random orange bug 536382.", - "pushdate": "2009-12-22 20:49:25", - "backsout": [ - "fa5326c011b8d22f132d59d191b8f3316be5dda9", - "cfa10b01b1f657b7ac20ccaef5a666ffc334881c", - "8b22441911b036039ea3927cb2859ac4d67ae8b5" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 50723486.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/base/nsPresContext.cpp", - "layout/base/nsPresContext.h", - "layout/base/nsRefreshDriver.cpp", - "layout/base/nsRefreshDriver.h", - "layout/style/nsTransitionManager.cpp", - "layout/style/nsTransitionManager.h" - ], - "components": [ - "Core::Layout", - "Core::CSS Transitions and Animations" - ], - "directories": [ - "layout/style", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "03bec0d8715431e0ce811be9d7fe98e37c970978", - "author": "L. David Baron ", - "bug_id": 535004, - "desc": "Backed out changeset 2752efeb2fdd (Bug 535004: Check if we've fired an unload event before calling OnPageShow, in DocumentViewerImpl::LoadComplete) because the NS_ABORT_IF_FALSE that it added is firing in reftest and crashtest, at least on Linux.", - "pushdate": "2009-12-24 04:06:14", - "backsout": [ - "2752efeb2fddf68d810ccc9194b9fa24b0b45088" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 50836095.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/base/src/nsDocument.cpp", - "layout/base/nsDocumentViewer.cpp" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "content/base", - "content", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "a7e65c58693ee91a2756dcf0f5effd79237b5297", - "author": "D\u00e3o Gottwald ", - "bug_id": 529597, - "desc": "Backed out changeset 06e4ea15db72 (bug 529597) because of test_bug_405924.html failure", - "pushdate": "2009-12-29 12:35:10", - "backsout": [ - "06e4ea15db723b87686b2c9095c9418c8d7bccdc" - ], - "backedoutby": "", - "author_email": "dao@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 48896573.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/components/places/src/Makefile.in", - "browser/components/places/src/PlacesProtocolHandler.js", - "browser/installer/package-manifest.in" - ], - "components": [ - "Firefox::Installer" - ], - "directories": [ - "browser/installer", - "browser/components", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "ba2968f7fe46a45b9805a3c133aa1a052d18c964", - "author": "Nochum Sossonko ", - "bug_id": 530374, - "desc": "backout changeset dfc79d02e945, bug 530374 due to build failure", - "pushdate": "2009-12-31 00:07:12", - "backsout": [ - "dfc79d02e945f241872e0b1009fc09b581c398a3" - ], - "backedoutby": "", - "author_email": "highmind63@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 27112703.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/xslt/src/base/txDouble.cpp", - "content/xslt/src/base/txStringUtils.cpp", - "content/xslt/src/xpath/txMozillaXPathTreeWalker.cpp", - "content/xslt/src/xpath/txNodeSet.cpp", - "content/xslt/src/xslt/txMozillaXMLOutput.cpp", - "content/xul/content/src/nsXULElement.cpp" - ], - "components": [], - "directories": [ - "content/xul", - "content", - "content/xslt" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "387da540301942dae8f4385322ff1a611f4449e8", - "author": "Timothy Nikkel ", - "bug_id": 396367, - "desc": "Backed out changeset 640bf652618a (bug 396367)", - "pushdate": "2010-01-02 02:30:58", - "backsout": [ - "640bf652618a494751c80f5df9077d0833109a31" - ], - "backedoutby": "", - "author_email": "tnikkel@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 20041892.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/base/tests/chrome/test_bug396367-1.html", - "layout/base/tests/chrome/test_bug396367-2.html" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "35fec83dd2c53414d021c2bbae436f5b4d30b7d7", - "author": "Timothy Nikkel ", - "bug_id": 396367, - "desc": "Backed out changeset 63d4a49fbec1 (bug 396367)", - "pushdate": "2010-01-02 02:30:58", - "backsout": [ - "63d4a49fbec16b375f4a6cd72978d27573413eb1" - ], - "backedoutby": "", - "author_email": "tnikkel@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 20041892.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/base/nsCSSFrameConstructor.cpp", - "layout/base/nsPresShell.cpp", - "layout/base/tests/chrome/Makefile.in", - "layout/base/tests/chrome/test_bug396367-1.html", - "layout/base/tests/chrome/test_bug396367-2.html" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "ee9b5d13cbaf7f63bf6d757629d4f745f1e84350", - "author": "Jason Orendorff ", - "bug_id": 324278, - "desc": "Backed out changeset 3862a7e48e79 due to tinderbox failures on js1_5/GC/regress-324278.js.", - "pushdate": "2010-01-11 16:41:31", - "backsout": [ - "3862a7e48e79354ba53cb9c966114810ea6095a3" - ], - "backedoutby": "", - "author_email": "jorendorff@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 51132620.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsemit.cpp", - "js/src/jsfun.cpp", - "js/src/jsinterp.h", - "js/src/jsobj.cpp", - "js/src/jsops.cpp", - "js/src/jsparse.cpp", - "js/src/jsscript.cpp", - "js/src/tests/ecma_5/RegExp/7.8.5-1.js", - "js/src/tests/ecma_5/RegExp/jstests.list" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "2332266baf4de6387cd6572e5de9ff391e9f19d8", - "author": "Dave Townsend ", - "bug_id": 539165, - "desc": "Backed out changeset 4b725bb53baa from bug 539165 due to reftest failure", - "pushdate": "2010-01-13 00:28:11", - "backsout": [ - "4b725bb53baada5ccecf0c37c51042f821413743" - ], - "backedoutby": "", - "author_email": "dtownsend@oxymoronical.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 50852649.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "gfx/cairo/README", - "gfx/cairo/cairo/src/cairo-pattern.c", - "gfx/cairo/premultiply-alpha-solid-gradients.patch", - "layout/reftests/svg/opacity-and-gradient-02-ref.svg", - "layout/reftests/svg/opacity-and-gradient-02.svg", - "layout/reftests/svg/reftest.list" - ], - "components": [ - "Core::Graphics", - "Core::SVG" - ], - "directories": [ - "layout/reftests", - "gfx/cairo", - "gfx", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "974d9ffda7b6ae093fa49de036c60a7780af4e8e", - "author": "Markus Stange ", - "bug_id": 461291, - "desc": "Backed out changeset bde448aad47c, bug 461291, due to SunSpider and DHTML performance regression.", - "pushdate": "2010-01-13 19:56:38", - "backsout": [ - "bde448aad47ccb0215415f3cdc8abc58cb7d8638" - ], - "backedoutby": "", - "author_email": "mstange@themasta.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 48623094.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "widget/src/cocoa/nsChildView.mm", - "widget/src/cocoa/nsCocoaWindow.h", - "widget/src/cocoa/nsCocoaWindow.mm" - ], - "components": [], - "directories": [ - "widget", - "widget/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "1ef1d73eb050f79d35b528150c425022ee61f0ba", - "author": "Markus Stange ", - "bug_id": 461291, - "desc": "Backed out changeset bde448aad47c, bug 461291, due to SunSpider and DHTML performance regression.", - "pushdate": "2010-01-13 19:56:38", - "backsout": [ - "bde448aad47ccb0215415f3cdc8abc58cb7d8638" - ], - "backedoutby": "", - "author_email": "mstange@themasta.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 48623094.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [], - "components": [], - "directories": [], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "ffab97de1041b4ef62a31b104dd399033c7c773d", - "author": "Peter Van der Beken ", - "bug_id": 521377, - "desc": "Backout 76cdc8296409 and 9baa220b27c0 (Bug 521377 - 'NPRuntime: Segfault when NPP_GetValue_NPPVpluginScriptableNPObject returns a null actor') to try fo fix orange.", - "pushdate": "2010-01-19 12:01:49", - "backsout": [ - "76cdc829640917cfeddfb7324c761ea9609560fe" - ], - "backedoutby": "", - "author_email": "peterv@propagandism.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 49838336.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "dom/plugins/Makefile.in", - "dom/plugins/PPluginInstance.ipdl", - "dom/plugins/PPluginScriptableObject.ipdl", - "dom/plugins/PluginInstanceChild.cpp", - "dom/plugins/PluginInstanceChild.h", - "dom/plugins/PluginInstanceParent.cpp", - "dom/plugins/PluginInstanceParent.h", - "dom/plugins/PluginMessageUtils.cpp", - "dom/plugins/PluginMessageUtils.h", - "dom/plugins/PluginModuleChild.cpp", - "dom/plugins/PluginModuleChild.h", - "dom/plugins/PluginModuleParent.cpp", - "dom/plugins/PluginScriptableObjectChild.cpp", - "dom/plugins/PluginScriptableObjectChild.h", - "dom/plugins/PluginScriptableObjectParent.cpp", - "dom/plugins/PluginScriptableObjectParent.h", - "dom/plugins/PluginScriptableObjectUtils-inl.h", - "dom/plugins/PluginScriptableObjectUtils.h", - "modules/plugin/base/src/nsNPAPIPlugin.cpp" - ], - "components": [], - "directories": [ - "dom", - "modules/plugin", - "dom/plugins", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "b7008e0642660abcb74fccec100c3cbd45edc6bb", - "author": "Dave Townsend ", - "bug_id": 541739, - "desc": "Backed out changeset 4d7bde383df5 from bug 541739 due to test failures", - "pushdate": "2010-01-27 03:05:52", - "backsout": [ - "4d7bde383df56ee5910b7aa18a6a59f7461e377c" - ], - "backedoutby": "", - "author_email": "dtownsend@oxymoronical.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 52071710.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/components/downloads/src/nsDownloadManager.cpp", - "toolkit/components/downloads/test/unit/test_privatebrowsing_cancel.js" - ], - "components": [], - "directories": [ - "toolkit/components", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "6d50455cabaa3c695ad6e23200782d0790d6d59d", - "author": "Daniel Holbert ", - "bug_id": 543034, - "desc": "Backed out changeset dc7a04be6904 on suspicion of causing bug 543034.", - "pushdate": "2010-01-30 03:08:18", - "backsout": [ - "dc7a04be6904be41a95c33d70ba5908c3b8a2fc0" - ], - "backedoutby": "", - "author_email": "dholbert@cs.stanford.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 53989825.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/components/sessionstore/src/nsSessionStore.js", - "browser/components/sessionstore/test/browser/Makefile.in", - "browser/components/sessionstore/test/browser/browser_500328.js", - "content/base/public/nsIDocument.h", - "content/base/src/nsContentUtils.cpp", - "content/base/src/nsGkAtomList.h", - "content/events/src/Makefile.in", - "content/events/src/nsDOMEvent.cpp", - "content/events/src/nsDOMEvent.h", - "content/events/src/nsDOMPopStateEvent.cpp", - "content/events/src/nsDOMPopStateEvent.h", - "content/events/src/nsEventDispatcher.cpp", - "docshell/base/crashtests/500328-1.html", - "docshell/base/crashtests/crashtests.list", - "docshell/base/nsDocShell.cpp", - "docshell/base/nsDocShell.h", - "docshell/base/nsDocShellLoadTypes.h", - "docshell/base/nsIDocShell.idl", - "docshell/base/nsIDocShellHistory.idl", - "docshell/shistory/public/nsISHEntry.idl", - "docshell/shistory/src/nsSHEntry.cpp", - "docshell/shistory/src/nsSHEntry.h", - "docshell/shistory/src/nsSHistory.cpp", - "docshell/shistory/src/nsSHistory.h", - "dom/base/nsDOMClassInfo.cpp", - "dom/base/nsDOMClassInfo.h", - "dom/base/nsDOMClassInfoID.h", - "dom/base/nsGlobalWindow.cpp", - "dom/base/nsGlobalWindow.h", - "dom/base/nsHistory.cpp", - "dom/base/nsLocation.cpp", - "dom/base/nsPIDOMWindow.h", - "dom/interfaces/base/nsIDOMHistory.idl", - "dom/interfaces/events/Makefile.in", - "dom/interfaces/events/nsIDOMPopStateEvent.idl", - "dom/interfaces/json/nsIJSON.idl", - "dom/src/json/Makefile.in", - "dom/src/json/nsJSON.cpp", - "dom/tests/mochitest/whatwg/Makefile.in", - "dom/tests/mochitest/whatwg/file_bug500328_1.html", - "dom/tests/mochitest/whatwg/file_bug500328_2.html", - "dom/tests/mochitest/whatwg/test_bug500328.html", - "js/src/xpconnect/idl/nsIDispatchSupport.idl", - "js/src/xpconnect/idl/nsIXPConnect.idl", - "js/src/xpconnect/src/nsXPConnect.cpp", - "js/src/xpconnect/src/xpcprivate.h", - "js/src/xpconnect/src/xpcvariant.cpp", - "layout/base/nsDocumentViewer.cpp", - "modules/libpref/src/init/all.js", - "storage/src/Variant_inl.h", - "widget/public/nsGUIEvent.h", - "widget/src/xpwidgets/nsBaseWidget.cpp", - "xpcom/ds/nsIVariant.idl", - "xpcom/ds/nsVariant.cpp" - ], - "components": [ - "Core::DOM: Core & HTML", - "Core::XPCOM", - "Core::DOM: Navigation", - "Firefox::Bookmarks & History", - "Core::Layout" - ], - "directories": [ - "modules/libpref", - "docshell/shistory", - "docshell/base", - "dom/interfaces", - "storage", - "dom/base", - "content/base", - "content", - "modules", - "js/src", - "dom", - "browser", - "js", - "layout", - "xpcom/ds", - "dom/src", - "docshell", - "storage/src", - "browser/components", - "xpcom", - "layout/base", - "widget", - "dom/tests", - "widget/public", - "widget/src", - "content/events" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "aefe5d2d14d87caa20f4ee572888fc01d46e0a2d", - "author": "Karl Tomlinson ", - "bug_id": 540910, - "desc": "backout ebca6061298f as an immediate flush should not be necessary b=540910", - "pushdate": "2010-02-02 06:01:17", - "backsout": [ - "ebca6061298fdd3c51bb10e097c4fa943162a82c" - ], - "backedoutby": "", - "author_email": "karlt+@karlt.net", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 49690053.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/generic/test/plugin_clipping_helper2.xhtml" - ], - "components": [], - "directories": [ - "layout/generic", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "a8d05daa31921404c46e258857f0e9c4513382ae", - "author": "Karl Tomlinson ", - "bug_id": 355548, - "desc": "backout 4dc8bdb7af6d due to 355548-2 reftest failure", - "pushdate": "2010-02-02 07:30:20", - "backsout": [ - "4dc8bdb7af6da21a247874bc54b1349d154a4738" - ], - "backedoutby": "", - "author_email": "karlt+@karlt.net", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 49695396.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/base/nsCSSFrameConstructor.cpp", - "layout/mathml/mathml.css", - "layout/reftests/mathml/math-height-1-ref.xhtml", - "layout/reftests/mathml/math-height-1.xhtml", - "layout/reftests/mathml/reftest.list" - ], - "components": [ - "Core::Layout", - "Core::MathML" - ], - "directories": [ - "layout/reftests", - "layout/mathml", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "e03e9d4315d8b99f9135ea3e971c74a6eda8ef30", - "author": "Daniel Holbert ", - "bug_id": 542263, - "desc": "Backed out changeset 8006ad2d0c06 (tests for bug 542263), since its test 'test_GCrace.html' failed on OSX in its first cycle.", - "pushdate": "2010-02-03 02:59:54", - "backsout": [ - "8006ad2d0c066e0ec0f6810bfedfb1a93d487e56" - ], - "backedoutby": "", - "author_email": "dholbert@cs.stanford.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 54334921.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "build/automation.py.in", - "modules/plugin/test/mochitest/Makefile.in", - "modules/plugin/test/mochitest/test_GCrace.html", - "modules/plugin/test/testplugin/README", - "modules/plugin/test/testplugin/nptest.cpp" - ], - "components": [], - "directories": [ - "modules", - "modules/plugin", - "build" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "29795c58dd72f74e5cde8365503544a8e851a8f8", - "author": "Daniel Holbert ", - "bug_id": 542263, - "desc": "Backed out changeset c502a1a0900a (patch for bug 542263), since its test 'test_GCrace.html' failed on OSX in its first cycle.", - "pushdate": "2010-02-03 02:59:54", - "backsout": [ - "c502a1a0900af4ae6f4db3f21ecad87f7738c79b" - ], - "backedoutby": "", - "author_email": "dholbert@cs.stanford.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 54334921.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "dom/plugins/PluginScriptableObjectChild.cpp", - "dom/plugins/PluginScriptableObjectParent.cpp" - ], - "components": [], - "directories": [ - "dom", - "dom/plugins" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "56a02566af5364f799d5fb319e26e43d9f2b318c", - "author": "Daniel Holbert ", - "bug_id": 543034, - "desc": "Backed out changeset 0949b169357b (possible workaround for Bug 543034), since it didn't help.", - "pushdate": "2010-02-03 03:33:23", - "backsout": [ - "0949b169357bddaaabb90b68d8fdd151407a9114" - ], - "backedoutby": "", - "author_email": "dholbert@cs.stanford.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 54336930.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/components/places/src/nsAnnotationService.cpp" - ], - "components": [], - "directories": [ - "toolkit/components", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "6b2bbb23d53a0767158a7ebebb8a179e8a612956", - "author": "D\u00e3o Gottwald ", - "bug_id": 398289, - "desc": "Backed out changeset 8c2e7ae5cceb because of test_bug398289.html failure", - "pushdate": "2010-02-04 16:18:05", - "backsout": [ - "8c2e7ae5cceba14fe8c491d3ac0a03be3fa29d68" - ], - "backedoutby": "", - "author_email": "dao@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 52106748.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/base/src/nsGkAtomList.h", - "content/canvas/src/nsCanvasRenderingContext2D.cpp", - "content/html/content/src/nsHTMLCanvasElement.cpp", - "layout/base/nsLayoutUtils.cpp", - "layout/base/nsLayoutUtils.h", - "layout/base/nsPresContext.cpp", - "layout/base/nsPresShell.cpp", - "layout/generic/nsFrame.cpp", - "layout/generic/nsHTMLReflowState.cpp", - "layout/generic/nsIFrame.h" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "content/canvas", - "layout/generic", - "content/base", - "content", - "content/html", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "609a51758b08110dd0fe738a88c95783d6fea658", - "author": "L. David Baron ", - "bug_id": 544505, - "desc": "Backed out changeset db1f6446efda (flip pref, bug 544505), which is intended only for 1.9.3a1 and not to stay on trunk.", - "pushdate": "2010-02-05 19:37:29", - "backsout": [ - "db1f6446efda7f9bd61ef05337ffb10c1a74d9ca" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 54607170.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/app/profile/firefox.js" - ], - "components": [ - "Firefox::General" - ], - "directories": [ - "browser", - "browser/app" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "edbd3823dceb5ddb8cb16722fb98f34d571787e5", - "author": "Boris Zbarsky ", - "bug_id": 543111, - "desc": "Backed out changeset df90f0171ba7 (bug 543111)", - "pushdate": "2010-02-09 19:35:07", - "backsout": [ - "df90f0171ba7d51f932769131d4d0992b6debaa9" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 50189415.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/crashreporter/Makefile.in", - "toolkit/crashreporter/google-breakpad/src/common/dwarf/functioninfo.cc", - "toolkit/crashreporter/google-breakpad/src/common/mac/Makefile.in" - ], - "components": [ - "Toolkit::Crash Reporting" - ], - "directories": [ - "toolkit", - "toolkit/crashreporter" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "83adba23046790d0de32384c4c12cf5974cb839e", - "author": "L. David Baron ", - "bug_id": 540692, - "desc": "Backed out changeset 0ddf975663a0 (Bug 540692: Blocklist vksaver.dll) to test the theory that it is the cause of number 1 topcrash bug 545195.", - "pushdate": "2010-02-11 05:54:10", - "backsout": [ - "0ddf975663a00d272f07e689799aa18c3133ed87" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 55076171.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/xre/nsWindowsDllBlocklist.h" - ], - "components": [], - "directories": [ - "toolkit", - "toolkit/xre" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "9ce73c19f74a239c5deda19cdaed34ce7c627058", - "author": "Benjamin Smedberg ", - "bug_id": 517097, - "desc": "Backed out changeset fe08cc555248 - bug 517097 - make enabling debug symbols more sane because it added -fno-inline to opt builds and a 50% perf regression", - "pushdate": "2010-02-11 22:17:32", - "backsout": [ - "fe08cc55524896c2d51697c1f7fdb7d7d5bab0b6" - ], - "backedoutby": "", - "author_email": "benjamin@smedbergs.us", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 59894888.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "config/autoconf.mk.in", - "config/config.mk", - "configure.in", - "js/src/config/autoconf.mk.in", - "js/src/config/config.mk", - "js/src/configure.in" - ], - "components": [ - "Firefox Build System::General" - ], - "directories": [ - "js/src", - "config", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "4e883e25a86ca9a2cf9d18294c04e25c2f1830e4", - "author": "Timothy Nikkel ", - "bug_id": 545593, - "desc": "Backed out changeset 93c7b23284b8 (Bug 545593) for causing Md oth failures on linux.", - "pushdate": "2010-02-12 22:36:40", - "backsout": [ - "93c7b23284b828d28423bfcf0f9f8f59b6f625c6" - ], - "backedoutby": "", - "author_email": "tnikkel@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 23656634.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/base/src/nsContentSink.cpp", - "content/base/src/nsContentSink.h", - "content/html/document/src/nsMediaDocument.cpp", - "content/xul/document/src/nsXULDocument.cpp", - "docshell/base/nsDocShell.cpp", - "docshell/base/nsIContentViewer.idl", - "intl/chardet/src/nsDetectionAdaptor.cpp", - "intl/chardet/src/nsObserverBase.cpp", - "layout/base/nsDocumentViewer.cpp", - "parser/html/nsHtml5TreeOpExecutor.cpp", - "view/public/nsIViewManager.h", - "view/src/nsViewManager.cpp", - "view/src/nsViewManager.h", - "webshell/public/nsIWebShellServices.h" - ], - "components": [ - "Core::Layout", - "Core::DOM: HTML Parser", - "Core::DOM: Navigation" - ], - "directories": [ - "parser/html", - "docshell/base", - "webshell", - "docshell", - "webshell/public", - "content/xul", - "content/base", - "content", - "intl", - "intl/chardet", - "parser", - "view", - "content/html", - "view/public", - "view/src", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "8098e1f09e779ef5234a73446b487a80705598b3", - "author": "Benjamin Smedberg ", - "bug_id": 543764, - "desc": "Backed out changeset 4d8d4fd97c4f - bug 543764, because of deadlocks.", - "pushdate": "2010-02-18 15:27:52", - "backsout": [ - "4d8d4fd97c4ffd5a0776bb3c6a15b3c4d281f533" - ], - "backedoutby": "", - "author_email": "benjamin@smedbergs.us", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 60475108.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "ipc/glue/AsyncChannel.cpp" - ], - "components": [], - "directories": [ - "ipc/glue", - "ipc" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "f17dbc97dae0154c797e0b35e79ed887533efa34", - "author": "Paul O\u2019Shannessy ", - "bug_id": 520659, - "desc": "Backed out changeset 2c60006b6c1f (bug 520659) because of resulting orange.", - "pushdate": "2010-02-22 23:33:54", - "backsout": [ - "2c60006b6c1fedd09095b3153dd6415765f478ff" - ], - "backedoutby": "", - "author_email": "paul@oshannessy.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 28705798.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/components/places/content/menu.xml", - "browser/components/places/content/toolbar.xml", - "browser/components/places/content/tree.xml", - "browser/components/places/content/treeView.js", - "toolkit/components/places/public/nsINavHistoryService.idl", - "toolkit/components/places/src/nsNavHistoryResult.cpp", - "toolkit/components/places/src/nsNavHistoryResult.h", - "toolkit/components/places/src/utils.js" - ], - "components": [ - "Firefox::Bookmarks & History" - ], - "directories": [ - "toolkit/components", - "browser/components", - "toolkit", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "639c6e42ee38ee67252f2400fe15d900a936b256", - "author": "Shawn Wilsher ", - "bug_id": 193911, - "desc": "Backed out changeset bb9e847a02c8 (bug 193911) due to performance regressions.", - "pushdate": "2010-02-24 01:11:56", - "backsout": [ - "bb9e847a02c8775f7ec1ead5f4b9cc93413c4522" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 54379485.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "modules/libpref/src/init/all.js", - "netwerk/cache/src/nsCacheService.cpp" - ], - "components": [], - "directories": [ - "modules/libpref", - "netwerk/cache", - "netwerk", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "1fe0f3ad7b08a85ca25cec112e138b8ff6cf41b9", - "author": "Igor Bukanov ", - "bug_id": 538463, - "desc": "Backed out changeset b9700adc3951 - the landing for the bug 538463 had wrong changes", - "pushdate": "2010-02-24 20:41:25", - "backsout": [ - "b9700adc3951772b747de841adcaa97efda50e3e" - ], - "backedoutby": "", - "author_email": "igor@mir2.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 53219186.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsgc.cpp", - "js/src/jsgc.h", - "js/src/jsinterp.cpp", - "js/src/jsinterp.h", - "js/src/jslock.cpp", - "js/src/jslock.h", - "js/src/jsobj.cpp", - "js/src/jsobj.h", - "js/src/jsops.cpp", - "js/src/jsscope.cpp", - "js/src/jsscope.h", - "js/src/jstracer.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "636964f611b3e4f72815f9f9306f26303c816816", - "author": "Nicholas Nethercote ", - "bug_id": 507089, - "desc": "Backed out changeset 3c673457c90b for bug 507089 due to mysterious Windows bustage.", - "pushdate": "2010-02-24 20:41:25", - "backsout": [ - "3c673457c90be7687423746c61bb79fddfb58a4e" - ], - "backedoutby": "", - "author_email": "nnethercote@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 31491347.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsbuiltins.h", - "js/src/jstracer.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "7594db5d213a7364f6bd375064eacbc3b80a53ad", - "author": "Benjamin Smedberg ", - "bug_id": 532208, - "desc": "Backed out changeset e4a7ea0bb90f bug 532208 - asynchronous stream delivery because write events were being dispatched in odd re-entrant states and NPP_DestroyStream was being delivered before all the stream data was delivered.", - "pushdate": "2010-02-25 11:05:10", - "backsout": [ - "e4a7ea0bb90f194343f128880d45f99be27860a7" - ], - "backedoutby": "", - "author_email": "benjamin@smedbergs.us", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 61064146.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "dom/plugins/BrowserStreamChild.cpp", - "dom/plugins/BrowserStreamChild.h", - "dom/plugins/BrowserStreamParent.cpp", - "dom/plugins/BrowserStreamParent.h", - "dom/plugins/PBrowserStream.ipdl", - "dom/plugins/PluginInstanceParent.cpp", - "dom/plugins/PluginModuleChild.cpp" - ], - "components": [], - "directories": [ - "dom", - "dom/plugins" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "3fa8aa3c951ce7b1c604cc764ff2f85536a88a6e", - "author": "Benjamin Smedberg ", - "bug_id": 548217, - "desc": "Backed out changeset 77dc38d8196e - bug 548217 because even though this patch is correct, it exposes a bug in the OOPP code which got backed out.", - "pushdate": "2010-02-25 11:59:26", - "backsout": [ - "77dc38d8196e827f0099ce97b1abffd9de408644" - ], - "backedoutby": "", - "author_email": "benjamin@smedbergs.us", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 61067402.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "modules/plugin/base/public/nsIPluginInstanceOwner.idl", - "modules/plugin/base/src/nsNPAPIPlugin.cpp", - "modules/plugin/base/src/nsNPAPIPluginInstance.cpp", - "modules/plugin/base/src/nsPluginHost.cpp", - "modules/plugin/test/testplugin/nptest.cpp" - ], - "components": [], - "directories": [ - "modules/plugin", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "840e6ea115dbc3f4fccc1c78101426bc45013a98", - "author": "Benjamin Smedberg ", - "bug_id": 548217, - "desc": "Backed out changeset f829f942873d - bug 548217 because of topcrash bug 549112", - "pushdate": "2010-02-27 22:44:12", - "backsout": [ - "f829f942873d897d26a8c88f65db2c38ed3b13c9" - ], - "backedoutby": "", - "author_email": "benjamin@smedbergs.us", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 61278888.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "modules/plugin/base/public/nsIPluginInstanceOwner.idl", - "modules/plugin/base/src/nsNPAPIPlugin.cpp", - "modules/plugin/base/src/nsNPAPIPluginInstance.cpp", - "modules/plugin/base/src/nsPluginHost.cpp", - "modules/plugin/test/testplugin/nptest.cpp" - ], - "components": [], - "directories": [ - "modules/plugin", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "81b2e55ea5b454ac88c2894961709a984eaa572c", - "author": "Daniel Holbert ", - "bug_id": 547333, - "desc": "Backed out changeset e9ab6e4d121d (Bug 547333 followup) due to debug mochitest orange.", - "pushdate": "2010-03-02 16:30:18", - "backsout": [ - "e9ab6e4d121d97c2f8be97229e05ac3c53d43091" - ], - "backedoutby": "", - "author_email": "dholbert@cs.stanford.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 56716345.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/smil/crashtests/483584-1.svg", - "content/smil/crashtests/483584-2.svg", - "content/smil/crashtests/crashtests.list", - "content/svg/content/src/nsSVGElement.cpp", - "layout/base/nsPresShell.cpp" - ], - "components": [], - "directories": [ - "content/smil", - "content", - "content/svg", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "44ef1e2129706317a17b29e7ff8bdb04b2424342", - "author": "Boris Zbarsky ", - "bug_id": 503832, - "desc": "Backed out changeset 2da8ac54d264 (followup to bug 503832)", - "pushdate": "2010-03-09 14:37:10", - "backsout": [ - "2da8ac54d264738d4a40d1d26c7bd6c7e37572ee" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 52590738.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "docshell/test/browser/browser_bug503832.js" - ], - "components": [ - "Core::DOM: Navigation" - ], - "directories": [ - "docshell/test", - "docshell" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "d11772a5043cbc951328ba53c188f1c7fcc7e73b", - "author": "Boris Zbarsky ", - "bug_id": 550882, - "desc": "Backed out changeset c7c0db9074c7 (bug 550882) on suspicion of causing a Tsspider regression.", - "pushdate": "2010-03-09 14:37:10", - "backsout": [ - "c7c0db9074c70f9d5ed3966fa1bb2283800a69b4" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 52590738.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/generic/nsGfxScrollFrame.cpp", - "layout/reftests/bugs/502447-2-ref.html", - "layout/reftests/bugs/502447-2.html", - "layout/reftests/bugs/550882-1-ref.html", - "layout/reftests/bugs/550882-1.html", - "layout/reftests/bugs/550882-2-ref.html", - "layout/reftests/bugs/550882-2.html" - ], - "components": [ - "Core::Layout", - "Core::Layout: Scrolling and Overflow" - ], - "directories": [ - "layout/reftests", - "layout/generic", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "eaf1574b10b627e935444b631df4e9db2e4db496", - "author": "Boris Zbarsky ", - "bug_id": 503832, - "desc": "Backed out changeset dc835fb21c0c (bug 503832) on suspicion of causing a Tsspider regression.", - "pushdate": "2010-03-09 14:37:10", - "backsout": [ - "dc835fb21c0c9bc4eb03c956c76963d8947396c8" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 52590738.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "docshell/base/nsDocShell.cpp", - "docshell/test/browser/Makefile.in", - "docshell/test/browser/browser_bug503832.js", - "docshell/test/browser/file_bug503832.html" - ], - "components": [ - "Core::DOM: Navigation" - ], - "directories": [ - "docshell/test", - "docshell/base", - "docshell" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "76a071c6dfd0e74dd1f672eaa2394a037eb5afec", - "author": "Boris Zbarsky ", - "bug_id": 550882, - "desc": "Backed out changeset f0239b3789d9 (bug 550882) because it causes a Tsspider regression.", - "pushdate": "2010-03-11 06:00:37", - "backsout": [ - "f0239b3789d997dc94989c0ae67c4566c979a8c5" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 52732545.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/generic/nsGfxScrollFrame.cpp", - "layout/reftests/bugs/502447-2-ref.html", - "layout/reftests/bugs/502447-2.html", - "layout/reftests/bugs/550882-1-ref.html", - "layout/reftests/bugs/550882-1.html", - "layout/reftests/bugs/550882-2-ref.html", - "layout/reftests/bugs/550882-2.html" - ], - "components": [ - "Core::Layout", - "Core::Layout: Scrolling and Overflow" - ], - "directories": [ - "layout/reftests", - "layout/generic", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "55f6e18f71cd0906e457317f45f4bdf14f28ec53", - "author": "Markus Stange ", - "bug_id": 538187, - "desc": "Backed out changeset d906e4dd1e49, bug 538187 - CSS changes for :-moz-window-inactive pseudoclass because of test_righttoleft.xul test failures.", - "pushdate": "2010-03-17 19:06:03", - "backsout": [ - "d906e4dd1e4957d46aaad39dfbd6f64990ca52dd" - ], - "backedoutby": "", - "author_email": "mstange@themasta.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 54063259.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/themes/pinstripe/browser/browser.css", - "browser/themes/pinstripe/browser/places/organizer.css", - "toolkit/themes/pinstripe/global/console/console.css", - "toolkit/themes/pinstripe/global/jar.mn", - "toolkit/themes/pinstripe/global/preferences.css", - "toolkit/themes/pinstripe/global/toolbar/toolbar-background-inactive.png", - "toolkit/themes/pinstripe/global/toolbar/toolbar-background.gif", - "toolkit/themes/pinstripe/global/viewbuttons.css", - "toolkit/themes/pinstripe/mozapps/downloads/downloads.css", - "toolkit/themes/pinstripe/mozapps/update/updates.css", - "toolkit/themes/winstripe/global/global.css", - "toolkit/themes/winstripe/global/jar.mn", - "toolkit/themes/winstripe/global/menu.css" - ], - "components": [], - "directories": [ - "toolkit/themes", - "browser/themes", - "toolkit", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "11d4bebe3514ef47021734d052468df2ed7315ff", - "author": "Markus Stange ", - "bug_id": 508482, - "desc": "Backed out changeset e17c076aceea, bug 508482 (:-moz-window-inactive pseudoclass) because of test_righttoleft.xul test failures.", - "pushdate": "2010-03-17 19:06:03", - "backsout": [ - "e17c076aceea1afeb0d105c1a3b701d698a6c134" - ], - "backedoutby": "", - "author_email": "mstange@themasta.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 54063259.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "accessible/src/base/nsDocAccessible.cpp", - "content/base/public/nsIDocument.h", - "content/base/public/nsIDocumentObserver.h", - "content/base/src/nsDocument.cpp", - "content/base/src/nsDocument.h", - "content/xul/document/src/nsXULDocument.cpp", - "dom/base/nsGlobalWindow.cpp", - "dom/base/nsGlobalWindow.h", - "dom/base/nsPIDOMWindow.h", - "dom/tests/mochitest/chrome/Makefile.in", - "dom/tests/mochitest/chrome/test_activation.xul", - "dom/tests/mochitest/chrome/window_activation.xul", - "layout/base/nsPresContext.cpp", - "layout/base/nsPresContext.h", - "layout/base/nsPresShell.cpp", - "layout/style/nsCSSPseudoClassList.h", - "layout/style/nsCSSRuleProcessor.cpp", - "layout/style/nsCSSRuleProcessor.h", - "layout/style/nsHTMLCSSStyleSheet.cpp", - "layout/style/nsHTMLCSSStyleSheet.h", - "layout/style/nsHTMLStyleSheet.cpp", - "layout/style/nsHTMLStyleSheet.h", - "layout/style/nsIStyleRuleProcessor.h", - "layout/style/nsRuleProcessorData.h", - "layout/style/nsStyleSet.cpp", - "layout/style/nsStyleSet.h", - "layout/style/nsTransitionManager.cpp", - "layout/style/nsTransitionManager.h", - "layout/style/test/test_selectors.html" - ], - "components": [ - "Core::Layout", - "Core::DOM: Core & HTML", - "Core::CSS Parsing and Computation", - "Core::CSS Transitions and Animations" - ], - "directories": [ - "dom/tests", - "accessible/src", - "accessible", - "dom/base", - "content/xul", - "content/base", - "content", - "dom", - "layout/style", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "33925fdc28073fc9a47ed32da1a20ee2c2e246b5", - "author": "Daniel Holbert ", - "bug_id": 541588, - "desc": "Backed out changeset 59f507847beb (bug 541588) to see if it was responsible for minor SVG perf regression.", - "pushdate": "2010-03-18 14:58:59", - "backsout": [ - "59f507847bebe3248f436d9c95e9acfd14871efc" - ], - "backedoutby": "", - "author_email": "dholbert@cs.stanford.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 58093266.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/base/public/nsIDocument.h", - "content/smil/nsSMILAnimationController.cpp", - "content/smil/nsSMILAnimationController.h", - "layout/base/nsPresShell.cpp" - ], - "components": [], - "directories": [ - "content/smil", - "content/base", - "content", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "09b395158b415b7f18dbc6c744d7d04f73fb57a5", - "author": "Daniel Holbert ", - "bug_id": 553075, - "desc": "Backed out changeset 665b48fbfd28 (bug 553075) to see if it was responsible for 1% SVG/DHTML regressions on Win7.", - "pushdate": "2010-03-21 05:57:22", - "backsout": [ - "665b48fbfd2840e6d309c9703cbef46a9df0cad2" - ], - "backedoutby": "", - "author_email": "dholbert@cs.stanford.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 58319969.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/smil/nsSMILAnimationController.cpp", - "content/smil/nsSMILAnimationController.h" - ], - "components": [], - "directories": [ - "content", - "content/smil" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "f85c2efb4eaf76c06c6a8438e77c5701cb8ba604", - "author": "Markus Stange ", - "bug_id": 538242, - "desc": "Backed out changeset 77e1ae41987e, bug 538242, because of window bounds related test failures.", - "pushdate": "2010-03-25 10:31:30", - "backsout": [ - "77e1ae41987e11e348b4a60047694308b2425e6c" - ], - "backedoutby": "", - "author_email": "mstange@themasta.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 54723586.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "widget/src/cocoa/nsCocoaWindow.h", - "widget/src/cocoa/nsCocoaWindow.mm" - ], - "components": [], - "directories": [ - "widget", - "widget/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "670efad709bfa3ba522ba3a2f61b48cde4152f99", - "author": "Daniel Holbert ", - "bug_id": 551298, - "desc": "Backed out changeset 13819d2e9bd8 (Bug 551298) due to Linux debug mochitest-5 orange", - "pushdate": "2010-04-01 16:46:48", - "backsout": [ - "13819d2e9bd852c11f7ed0c7774dd03867283054" - ], - "backedoutby": "", - "author_email": "dholbert@cs.stanford.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 59309335.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/smil/nsSMILInstanceTime.h", - "content/xbl/src/nsXBLBinding.h", - "content/xbl/src/nsXBLInsertionPoint.cpp", - "content/xbl/src/nsXBLInsertionPoint.h", - "content/xbl/src/nsXBLPrototypeBinding.cpp", - "content/xslt/src/xslt/txMozillaStylesheetCompiler.cpp", - "content/xslt/src/xslt/txStandaloneStylesheetCompiler.cpp", - "content/xslt/src/xslt/txStylesheet.h", - "content/xslt/src/xslt/txStylesheetCompiler.cpp", - "content/xslt/src/xslt/txStylesheetCompiler.h", - "content/xul/templates/src/nsRDFBinding.h" - ], - "components": [], - "directories": [ - "content/smil", - "content/xbl", - "content/xul", - "content", - "content/xslt" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "d3acd60e4d5361a9e8729f365dc3ba68cee131ba", - "author": "Daniel Holbert ", - "bug_id": 551298, - "desc": "Backed out changeset afcaf3670c21 (Bug 551298) due to Linux debug mochitest-5 orange", - "pushdate": "2010-04-01 16:46:48", - "backsout": [ - "afcaf3670c21042a3baa51fdd712f241725f37a5" - ], - "backedoutby": "", - "author_email": "dholbert@cs.stanford.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 59309335.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/style/nsCSSValue.cpp", - "layout/style/nsCSSValue.h", - "layout/style/nsStyleStruct.cpp", - "layout/style/nsStyleStruct.h" - ], - "components": [ - "Core::CSS Parsing and Computation" - ], - "directories": [ - "layout/style", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "50731f2bd852892bc11944485f5f93e0c27fce4b", - "author": "Daniel Holbert ", - "bug_id": 551298, - "desc": "Backed out changeset 29bc09de2f77 (Bug 551298) due to Linux debug mochitest-5 orange", - "pushdate": "2010-04-01 16:46:48", - "backsout": [ - "29bc09de2f77959309d104ce26e3877f76c3d1e0" - ], - "backedoutby": "", - "author_email": "dholbert@cs.stanford.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 59309335.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/svg/content/src/nsSVGMatrix.cpp", - "content/svg/content/src/nsSVGMatrix.h", - "gfx/layers/Layers.h", - "gfx/thebes/public/gfxASurface.h", - "gfx/thebes/public/gfxContext.h", - "gfx/thebes/public/gfxFont.h", - "gfx/thebes/public/gfxGdkNativeRenderer.h", - "gfx/thebes/public/gfxPath.h", - "gfx/thebes/public/gfxPattern.h", - "gfx/thebes/public/gfxRect.h", - "gfx/thebes/public/gfxTypes.h", - "gfx/thebes/public/gfxUserFontSet.h", - "gfx/thebes/src/gfxFontconfigUtils.h", - "gfx/thebes/src/gfxPangoFonts.cpp", - "layout/printing/nsPrintData.h" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "gfx/layers", - "gfx/thebes", - "layout/printing", - "content", - "content/svg", - "gfx", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "c0395cad35f39dbcc3d0514c16f468a1a4ae84b9", - "author": "Daniel Holbert ", - "bug_id": 551298, - "desc": "Backed out changeset e94819033c77 (Bug 551298) due to Linux debug mochitest-5 orange", - "pushdate": "2010-04-01 16:46:48", - "backsout": [ - "e94819033c77aab855f2661b9fe3d61c41bfa381" - ], - "backedoutby": "", - "author_email": "dholbert@cs.stanford.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 59309335.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "xpcom/glue/nsISupportsImpl.h" - ], - "components": [], - "directories": [ - "xpcom/glue", - "xpcom" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "df2717c37e7f70da06d2e1f46a288743b3414264", - "author": "Daniel Holbert ", - "bug_id": 551298, - "desc": "Backed out changeset fe801c8a2090 (Bug 551298) due to Linux debug mochitest-5 orange", - "pushdate": "2010-04-01 16:46:48", - "backsout": [ - "fe801c8a20904bb40bd2a64fd8fb5a0bd463e104" - ], - "backedoutby": "", - "author_email": "dholbert@cs.stanford.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 59309335.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "gfx/thebes/public/gfxTypes.h", - "xpcom/glue/nsISupportsImpl.h", - "xpcom/glue/nsISupportsUtils.h" - ], - "components": [], - "directories": [ - "xpcom/glue", - "gfx/thebes", - "gfx", - "xpcom" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "f843e0928e1119d1fbafba72e5ed1aea575fbbe5", - "author": "Ted Mielczarek ", - "bug_id": 549427, - "desc": "Backed out changeset 7886dc6ae0c8 - bug 549427 - tests tarball should be zip files (CLOSED TREE)", - "pushdate": "2010-04-07 17:34:08", - "backsout": [ - "7886dc6ae0c8ca8d769b956561174c0acc8b4340" - ], - "backedoutby": "", - "author_email": "ted.mielczarek@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 64629884.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "testing/testsuite-targets.mk", - "toolkit/mozapps/installer/package-name.mk" - ], - "components": [ - "Firefox::Installer", - "Testing::General" - ], - "directories": [ - "toolkit/mozapps", - "testing", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "85454945336e2c5bac27ff125e2ae27200cb416c", - "author": "Alexander Surkov ", - "bug_id": 557768, - "desc": "backout e88d2327e25d, bug 557768", - "pushdate": "2010-04-08 14:00:43", - "backsout": [ - "e88d2327e25d600ce326615f682db1d79d2bb10e" - ], - "backedoutby": "", - "author_email": "surkov.alexander@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 56893595.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "accessible/src/base/nsAccessibilityService.cpp" - ], - "components": [], - "directories": [ - "accessible/src", - "accessible" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "47ef6d724773f2eb7157f93c1da8d53a8589f26a", - "author": "Timothy Nikkel ", - "bug_id": 553366, - "desc": "Backout 761790684f3b (Bug 553366) for suspicion of causing tsvg_opacity regression.", - "pushdate": "2010-04-11 02:54:10", - "backsout": [ - "761790684f3be4ebb9c30895d1864dbd12516a9a" - ], - "backedoutby": "", - "author_email": "tnikkel@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 28596884.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/base/public/nsIDocument.h", - "content/base/src/nsDocument.cpp", - "content/base/src/nsDocument.h", - "layout/base/nsPresShell.cpp" - ], - "components": [], - "directories": [ - "content/base", - "content", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "a5009861bd1b4c01663aa01a4c219379b85178b8", - "author": "Timothy Nikkel ", - "bug_id": 553359, - "desc": "Backed out changeset b4fcd21cb6e5 (bug 553359) to try to fix tsvg_opacity regression.", - "pushdate": "2010-04-11 05:13:09", - "backsout": [ - "b4fcd21cb6e54755c4efb4fbe0cb53dfc71bf2d6" - ], - "backedoutby": "", - "author_email": "tnikkel@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 28605223.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "docshell/base/nsDocShell.cpp", - "layout/base/nsPresContext.cpp", - "layout/base/nsPresContext.h" - ], - "components": [ - "Core::Layout", - "Core::DOM: Navigation" - ], - "directories": [ - "layout/base", - "docshell/base", - "layout", - "docshell" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "e4496c8a44e560c48cb228851239b177c08859a4", - "author": "Timothy Nikkel ", - "bug_id": 553363, - "desc": "Backed out changeset 633cc14c86b8 (bug 553363) to try to fix tsvg_opacity regression.", - "pushdate": "2010-04-11 05:13:09", - "backsout": [ - "633cc14c86b81a341d461982504b5366843add39" - ], - "backedoutby": "", - "author_email": "tnikkel@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 28605223.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "uriloader/base/nsDocLoader.cpp", - "uriloader/base/nsDocLoader.h" - ], - "components": [ - "Core::DOM: Navigation" - ], - "directories": [ - "uriloader/base", - "uriloader" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "df3a1a39837f15a5a51507b6af84deb81a1e9ce6", - "author": "Timothy Nikkel ", - "bug_id": 222436, - "desc": "Backed out changeset 3a27158cbdd6 (bug 222436) to try to fix tsvg_opacity regression.", - "pushdate": "2010-04-11 05:13:09", - "backsout": [ - "3a27158cbdd697fe5528658c4676cea537e50b6a" - ], - "backedoutby": "", - "author_email": "tnikkel@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 28605223.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/base/nsPresContext.cpp", - "layout/base/nsPresContext.h" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "e69034463eebbd368322b97559b4ae95b7722aaf", - "author": "Timothy Nikkel ", - "bug_id": 505835, - "desc": "Backed out changeset 02e8391669c3 (Bug 505835) for suspicion of causing tsvg_opacity regression.", - "pushdate": "2010-04-11 07:11:24", - "backsout": [ - "02e8391669c3975821e20d9a5485eaa27cf0a39d" - ], - "backedoutby": "", - "author_email": "tnikkel@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 28612318.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/xul/base/src/tree/src/nsTreeBodyFrame.cpp" - ], - "components": [], - "directories": [ - "layout/xul", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "83bf27b04ddc38081b87125daa2468b17089cef5", - "author": "Timothy Nikkel ", - "bug_id": 553359, - "desc": "Backed out changeset ae2093359899 (Bug 553359) for tsvg_opacity regression.", - "pushdate": "2010-04-12 00:28:43", - "backsout": [ - "ae2093359899b9db68d3343fc9420cd770746098" - ], - "backedoutby": "", - "author_email": "tnikkel@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 28674557.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "docshell/base/nsDocShell.cpp", - "layout/base/nsPresContext.cpp", - "layout/base/nsPresContext.h" - ], - "components": [ - "Core::Layout", - "Core::DOM: Navigation" - ], - "directories": [ - "layout/base", - "docshell/base", - "layout", - "docshell" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "23e71fa6bd6e058498c18f6f7a9a8875fc245115", - "author": "Andreas Gal ", - "bug_id": 557914, - "desc": "Backed out changeset 687d1e4c213e (bug 557914).", - "pushdate": "2010-04-15 16:08:37", - "backsout": [ - "687d1e4c213ef0fc1d22e28deeb4a0643e807cbf" - ], - "backedoutby": "", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 56348239.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jscntxt.h", - "js/src/jsgc.cpp", - "js/src/jsiter.cpp", - "js/src/jsiter.h" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "0fc19b24294756c136b02ec922c3eba656c2f623", - "author": "Boris Zbarsky ", - "bug_id": 556830, - "desc": "Backed out changeset 698ace1f1027 (bug 556830) for causing jsreftest failures.", - "pushdate": "2010-04-15 16:08:37", - "backsout": [ - "698ace1f10272d60078844f428be76fd98ab1537" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 55793025.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsobj.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "57f8cd34cf6e0ca264e00e73ac9eea979136090c", - "author": "Andreas Gal ", - "bug_id": 558058, - "desc": "Backed out changeset 61de331861af (bug 558058).", - "pushdate": "2010-04-15 16:08:37", - "backsout": [ - "61de331861afee87bb0e9c369b06b6c663a8336e" - ], - "backedoutby": "", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 56348239.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jscntxt.cpp", - "js/src/jscntxt.h", - "js/src/jsiter.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "5896d4f94aee0ceb07c2a877b26a498855f4cb77", - "author": "Karl Tomlinson ", - "bug_id": 393760, - "desc": "backout e1e1143be432 due to reftest failure in layout/reftests/bugs/393760-1.xml b=552044", - "pushdate": "2010-04-21 05:21:59", - "backsout": [ - "e1e1143be432679e02bce5f647f6de822835dfb6" - ], - "backedoutby": "", - "author_email": "karlt+@karlt.net", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 56426895.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/mathml/content/src/nsMathMLElement.cpp", - "layout/reftests/mathml/mathbackground-1-ref.mml", - "layout/reftests/mathml/mathbackground-1.mml", - "layout/reftests/mathml/mathbackground-2-ref.mml", - "layout/reftests/mathml/mathbackground-2.mml", - "layout/reftests/mathml/mathbackground-3-ref.mml", - "layout/reftests/mathml/mathbackground-3.mml", - "layout/reftests/mathml/mathbackground-4-ref.mml", - "layout/reftests/mathml/mathbackground-4.mml", - "layout/reftests/mathml/mathcolor-1-ref.mml", - "layout/reftests/mathml/mathcolor-1.mml", - "layout/reftests/mathml/mathcolor-2-ref.mml", - "layout/reftests/mathml/mathcolor-2.mml", - "layout/reftests/mathml/mathcolor-3-ref.mml", - "layout/reftests/mathml/mathcolor-3.mml", - "layout/reftests/mathml/mathcolor-4-ref.mml", - "layout/reftests/mathml/mathcolor-4.mml", - "layout/reftests/mathml/reftest.list" - ], - "components": [ - "Core::MathML" - ], - "directories": [ - "content/mathml", - "content", - "layout", - "layout/reftests" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "f1bc91ce880e02e519f271f9c9b608961f7a2533", - "author": "Robert Sayre ", - "bug_id": 561011, - "desc": "Backed out changeset 1af19eedbde2 -- Fix sharpSlots vs. with grudge-match (561011, r=mrbkap).", - "pushdate": "2010-04-24 21:50:01", - "backsout": [ - "1af19eedbde29a07c643cc407f9991d9742308b0" - ], - "backedoutby": "", - "author_email": "sayrer@gmail.com", - "reviewers": [ - "mrbkap" - ], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 58933968.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsparse.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "9cefbeff6938b64e8b8310dcc804aab85f922222", - "author": "Karl Tomlinson ", - "bug_id": 559492, - "desc": "backout 32502a2c5671 b=559492 due to seg fault in storage/test/test_transaction_helper.cpp possibly in DumpLeakedURLs", - "pushdate": "2010-04-28 22:40:27", - "backsout": [ - "32502a2c5671185d801d91884579d1f93f516d82" - ], - "backedoutby": "", - "author_email": "karlt+@karlt.net", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 57094003.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "netwerk/base/src/nsStandardURL.cpp" - ], - "components": [], - "directories": [ - "netwerk/base", - "netwerk" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "ff9f542d06831528ededff7c28bfeee7168ab45a", - "author": "Timothy Nikkel ", - "bug_id": 222436, - "desc": "Backed out changeset e6134e94c6cb (Bug 222436) for possible Tsvg_opacity regression.", - "pushdate": "2010-05-02 07:02:16", - "backsout": [ - "e6134e94c6cbb585cfba790bfa4a89d86e8cc502" - ], - "backedoutby": "", - "author_email": "tnikkel@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 30426170.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/base/nsPresContext.cpp", - "layout/base/nsPresContext.h" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "eb4e203caf33c1a4351b61987170e675b2e77b6d", - "author": "Andreas Gal ", - "bug_id": 560358, - "desc": "Backed out changeset 35c25547a135 (bug 560358).", - "pushdate": "2010-05-04 17:34:44", - "backsout": [ - "35c25547a135348070a3e42cc0b38b3ccd46783c" - ], - "backedoutby": "", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 57995006.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsapi.cpp", - "js/src/jscntxt.h", - "js/src/jsregexp.cpp", - "js/src/jsregexp.h", - "js/src/jsstr.cpp", - "js/src/xpconnect/src/XPCSafeJSObjectWrapper.cpp" - ], - "components": [ - "Core::JavaScript Engine" - ], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "8d256e7846959ca614b1da225d2786396888d770", - "author": "Jason Orendorff ", - "bug_id": 559653, - "desc": "Backed out changeset ae857d818793 (bug 559653) due to test failures.", - "pushdate": "2010-05-04 17:34:44", - "backsout": [ - "ae857d81879311f67ff49e4f4e677e2279cc1bdd" - ], - "backedoutby": "", - "author_email": "jorendorff@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 60899013.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsdbgapi.cpp", - "js/src/jsdbgapi.h", - "js/src/jsobj.cpp", - "js/src/jsops.cpp", - "js/src/jsscope.cpp", - "js/src/jsscope.h", - "js/src/jstracer.cpp", - "js/src/jstracer.h" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "5aa83042d4d3147c0f9311dc38c714ce19783b5a", - "author": "Jason Orendorff ", - "bug_id": 559653, - "desc": "Backed out changeset 73f23528bed6 (bug 559653, again)", - "pushdate": "2010-05-04 17:34:44", - "backsout": [ - "73f23528bed6843a1c3ece06425a3bbe9398f380" - ], - "backedoutby": "", - "author_email": "jorendorff@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 60899013.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsdbgapi.cpp", - "js/src/jsdbgapi.h", - "js/src/jsobj.cpp", - "js/src/jsops.cpp", - "js/src/jsscope.cpp", - "js/src/jsscope.h", - "js/src/jstracer.cpp", - "js/src/jstracer.h", - "js/src/trace-test/tests/basic/testMethodWriteBarrier.js", - "js/src/trace-test/tests/basic/testMethodWriteBarrier2.js", - "js/src/trace-test/tests/basic/testMethodWriteBarrier3.js" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "1b3deed2d784997d6b35397fff8355832255d857", - "author": "Ted Mielczarek ", - "bug_id": 559854, - "desc": "Backed out changeset 510669ff9ba1 \"bug 559854 - Compile target xpidl only if libIDL is configured when cross compiling. r=ted\" for OS X bustage", - "pushdate": "2010-05-05 15:00:40", - "backsout": [ - "510669ff9ba1d9e25c0d131b8c2618e978312134" - ], - "backedoutby": "", - "author_email": "ted.mielczarek@gmail.com", - "reviewers": [ - "ted" - ], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 67039876.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "configure.in", - "xpcom/typelib/xpidl/Makefile.in" - ], - "components": [], - "directories": [ - "xpcom/typelib", - "xpcom" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "90d08f21fbf0b78f42cd9e312097d9a295fdb978", - "author": "L. David Baron ", - "bug_id": 563023, - "desc": "Backed out changeset 09a936531466 (bug 563023) due to Mac reftest failure.", - "pushdate": "2010-05-05 20:53:39", - "backsout": [ - "09a9365314664a2d6719ffe77ad76dc61e50606d" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 62301340.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/reftests/font-face/src-list-local-fallback-ref.html" - ], - "components": [ - "Core::CSS Parsing and Computation" - ], - "directories": [ - "layout/reftests", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "ea445ca9c148e0996b4794c07b9e549d7d64cb31", - "author": "Phil Ringnalda ", - "bug_id": 533891, - "desc": "Backed out changeset e074757a15aa (bug 533891) due to xpcshell orange after a clobber", - "pushdate": "2010-05-11 04:41:14", - "backsout": [ - "e074757a15aa7bdf7430980f81186403886afcd7" - ], - "backedoutby": "", - "author_email": "philringnalda@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 60060484.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/app/profile/firefox.js", - "browser/installer/removed-files.in", - "content/base/src/nsObjectLoadingContent.cpp", - "content/base/src/nsObjectLoadingContent.h", - "modules/plugin/Makefile.in", - "modules/plugin/base/public/Makefile.in", - "modules/plugin/base/public/nsDefaultPlugin.h", - "modules/plugin/base/src/nsPluginHost.cpp", - "modules/plugin/base/src/nsPluginHost.h", - "modules/plugin/base/src/nsPluginTags.cpp", - "modules/plugin/base/src/nsPluginTags.h", - "modules/plugin/default/mac/DefaultPlugin.mm", - "modules/plugin/default/mac/DefaultPlugin.xcodeproj/TemplateIcon.tiff", - "modules/plugin/default/mac/DefaultPlugin.xcodeproj/project.pbxproj", - "modules/plugin/default/mac/English.lproj/InfoPlist.strings", - "modules/plugin/default/mac/Info.plist", - "modules/plugin/default/mac/Makefile.in", - "modules/plugin/default/mac/plugin.png", - "modules/plugin/default/os2/Makefile.in", - "modules/plugin/default/os2/dbg.cpp", - "modules/plugin/default/os2/dbg.h", - "modules/plugin/default/os2/dialogs.cpp", - "modules/plugin/default/os2/dialogs.h", - "modules/plugin/default/os2/maindll.cpp", - "modules/plugin/default/os2/npnulos2.h", - "modules/plugin/default/os2/npnulos2.ico", - "modules/plugin/default/os2/npnulos2.rc", - "modules/plugin/default/os2/npos2.cpp", - "modules/plugin/default/os2/npshell.cpp", - "modules/plugin/default/os2/plugin.cpp", - "modules/plugin/default/os2/plugin.h", - "modules/plugin/default/os2/utils.cpp", - "modules/plugin/default/os2/utils.h", - "modules/plugin/default/unix/Makefile.in", - "modules/plugin/default/unix/npshell.c", - "modules/plugin/default/unix/npunix.c", - "modules/plugin/default/unix/nullplugin.c", - "modules/plugin/default/unix/nullplugin.h", - "modules/plugin/default/windows/Makefile.in", - "modules/plugin/default/windows/Npnul32.dsp", - "modules/plugin/default/windows/dbg.cpp", - "modules/plugin/default/windows/dbg.h", - "modules/plugin/default/windows/dialogs.cpp", - "modules/plugin/default/windows/dialogs.h", - "modules/plugin/default/windows/maindll.cpp", - "modules/plugin/default/windows/npnul32.def", - "modules/plugin/default/windows/npnul32.dsw", - "modules/plugin/default/windows/npnul32.rc", - "modules/plugin/default/windows/npshell.cpp", - "modules/plugin/default/windows/npwin.cpp", - "modules/plugin/default/windows/plugicon.ico", - "modules/plugin/default/windows/plugin.cpp", - "modules/plugin/default/windows/plugin.h", - "modules/plugin/default/windows/resource.h", - "modules/plugin/default/windows/utils.cpp", - "modules/plugin/default/windows/utils.h" - ], - "components": [ - "Firefox::General", - "Firefox::Installer" - ], - "directories": [ - "browser/app", - "modules/plugin", - "browser/installer", - "content/base", - "content", - "browser", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "357d302157060b473fb7fe8c0a27918071f310d5", - "author": "Timothy Nikkel ", - "bug_id": 559996, - "desc": "Backed out changeset a6138098775f (bug 559996) for causing orange.", - "pushdate": "2010-05-12 02:24:53", - "backsout": [ - "a6138098775fcacd0030e7679206553bbef296ec" - ], - "backedoutby": "", - "author_email": "tnikkel@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 31273527.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/base/public/nsIDocument.h", - "content/base/src/nsContentSink.cpp", - "content/base/src/nsContentSink.h", - "content/base/src/nsDocument.cpp", - "content/base/src/nsDocument.h", - "content/test/reftest/bug559996-iframe.html", - "content/test/reftest/bug559996-ref-iframe.html", - "content/test/reftest/bug559996-ref.html", - "content/test/reftest/bug559996.html", - "content/test/reftest/reftest.list", - "layout/base/nsDocumentViewer.cpp", - "layout/base/nsPresShell.cpp" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "content/test", - "content/base", - "content", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "01befa5163eed6f462d5b920bc0470599dc2cb2d", - "author": "Timothy Nikkel ", - "bug_id": 564705, - "desc": "back out e40cbab6a972 (Bug 564705) 590da60fd253 (Bug 507628 and bug 507991) b166415b8c3f (Bug 564368) 0dac5d3eeb97 (Bug 564063) 116e56d84770 (Bug 563407) c51c93f5240f (Bug 536495) for some orange", - "pushdate": "2010-05-12 03:01:28", - "backsout": [ - "e40cbab6a9726591312375194167c10e065471de" - ], - "backedoutby": "", - "author_email": "tnikkel@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 31275722.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/base/src/nsGenericElement.cpp", - "content/base/src/nsTextNode.cpp", - "content/xbl/crashtests/507628-1.xhtml", - "content/xbl/crashtests/507991-1.xhtml", - "content/xbl/crashtests/crashtests.list", - "layout/base/crashtests/564063-1.html", - "layout/base/crashtests/crashtests.list", - "layout/base/nsCSSFrameConstructor.cpp", - "layout/generic/crashtests/564368-1.xhtml", - "layout/generic/crashtests/crashtests.list", - "layout/generic/nsFrameSetFrame.cpp", - "layout/xul/base/src/nsTextBoxFrame.cpp", - "modules/libpr0n/src/imgRequestProxy.cpp" - ], - "components": [ - "Core::Layout", - "Core::Layout: Images, Video, and HTML Frames" - ], - "directories": [ - "layout/generic", - "modules/libpr0n", - "layout/xul", - "content/base", - "content", - "content/xbl", - "layout", - "layout/base", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "c861185afd4a103b322aed36a12e4b7462790d9f", - "author": "Boris Zbarsky ", - "bug_id": 562649, - "desc": "Backed out changeset 6a71deda9822 (bug 562649) due to browser-chrome orange.", - "pushdate": "2010-05-14 17:04:31", - "backsout": [ - "6a71deda9822c26086498ca9b2bfe3427b169e13" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 58301979.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/base/content/browser.js", - "browser/base/content/tabbrowser.xml", - "browser/base/content/test/Makefile.in", - "browser/base/content/test/browser_bug562649.js" - ], - "components": [ - "Firefox::General" - ], - "directories": [ - "browser/base", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "c95e1d49bc792d5ed6255c37f5403048be77559f", - "author": "Boris Zbarsky ", - "bug_id": 564979, - "desc": "Backed out changeset 90d627f2471e (bug 564979) because it broke mochitests.", - "pushdate": "2010-05-17 19:00:34", - "backsout": [ - "90d627f2471eb38d96d8b1ccef04465c8363da53" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 58568142.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/base/public/nsINode.h", - "content/base/src/nsGenericElement.cpp", - "extensions/spellcheck/src/mozInlineSpellWordUtil.cpp", - "js/src/xpconnect/src/dom_quickstubs.qsconf" - ], - "components": [ - "Core::Spelling checker" - ], - "directories": [ - "js/src", - "extensions/spellcheck", - "content/base", - "content", - "extensions", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "9d40cce434865515df81912ce22d2fdfa6e80a61", - "author": "Peter Van der Beken ", - "bug_id": 560462, - "desc": "Back out ba983923066f (bug 560462 part 3c) to see if it fixes test_aria_imgmap.html orange.", - "pushdate": "2010-06-01 18:27:21", - "backsout": [ - "ba983923066fbbe4b5df8a872fdeb989386b5a4d" - ], - "backedoutby": "", - "author_email": "peterv@propagandism.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 61352668.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/xpconnect/src/dom_quickstubs.qsconf" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "c482200ed43651dec55ce38e56134d43e115a5aa", - "author": "Justin Wood ", - "bug_id": 564591, - "desc": "Backout 69df59e99741 -- Bug 564591: Speed up BindToTree/UnbindFromTree by only doing XBL related work when needed.", - "pushdate": "2010-06-04 01:45:41", - "backsout": [ - "69df59e99741365f71372a7557e6fe4dc0d1cb8d" - ], - "backedoutby": "", - "author_email": "Callek@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 61172406.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/base/src/nsGenericDOMDataNode.cpp", - "content/base/src/nsGenericElement.cpp", - "content/xbl/src/nsBindingManager.cpp", - "content/xbl/src/nsBindingManager.h" - ], - "components": [], - "directories": [ - "content/base", - "content", - "content/xbl" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "b18beea31ad3fd3130cdcd7b8195b0a04fb5e681", - "author": "Jason Orendorff ", - "bug_id": 559653, - "desc": "Back out changeset a72a9d72c028 (bug 559653, remove SetPropHit). Checking to see if this caused a 5% Dromaeo regression today.", - "pushdate": "2010-06-06 19:08:23", - "backsout": [ - "a72a9d72c0282ec34aec9014bc16ec8c475c69b2" - ], - "backedoutby": "", - "author_email": "jorendorff@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 63755832.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsdbgapi.cpp", - "js/src/jsdbgapi.h", - "js/src/jsobj.cpp", - "js/src/jsops.cpp", - "js/src/jsscope.cpp", - "js/src/jsscope.h", - "js/src/jstracer.cpp", - "js/src/jstracer.h", - "js/src/trace-test/tests/basic/testMethodWriteBarrier.js", - "js/src/trace-test/tests/basic/testMethodWriteBarrier2.js", - "js/src/trace-test/tests/basic/testMethodWriteBarrier3.js" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "2fe89784cf66347487cbf5a9f010dce8fabbe043", - "author": "Jason Orendorff ", - "bug_id": 569735, - "desc": "Back out changeset 96dbe8a784f1 (bug 569735) due to failing tests.", - "pushdate": "2010-06-06 19:08:23", - "backsout": [ - "96dbe8a784f15719031a8716921ad50a86650a15" - ], - "backedoutby": "", - "author_email": "jorendorff@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 63755832.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsarray.cpp", - "js/src/jscntxt.h", - "js/src/jsiter.cpp", - "js/src/jsiter.h", - "js/src/jsobj.cpp", - "js/src/jsproxy.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "0ba3c58afb3abf493dabe321f29ea94072ffe2a3", - "author": "Robert Sayre ", - "bug_id": 556277, - "desc": "Backed out changeset 52be13ea0488. Bug 556277 - Compute this eagerly in more cases. r=brendan. Suspected of performance regression on SunSpider unpack-code. 80ms -> 135ms.", - "pushdate": "2010-06-06 19:08:23", - "backsout": [ - "52be13ea048813852b8c6e466d9d762433ce14c6" - ], - "backedoutby": "", - "author_email": "sayrer@gmail.com", - "reviewers": [ - "brendan" - ], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 62639470.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsapi.cpp", - "js/src/jsapi.h", - "js/src/jsinterp.cpp", - "js/src/jsinterp.h", - "js/src/jsobj.cpp", - "js/src/jsobj.h", - "js/src/jsops.cpp", - "js/src/jsstr.cpp", - "js/src/jstracer.cpp", - "js/src/trace-test/tests/basic/testThis1.js", - "js/src/trace-test/tests/basic/testThis2.js" - ], - "components": [ - "Core::JavaScript Engine" - ], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "3e15e567ae44cd4b2fdd044a7d973fb0089d5cc7", - "author": "Dave Townsend ", - "bug_id": 569342, - "desc": "Backed out changeset 33760547ecf7 from bug 569342 to fix the test failure.", - "pushdate": "2010-06-08 18:20:50", - "backsout": [ - "33760547ecf7edc099b4ca4abc5cb475d9dfb86a" - ], - "backedoutby": "", - "author_email": "dtownsend@oxymoronical.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 63531408.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/base/content/test/Makefile.in", - "browser/base/content/test/browser_bug569342.js", - "toolkit/components/viewconfig/content/config.xul", - "toolkit/content/widgets/findbar.xml", - "toolkit/mozapps/extensions/content/extensions.xul" - ], - "components": [], - "directories": [ - "browser/base", - "toolkit/content", - "toolkit/components", - "toolkit", - "toolkit/mozapps", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "0bf458761ea2d29bc48e333a8d2afd38238d7e83", - "author": "Timothy Nikkel ", - "bug_id": 569425, - "desc": "Backed out changeset 2f539cc84d97 (bug 569425) because this may hide real a11y issues.", - "pushdate": "2010-06-08 20:44:03", - "backsout": [ - "2f539cc84d9750e6de1de5d44f8ade2b82cad024" - ], - "backedoutby": "", - "author_email": "tnikkel@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 33672277.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "accessible/tests/mochitest/states/test_aria_imgmap.html", - "accessible/tests/mochitest/tree/test_aria_imgmap.html" - ], - "components": [ - "Core::Disability Access APIs" - ], - "directories": [ - "accessible", - "accessible/tests" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "42a58530d41962e11cd20a2abfcf02e6c13b21c3", - "author": "Daniel Holbert ", - "bug_id": 552938, - "desc": "Backed out changeset a8ac411e1653 (bug 552938) for causing some randomorange.", - "pushdate": "2010-06-10 00:17:54", - "backsout": [ - "a8ac411e1653c2a2359aa5a76e3f0bc45d99aca5" - ], - "backedoutby": "", - "author_email": "dholbert@cs.stanford.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 65298001.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/xml/document/src/nsXMLContentSink.cpp", - "layout/svg/crashtests/crashtests.list", - "parser/html/Makefile.in", - "parser/html/nsHtml5SVGLoadDispatcher.cpp", - "parser/html/nsHtml5SVGLoadDispatcher.h", - "parser/html/nsHtml5TreeBuilderCppSupplement.h", - "parser/html/nsHtml5TreeOperation.cpp", - "parser/html/nsHtml5TreeOperation.h", - "parser/htmlparser/tests/mochitest/Makefile.in", - "parser/htmlparser/tests/mochitest/test_bug552938-2.html", - "parser/htmlparser/tests/mochitest/test_bug552938.html" - ], - "components": [ - "Core::XML", - "Core::DOM: HTML Parser", - "Core::SVG" - ], - "directories": [ - "parser/html", - "layout/svg", - "parser/htmlparser", - "content", - "parser", - "content/xml", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "ef715f78e927e46db86fd00b7a5ea89641767041", - "author": "Ted Mielczarek ", - "bug_id": 568818, - "desc": "Backed out changeset d1c910f2ec4d on suspicion of causing test crashes - Bug 568818 - sendSyncMessage fails with 'SyntaxError: JSON.parse' if one of the listeners does not return a value", - "pushdate": "2010-06-11 17:53:10", - "backsout": [ - "d1c910f2ec4dd7388fe57ac9defac792ee3f1fa6" - ], - "backedoutby": "", - "author_email": "ted.mielczarek@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 70247026.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/base/src/nsFrameMessageManager.cpp" - ], - "components": [], - "directories": [ - "content/base", - "content" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "4dc9a5d9167b157b0867547ea14fe4a4e306af42", - "author": "Ehsan Akhgari ", - "bug_id": 563327, - "desc": "Backed out changeset fee5701c664e and changeset dcfe95c71a04 to fix the mochitest-a11y crashes (bug 563327)", - "pushdate": "2010-06-14 22:14:46", - "backsout": [ - "fee5701c664e4ec3222483313ea71b52ac514d44" - ], - "backedoutby": "", - "author_email": "ehsan@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 19270363.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "accessible/src/base/nsEventShell.cpp", - "accessible/src/base/nsEventShell.h", - "layout/base/nsCSSFrameConstructor.cpp", - "layout/base/nsIPresShell.h", - "layout/base/nsPresShell.cpp" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "accessible/src", - "accessible", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "7523ad2f395e9295ec597de3b8de5329cb17a18a", - "author": "Drew Willcoxon ", - "bug_id": 571459, - "desc": "Backed out changeset b54140961fa7 to fix more mochitest-a11y crashes (Bug 571459)", - "pushdate": "2010-06-14 23:19:27", - "backsout": [ - "b54140961fa705b38f1e927a4e8aac626ca567ea" - ], - "backedoutby": "", - "author_email": "adw@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 44710491.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "accessible/public/nsIAccessibilityService.h", - "accessible/src/base/nsAccDocManager.h", - "accessible/src/base/nsAccessibilityService.cpp", - "accessible/src/base/nsAccessibilityService.h", - "accessible/src/base/nsOuterDocAccessible.cpp", - "layout/base/nsPresShell.cpp" - ], - "components": [], - "directories": [ - "accessible/public", - "accessible/src", - "accessible", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "53510454716ebb1e760a0262ffdfb89276c9543b", - "author": "Chris Pearce ", - "bug_id": 572034, - "desc": "Backed out changeset f2835c78ef3f, Bug 572034.", - "pushdate": "2010-06-16 23:04:24", - "backsout": [ - "f2835c78ef3fa9e508ad2b9ecbcd48c818a63613" - ], - "backedoutby": "", - "author_email": "chris@pearce.org.nz", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 54088542.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "gfx/ycbcr/Makefile.in" - ], - "components": [], - "directories": [ - "gfx", - "gfx/ycbcr" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "3e0eb9fe8f481ce2257922ef08219bb364da24a7", - "author": "Matthew Gregan ", - "bug_id": 572034, - "desc": "Backed out changeset d268e54fbfcf (bug 572034)", - "pushdate": "2010-06-18 23:44:31", - "backsout": [ - "d268e54fbfcfbbfab0e3b890fe376cd058498bb8" - ], - "backedoutby": "", - "author_email": "kinetik@flim.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 54067558.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "gfx/ycbcr/Makefile.in", - "gfx/ycbcr/README", - "gfx/ycbcr/bug572034_mac_64bit.patch", - "gfx/ycbcr/update.sh", - "gfx/ycbcr/yuv_row_linux.cpp" - ], - "components": [ - "Core::Graphics" - ], - "directories": [ - "gfx", - "gfx/ycbcr" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "5504cc6d31698a12ca86c443aca74c834b499ded", - "author": "Matthew Gregan ", - "bug_id": 555121, - "desc": "Backed out changeset 4adab2629c3f (bug 555121)", - "pushdate": "2010-06-19 06:25:38", - "backsout": [ - "4adab2629c3f76da345a60cb55a3925db6c6241f" - ], - "backedoutby": "", - "author_email": "kinetik@flim.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 54091625.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "media/libvorbis/README_MOZILLA", - "media/libvorbis/bug498855.patch", - "media/libvorbis/bug550184.patch", - "media/libvorbis/include/vorbis/codec.h", - "media/libvorbis/lib/backends.h", - "media/libvorbis/lib/codebook.h", - "media/libvorbis/lib/highlevel.h", - "media/libvorbis/lib/psy.h", - "media/libvorbis/lib/vorbis_codebook.c", - "media/libvorbis/lib/vorbis_floor1.c", - "media/libvorbis/lib/vorbis_info.c", - "media/libvorbis/lib/vorbis_mapping0.c", - "media/libvorbis/lib/vorbis_psy.c", - "media/libvorbis/lib/vorbis_res0.c", - "media/libvorbis/lib/vorbis_sharedbook.c", - "media/libvorbis/lib/vorbis_synthesis.c", - "media/libvorbis/update.sh" - ], - "components": [ - "Core::Audio/Video" - ], - "directories": [ - "media", - "media/libvorbis" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "063826c84e206d51231cdd4d2aeaf23544d1fc65", - "author": "L. David Baron ", - "bug_id": 534398, - "desc": "Backed out changeset b805434e7e4b (bug 534398) for causing leaks on (debug) mochitest-other.", - "pushdate": "2010-06-19 21:17:47", - "backsout": [ - "b805434e7e4bd4366112ea079d5aed84b5423fba" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 66190788.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/base/content/browser-menubar.inc", - "browser/base/content/browser-sets.inc", - "browser/base/content/browser.js", - "browser/locales/en-US/chrome/browser/browser.dtd", - "toolkit/components/console/Makefile.in", - "toolkit/components/console/content/headsUpDisplay.css", - "toolkit/components/console/hudservice/HUDService.jsm", - "toolkit/components/console/hudservice/Makefile.in", - "toolkit/components/console/hudservice/tests/Makefile.in", - "toolkit/components/console/hudservice/tests/browser/Makefile.in", - "toolkit/components/console/hudservice/tests/browser/browser_HUDServiceTestsAll.js", - "toolkit/components/console/hudservice/tests/browser/test-console.html", - "toolkit/components/console/hudservice/tests/browser/test-data.json", - "toolkit/components/console/hudservice/tests/browser/test-filter.html", - "toolkit/components/console/hudservice/tests/browser/test-mutation.html", - "toolkit/components/console/hudservice/tests/browser/test-network.html", - "toolkit/components/console/hudservice/tests/browser/test-observe-http-ajax.html", - "toolkit/components/console/hudservice/tests/browser/testscript.js", - "toolkit/components/console/jar.mn", - "toolkit/locales/en-US/chrome/global/headsUpDisplay.dtd", - "toolkit/locales/en-US/chrome/global/headsUpDisplay.properties", - "toolkit/locales/jar.mn" - ], - "components": [ - "Firefox::General", - "Firefox Build System::General", - "Firefox::Menus" - ], - "directories": [ - "browser/base", - "toolkit/components", - "toolkit", - "toolkit/locales", - "browser/locales", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "284711070f31f2677b807d95476cc7e6db197a3c", - "author": "L. David Baron ", - "bug_id": 571347, - "desc": "Backed out changeset a6e3300a3bac (bug 571347) for causing bug 573255 because the optimization is invalid given :not() selectors.", - "pushdate": "2010-06-19 21:17:47", - "backsout": [ - "a6e3300a3bacfa013c9c7169f291057f2a43bff1" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 66190788.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/reftests/bugs/571347-1-ref.html", - "layout/reftests/bugs/571347-1a.html", - "layout/reftests/bugs/571347-1b.html", - "layout/reftests/bugs/571347-2-ref.html", - "layout/reftests/bugs/571347-2a.html", - "layout/reftests/bugs/571347-2b.html", - "layout/reftests/bugs/571347-2c.html", - "layout/reftests/bugs/571347-2d.html", - "layout/reftests/bugs/reftest.list", - "layout/style/nsCSSRuleProcessor.cpp" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "layout/reftests", - "layout/style", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "4157a4415bf79adf6def7aa2d216e1321c91867d", - "author": "Edward Lee ", - "bug_id": 482878, - "desc": "Backed out changeset 430ce13b63f3 (bug 482878)\nBug 482670 restored un-wrapped payloads, so until a version bump, those using trunk will need to do a manual server wipe.", - "pushdate": "2010-06-23 22:21:35", - "backsout": [ - "430ce13b63f3" - ], - "backedoutby": "", - "author_email": "edilee@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 40320739.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "services/sync/modules/service.js" - ], - "components": [], - "directories": [ - "services", - "services/sync" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "39cb8075f8444f27f7097238e75953aba158d73e", - "author": "Shawn Wilsher ", - "bug_id": 571992, - "desc": "Backed out changeset 88142593698a (bug 571992) because it already landed apparently...", - "pushdate": "2010-06-24 17:39:34", - "backsout": [ - "88142593698ad74bd79ec48e99fa349a26ef1b5f" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 64806743.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/base/content/browser.xul" - ], - "components": [], - "directories": [ - "browser/base", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "bf804f41e245b8e2ce317ff51da1e94d32d5ab70", - "author": "Daniel Holbert ", - "bug_id": 557566, - "desc": "Backed out changeset a65d962718b0 (bug 557566)", - "pushdate": "2010-06-27 03:02:56", - "backsout": [ - "a65d962718b0857bf749e165533395e4e7aff2d8" - ], - "backedoutby": "", - "author_email": "dholbert@cs.stanford.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 66776703.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/canvas/src/Makefile.in", - "content/media/wave/Makefile.in" - ], - "components": [], - "directories": [ - "content/canvas", - "content", - "content/media" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "880fcf5f07b3d395c9d74b7d45b09dd8825217d8", - "author": "Daniel Holbert ", - "bug_id": 557566, - "desc": "Backed out changeset 5da9fc2be835 (Bug 557566)", - "pushdate": "2010-06-27 03:02:56", - "backsout": [ - "5da9fc2be83585333b108f45407d3be37088db5f" - ], - "backedoutby": "", - "author_email": "dholbert@cs.stanford.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 66776703.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/canvas/src/Makefile.in", - "content/media/wave/Makefile.in", - "docshell/shistory/src/Makefile.in", - "dom/src/geolocation/Makefile.in", - "editor/txmgr/src/Makefile.in", - "toolkit/components/places/tests/cpp/Makefile.in", - "uriloader/base/Makefile.in" - ], - "components": [], - "directories": [ - "content/canvas", - "dom/src", - "toolkit", - "toolkit/components", - "docshell/shistory", - "uriloader/base", - "docshell", - "editor", - "dom", - "content", - "content/media", - "editor/txmgr", - "uriloader" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "4add6eaba66ff0b2a6c7a809922a60f99625ddc3", - "author": "Peter Van der Beken ", - "bug_id": 571159, - "desc": "Backout 8a6de68c0feb (Fix for bug 571159 (Leak nsGlobalWindow with unknown-content-type dialog)) to fix orange.", - "pushdate": "2010-06-28 15:40:59", - "backsout": [ - "8a6de68c0febb7b273942193394fd9ed42a2ce47" - ], - "backedoutby": "", - "author_email": "peterv@propagandism.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 63675486.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/mozapps/downloads/nsHelperAppDlg.js" - ], - "components": [], - "directories": [ - "toolkit/mozapps", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "5082a31c8b8e75fa9321fad3baf0e7621fee4328", - "author": "Justin Dolske ", - "bug_id": 574357, - "desc": "Backed out changeset e112f68bc941 (bug 574357) due to test failures.", - "pushdate": "2010-06-30 05:46:21", - "backsout": [ - "e112f68bc941fa78f6950347f05d892d6c48fc80" - ], - "backedoutby": "", - "author_email": "dolske@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 64232425.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "modules/plugin/test/mochitest/Makefile.in", - "modules/plugin/test/mochitest/test_crash_submit.xul", - "testing/mochitest/tests/SimpleTest/EventUtils.js", - "toolkit/crashreporter/CrashSubmit.jsm", - "toolkit/crashreporter/content/crashes.js" - ], - "components": [ - "Testing::Mochitest", - "Toolkit::Crash Reporting" - ], - "directories": [ - "toolkit", - "modules/plugin", - "toolkit/crashreporter", - "testing/mochitest", - "testing", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "869ff461e1d61b0fc911caba23388a95950ba1c8", - "author": "Boris Zbarsky ", - "bug_id": 575336, - "desc": "Backed out changeset 00dfcf7f4c9e (bug 575336) due to test orange. Magic words for CLOSED TREE.", - "pushdate": "2010-07-01 05:19:24", - "backsout": [ - "00dfcf7f4c9eee1b09c632fb45d814e9bea4faa9" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 62406872.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/base/nsPresShell.cpp", - "view/src/nsViewManager.cpp" - ], - "components": [], - "directories": [ - "view", - "view/src", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "2e14387eb276fe4dc6ee4b13db76639d12b6234e", - "author": "Benjamin Smedberg ", - "bug_id": 541155, - "desc": "Backed out changeset df78efe07b18, debugging only printfs now that 541155 is diagnosed.", - "pushdate": "2010-07-01 06:28:42", - "backsout": [ - "df78efe07b18" - ], - "backedoutby": "", - "author_email": "benjamin@smedbergs.us", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 71933958.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "modules/plugin/test/testplugin/nptest.cpp" - ], - "components": [], - "directories": [ - "modules/plugin", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "686aedb56727e992700c4cb6dcc0162dab5b895b", - "author": "Benjamin Smedberg ", - "bug_id": 535564, - "desc": "Backed out changeset c7a2f3e14a58 - Testing from bug 535564 - We don't have a file handle open when we launch ssltunnel, so ssltunnel wasn't the cause.", - "pushdate": "2010-07-01 06:28:42", - "backsout": [ - "c7a2f3e14a580c7708cd0062b0ddc76e2eaaf322" - ], - "backedoutby": "", - "author_email": "benjamin@smedbergs.us", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 71933958.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "build/automation.py.in" - ], - "components": [], - "directories": [ - "build" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "9fb0650cbfc08daf9b1371544987878f7bb3ecd6", - "author": "Benjamin Smedberg ", - "bug_id": 542337, - "desc": "Backed out changeset e033fa1d3b0b - remove the workaround for bug 542337 because bent landed a real fix and we want testing", - "pushdate": "2010-07-01 06:28:42", - "backsout": [ - "e033fa1d3b0bc04aaa37708b6d48eb8b0aeb4fb5" - ], - "backedoutby": "", - "author_email": "benjamin@smedbergs.us", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 71933958.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/generic/test/plugin_clipping_helper2.xhtml" - ], - "components": [], - "directories": [ - "layout/generic", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "c4b97df52cae46d26f3bbee0b47b7d994e6ce892", - "author": "Karl Tomlinson ", - "bug_id": 550026, - "desc": "backout 5b9325736070 b=550026", - "pushdate": "2010-07-01 06:28:42", - "backsout": [ - "5b932573607072bfa2bd1d19761e404865de2adf" - ], - "backedoutby": "", - "author_email": "karlt+@karlt.net", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 62565298.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "dom/plugins/PluginModuleChild.cpp", - "dom/plugins/PluginModuleParent.cpp", - "modules/plugin/test/mochitest/Makefile.in", - "modules/plugin/test/mochitest/test_crash_nested_loop.html", - "modules/plugin/test/testplugin/nptest.cpp", - "modules/plugin/test/testplugin/nptest.h", - "modules/plugin/test/testplugin/nptest_gtk2.cpp", - "modules/plugin/test/testplugin/nptest_platform.h" - ], - "components": [], - "directories": [ - "dom", - "modules/plugin", - "dom/plugins", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "4497942b0e3d7aa73e282747d857fb6110b794d6", - "author": "Dave Townsend ", - "bug_id": 556400, - "desc": "Backed out changeset f666976446db from bug 556400 due to possible browser-chrome\nfailures.", - "pushdate": "2010-07-03 03:02:52", - "backsout": [ - "f666976446db" - ], - "backedoutby": "", - "author_email": "dtownsend@oxymoronical.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 65636330.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/components/places/src/History.cpp" - ], - "components": [], - "directories": [ - "toolkit/components", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "c066080db73501bdcee16c871ba3eebb07ca0779", - "author": "Dave Townsend ", - "bug_id": 566738, - "desc": "Backed out changeset 07a9dcc28c5c from bug 566738 due to possible browser-chrome failures.", - "pushdate": "2010-07-03 03:02:52", - "backsout": [ - "07a9dcc28c5ca62106336545c017b80cf8122b57" - ], - "backedoutby": "", - "author_email": "dtownsend@oxymoronical.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 65636330.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "docshell/base/IHistory.h", - "docshell/base/nsDocShell.cpp", - "toolkit/components/places/src/History.cpp", - "toolkit/components/places/src/History.h", - "toolkit/components/places/src/nsNavHistory.cpp", - "toolkit/components/places/src/nsNavHistory.h", - "toolkit/components/places/tests/browser/Makefile.in" - ], - "components": [ - "Toolkit::Places", - "Core::DOM: Navigation" - ], - "directories": [ - "toolkit/components", - "docshell/base", - "toolkit", - "docshell" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "920385221b56485347c16d59a782c808d1b64085", - "author": "Dave Townsend ", - "bug_id": 556400, - "desc": "Backed out changeset f9a700607b86 from bug556400 due to possible browser-chrome failures.", - "pushdate": "2010-07-03 03:02:52", - "backsout": [ - "f9a700607b86514c86ac85387f7d64206d7e23fa" - ], - "backedoutby": "", - "author_email": "dtownsend@oxymoronical.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 65636330.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "docshell/base/IHistory.h", - "docshell/base/nsDocShell.cpp", - "docshell/base/nsDocShell.h", - "toolkit/components/places/src/Helpers.cpp", - "toolkit/components/places/src/Helpers.h", - "toolkit/components/places/src/History.cpp", - "toolkit/components/places/src/History.h", - "toolkit/components/places/src/nsNavHistory.cpp", - "toolkit/components/places/src/nsNavHistory.h", - "toolkit/components/places/tests/browser/Makefile.in", - "toolkit/components/places/tests/cpp/places_test_harness.h", - "toolkit/components/places/tests/cpp/test_IHistory.cpp", - "xpcom/build/Makefile.in", - "xpcom/build/ServiceList.h", - "xpcom/build/Services.cpp", - "xpcom/build/Services.h" - ], - "components": [ - "Toolkit::Places", - "Core::DOM: Navigation" - ], - "directories": [ - "toolkit/components", - "toolkit", - "docshell/base", - "docshell", - "xpcom/build", - "xpcom" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "330178c7235b6ac438af8a8b8797ce006a537242", - "author": "Benoit Girard ", - "bug_id": 577224, - "desc": "Back out 06cc16f7954e (bug 577224) because it can cause plugins to not draw.", - "pushdate": "2010-07-09 20:16:30", - "backsout": [ - "06cc16f7954e677afb4c8212354637884a348c45" - ], - "backedoutby": "", - "author_email": "b56girard@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 8125474.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "gfx/src/thebes/utils/nsCoreAnimationSupport.h", - "gfx/src/thebes/utils/nsCoreAnimationSupport.mm" - ], - "components": [], - "directories": [ - "gfx/src", - "gfx" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "6ad1beea584ac84aef0dd5f6b90b297d6afe187a", - "author": "Josh Aas ", - "bug_id": 578913, - "desc": "Backed out changeset 764bb4ae886c, bug 578913, it may be at fault for a Ts Shutdown regression.", - "pushdate": "2010-07-16 17:25:59", - "backsout": [ - "764bb4ae886c5058c5c7634d6ffb02ddfe431354" - ], - "backedoutby": "", - "author_email": "joshmoz@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 64760720.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "modules/plugin/base/src/nsPluginHost.cpp", - "modules/plugin/base/src/nsPluginHost.h", - "modules/plugin/base/src/nsPluginStreamListenerPeer.cpp", - "modules/plugin/base/src/nsPluginStreamListenerPeer.h" - ], - "components": [], - "directories": [ - "modules/plugin", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "d0d098061840a2d4bb25beada4dfc4f84bdc6cb5", - "author": "Josh Aas ", - "bug_id": 571193, - "desc": "Backed out changeset f6c93f02146c, bug 571193.", - "pushdate": "2010-07-17 00:32:00", - "backsout": [ - "f6c93f02146c55b55209c6ae622e15a88cb28543" - ], - "backedoutby": "", - "author_email": "joshmoz@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 64786281.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/xre/nsAppRunner.cpp", - "xpcom/io/CocoaFileUtils.h", - "xpcom/io/CocoaFileUtils.mm", - "xpcom/io/Makefile.in", - "xpcom/io/nsILocalFileMac.idl", - "xpcom/io/nsLocalFile.h", - "xpcom/io/nsLocalFileOSX.h", - "xpcom/io/nsLocalFileOSX.mm", - "xpcom/io/nsLocalFileUnix.cpp", - "xpcom/io/nsLocalFileUnix.h" - ], - "components": [ - "Core::XPCOM", - "Toolkit::Startup and Profile System" - ], - "directories": [ - "xpcom", - "xpcom/io", - "toolkit", - "toolkit/xre" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "bc7c573d41724335e529404841d169f38efd2b27", - "author": "Dave Townsend ", - "bug_id": 553494, - "desc": "Backed out changeset 58175e77c460 from bug 553494 due to test failures", - "pushdate": "2010-07-26 18:41:40", - "backsout": [ - "58175e77c4604f3c7362d67d572e778d2aca33d9" - ], - "backedoutby": "", - "author_email": "dtownsend@oxymoronical.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 67679858.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/mozapps/extensions/content/extensions.js", - "toolkit/mozapps/extensions/content/extensions.xml", - "toolkit/mozapps/extensions/test/browser/Makefile.in", - "toolkit/mozapps/extensions/test/browser/browser_uninstalling.js", - "toolkit/mozapps/extensions/test/browser/head.js" - ], - "components": [ - "Toolkit::Add-ons Manager" - ], - "directories": [ - "toolkit/mozapps", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "a24232050cb11eb86eb348962deea19a40407a33", - "author": "Timothy Nikkel ", - "bug_id": 574621, - "desc": "Backed out changeset 9e290d196600 (bug 574621) for causing test failures.", - "pushdate": "2010-07-29 20:17:48", - "backsout": [ - "9e290d196600332b1731df54ca9142df21127a30" - ], - "backedoutby": "", - "author_email": "tnikkel@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 38077102.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/base/nsPresShell.cpp" - ], - "components": [], - "directories": [ - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "8aabb35a1bb3103d74670ffa88023b9c93d783cc", - "author": "Robert Sayre ", - "bug_id": 579957, - "desc": "Backed out changeset d8bbb2ef3038. (Igor Bukanov \u2013 bug 579957 - parent as a field in JSObject. r=lw)", - "pushdate": "2010-08-01 00:33:23", - "backsout": [ - "d8bbb2ef303853b6a4b8bc54b6000ca53954fdd4" - ], - "backedoutby": "", - "author_email": "sayrer@gmail.com", - "reviewers": [ - "lw" - ], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 67410970.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsarray.cpp", - "js/src/jscntxt.h", - "js/src/jsgc.cpp", - "js/src/jsobj.cpp", - "js/src/jsobj.h", - "js/src/jsproxy.cpp", - "js/src/jsscope.h", - "js/src/jstracer.cpp", - "js/src/jstypedarray.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "4f0f0e801b200dcbdf824a0de1ff9c481481e7e1", - "author": "Robert Sayre ", - "bug_id": 583281, - "desc": "Backed out changeset af011e92ad0b. (Dave Herman \u2013 bug 583281, r=jimb: njs should get symlinked into objdir). This doesn't build on windows.", - "pushdate": "2010-08-01 00:33:23", - "backsout": [ - "af011e92ad0b6a80ea782c427e9ecef92ceb73fb" - ], - "backedoutby": "", - "author_email": "sayrer@gmail.com", - "reviewers": [ - "jimb" - ], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 67410970.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/njs", - "js/src/shell/Makefile.in", - "js/src/shell/njs", - "js/src/tests/narcissus.README" - ], - "components": [ - "Firefox Build System::General" - ], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "5e31dc2daf0a9c531370204ac3b7f32d9cd1437c", - "author": "Robert Sayre ", - "bug_id": 582479, - "desc": "Back out changeset c877176cbbed in order to get Windows compiling. (Bug 582479 - TM: Assertion failure: (&cx->regs->sp[1 - (iargc + 2)].toObject())->isFunction().)", - "pushdate": "2010-08-01 00:33:23", - "backsout": [ - "c877176cbbed3e5c73cbb2abc474345b43cc1fe9" - ], - "backedoutby": "", - "author_email": "sayrer@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 67410970.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jstracer.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "9539f400bb5869e7f5041299359645bd509a9c69", - "author": "Robert Sayre ", - "bug_id": 577648, - "desc": "Backout changeset 80382d88b92c. (Bug 577648 - arguments.callee.caller does not work in FF 4 under certain circumstances). The patch is righteous, but MSVC's behavior with a mere 3GB of addressable memory is not. Will reland soon.", - "pushdate": "2010-08-01 00:33:23", - "backsout": [ - "80382d88b92c05e71a65f2bb662614ea702cad8d" - ], - "backedoutby": "", - "author_email": "sayrer@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 67410970.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsapi.cpp", - "js/src/jsarray.cpp", - "js/src/jsarray.h", - "js/src/jscntxt.cpp", - "js/src/jscntxt.h", - "js/src/jsdbgapi.cpp", - "js/src/jsdbgapi.h", - "js/src/jsemit.cpp", - "js/src/jsfun.cpp", - "js/src/jsfun.h", - "js/src/jsgc.cpp", - "js/src/jsinterp.cpp", - "js/src/jsinterp.h", - "js/src/jsobj.cpp", - "js/src/jsobjinlines.h", - "js/src/jsopcode.cpp", - "js/src/jsparse.cpp", - "js/src/jsscope.cpp", - "js/src/jsscope.h", - "js/src/jsscopeinlines.h", - "js/src/jsscript.cpp", - "js/src/jsstr.cpp", - "js/src/jsstr.h", - "js/src/jstracer.cpp", - "js/src/jsvalue.h", - "js/src/tests/js1_5/Regress/jstests.list", - "js/src/tests/js1_5/Scope/jstests.list", - "js/src/tests/js1_8_5/regress/jstests.list" - ], - "components": [ - "Core::JavaScript Engine" - ], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "bd4713e47e5e0851c7eb3461b2f6599d73f91f81", - "author": "Markus Stange ", - "bug_id": 574663, - "desc": "Backed out changeset cd5c28912351, bug 574663 (momentum scroll zooming) because the new test fails on Windows.", - "pushdate": "2010-08-02 15:52:38", - "backsout": [ - "cd5c289123515044557c9fa3abec72b4ab92113e" - ], - "backedoutby": "", - "author_email": "mstange@themasta.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 65974854.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/events/src/nsEventStateManager.cpp", - "content/events/test/Makefile.in", - "content/events/test/test_bug574663.html", - "testing/mochitest/tests/SimpleTest/EventUtils.js", - "widget/public/nsGUIEvent.h", - "widget/src/cocoa/nsChildView.h", - "widget/src/cocoa/nsChildView.mm" - ], - "components": [ - "Testing::Mochitest" - ], - "directories": [ - "widget", - "testing/mochitest", - "content", - "widget/public", - "widget/src", - "testing", - "content/events" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "32a6a3231e503c54824c6ba80425894f9a058199", - "author": "Gavin Sharp ", - "bug_id": 550936, - "desc": "Backed out changeset bdb98838d6f6 from bug 550936 due to js-reftest failures", - "pushdate": "2010-08-03 05:27:20", - "backsout": [ - "bdb98838d6f6b790d45748a817d70526f0675fe7" - ], - "backedoutby": "", - "author_email": "gavin@gavinsharp.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 24450720.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/library/libxul-config.mk", - "toolkit/library/nsStaticXULComponents.cpp", - "toolkit/mozapps/extensions/Makefile.in", - "toolkit/mozapps/extensions/XPIProvider.jsm", - "toolkit/mozapps/extensions/addonManager.js", - "toolkit/mozapps/extensions/amInstallTrigger.cpp", - "toolkit/mozapps/extensions/amInstallTrigger.h", - "toolkit/mozapps/extensions/content/extensions-content.js", - "toolkit/mozapps/extensions/jar.mn" - ], - "components": [ - "Toolkit::Add-ons Manager" - ], - "directories": [ - "toolkit/library", - "toolkit/mozapps", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "f2d6cc57c80cae87069fccb19f8b0af68af1b7b0", - "author": "Gavin Sharp ", - "bug_id": 572967, - "desc": "Backed out changeset b46982cc0c0a from bug 572967 due to test failures", - "pushdate": "2010-08-03 05:39:35", - "backsout": [ - "b46982cc0c0a82dd8fdbb9f9b57da382c5bd515f" - ], - "backedoutby": "", - "author_email": "gavin@gavinsharp.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 24451455.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/base/content/browser.css", - "browser/base/content/browser.js", - "browser/base/content/browser.xul", - "browser/themes/gnomestripe/browser/browser.css", - "browser/themes/pinstripe/browser/browser.css", - "browser/themes/winstripe/browser/browser.css", - "toolkit/content/PopupNotifications.jsm" - ], - "components": [ - "Firefox::General" - ], - "directories": [ - "browser/base", - "toolkit/content", - "toolkit", - "browser/themes", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "f7478476c9a5d4a650d764a967c8dedce7e5883f", - "author": "Robert Sayre ", - "bug_id": 583262, - "desc": "Backed out changeset c6131ed87e9c. Jason Orendorff \u2014 Bug 583262 - Remove security checks on f.prototype.constructor property at last. r=mrbkap. Causing nightly topcrash.", - "pushdate": "2010-08-04 20:45:11", - "backsout": [ - "c6131ed87e9ce7433153c43c4bb7275c35cb4453" - ], - "backedoutby": "", - "author_email": "sayrer@gmail.com", - "reviewers": [ - "mrbkap" - ], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 67742878.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsobj.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "decafc4eb6e2e82cb98713356c2814af0f78372f", - "author": "Markus Stange ", - "bug_id": 576777, - "desc": "Backed out changeset d84aff2ae1db (from bug 576777) because of perma-orange in test_text.html.", - "pushdate": "2010-08-05 12:56:16", - "backsout": [ - "d84aff2ae1db1e05b7270ad08e76e74af058eb0f" - ], - "backedoutby": "", - "author_email": "mstange@themasta.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 66223472.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "accessible/tests/mochitest/attributes/test_text.html" - ], - "components": [], - "directories": [ - "accessible", - "accessible/tests" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "8565e77eacdccd4ae3aadd0f769ff2f0604b6684", - "author": "Markus Stange ", - "bug_id": 576777, - "desc": "Backed out changeset e29fc477ab4d, bug 576777, because of perma-orange in test_text.html.", - "pushdate": "2010-08-05 12:56:16", - "backsout": [ - "e29fc477ab4d1ae6ec74e20b527b321a10736aed" - ], - "backedoutby": "", - "author_email": "mstange@themasta.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 66223472.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "accessible/src/base/AccCollector.cpp", - "accessible/src/base/AccCollector.h", - "accessible/src/base/nsAccessible.cpp", - "accessible/src/base/nsAccessible.h", - "accessible/src/base/nsOuterDocAccessible.cpp", - "accessible/src/html/nsHyperTextAccessible.cpp", - "accessible/src/html/nsHyperTextAccessible.h", - "accessible/src/msaa/CAccessibleHypertext.cpp", - "accessible/tests/mochitest/attributes/test_text.html" - ], - "components": [], - "directories": [ - "accessible/src", - "accessible", - "accessible/tests" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "8d4d8fc43475a18933f6d48e2260289d9cff0db9", - "author": "Shawn Wilsher ", - "bug_id": 580790, - "desc": "Back out changeset 0b3af3fef0fd (bug 580790) due to burnage on a CLOSED TREE", - "pushdate": "2010-08-06 17:47:10", - "backsout": [ - "0b3af3fef0fdfeb5e696c13d773d352e56d94b12" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 68522399.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "storage/src/mozStorageConnection.cpp", - "storage/src/mozStorageService.cpp", - "storage/src/mozStorageService.h" - ], - "components": [], - "directories": [ - "storage/src", - "storage" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "e88f6c524f3aeda886e7ee21f8ed9b467e946ec9", - "author": "Shawn Wilsher ", - "bug_id": 568969, - "desc": "Backed out changeset e6e0200b6e03 (bug 568969) because it appears to have caused orange on a CLOSED TREE.", - "pushdate": "2010-08-06 18:54:28", - "backsout": [ - "e6e0200b6e0325cda78b2634386a420da58f0431" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 68526437.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/base/public/nsContentUtils.h", - "content/base/src/Link.cpp", - "content/base/src/nsContentUtils.cpp", - "dom/ipc/ContentParent.cpp", - "toolkit/components/places/src/History.cpp" - ], - "components": [ - "Core::DOM: Content Processes" - ], - "directories": [ - "toolkit", - "toolkit/components", - "dom", - "content/base", - "content", - "dom/ipc" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "312fdcee7e5093582e6df431c7c210feef2b14b0", - "author": "Dave Townsend ", - "bug_id": 580869, - "desc": "Backed out changeset 300036f6c90f from bug 580869 due to test failures", - "pushdate": "2010-08-06 22:02:48", - "backsout": [ - "300036f6c90f769bc2a2ce4c9b5a3cfd1b141468" - ], - "backedoutby": "", - "author_email": "dtownsend@oxymoronical.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 68642326.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/generic/nsTextFrameThebes.cpp" - ], - "components": [], - "directories": [ - "layout/generic", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "87be0d140fd611534baa3bc3579062b9fa8ac4e6", - "author": "Dave Townsend ", - "bug_id": 580869, - "desc": "Backed out changeset 8f8ee0543d0f from bug 580869 in the CLOSED TREE", - "pushdate": "2010-08-06 22:02:48", - "backsout": [ - "8f8ee0543d0f735ae6fa152244a9233bd7891275" - ], - "backedoutby": "", - "author_email": "dtownsend@oxymoronical.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 68642326.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/generic/nsIFrame.h", - "layout/generic/nsTextFrame.h", - "layout/generic/nsTextFrameThebes.cpp" - ], - "components": [ - "Core::Layout", - "Core::Layout: Text and Fonts" - ], - "directories": [ - "layout/generic", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "5a254bcd79f2b1b27cee499322ebafd4f369f881", - "author": "Robert Sayre ", - "bug_id": 584495, - "desc": "Backed out changeset 504bc84513b0. Andreas Gal \u2013 Ensure that JSOPTION_UNROOTED_GLOBAL is set when we cycle collect (stop-gap measure for bug 584495, r=brendan). default tip", - "pushdate": "2010-08-07 05:52:47", - "backsout": [ - "504bc84513b02579706015b180b6d8f0376c88bf" - ], - "backedoutby": "", - "author_email": "sayrer@gmail.com", - "reviewers": [ - "brendan" - ], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 67948534.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/xpconnect/src/xpcjsruntime.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "682eee29d90d1650e28b60432faf87e89b577767", - "author": "Timothy Nikkel ", - "bug_id": 584193, - "desc": "Backed out changeset 86e8ec17e532 (bug 584193).", - "pushdate": "2010-08-08 22:07:15", - "backsout": [ - "86e8ec17e532abe711a7f3def152c2eb6314c4c4" - ], - "backedoutby": "", - "author_email": "tnikkel@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 38947669.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/base/nsDocumentViewer.cpp", - "layout/base/nsIDocumentViewer.h", - "layout/base/nsIDocumentViewerPrint.h", - "layout/printing/nsPrintEngine.cpp", - "layout/printing/nsPrintEngine.h", - "layout/printing/nsPrintObject.cpp", - "layout/printing/nsPrintObject.h" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "layout", - "layout/base", - "layout/printing" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "abca98af611ed75fcdae4e05fd91900e26908474", - "author": "Phil Ringnalda ", - "bug_id": 579621, - "desc": "Backed out changeset ec28c1790e13 (bug 579621) for print preview test timeouts", - "pushdate": "2010-08-09 00:49:11", - "backsout": [ - "ec28c1790e13601e325bfe921498cd355467fee3" - ], - "backedoutby": "", - "author_email": "philringnalda@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 67822561.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/generic/nsFrameFrame.cpp" - ], - "components": [], - "directories": [ - "layout/generic", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "9165ca3607bd30328db254613bd305e3e4e0f67e", - "author": "Shawn Wilsher ", - "bug_id": 575870, - "desc": "Backed out changeset a0d6e4d37273 (bug 575870) for possibly being the cause of the following performance regression:\nTalos Regression: Txul increase 4.57% on Win7 Firefox\nOther possible culprits:\nbug 574454", - "pushdate": "2010-08-10 20:06:04", - "backsout": [ - "a0d6e4d37273bc0893a6ef3f25bc10261fbdc36b" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 68876333.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/base/content/browser.css", - "browser/base/content/browser.js", - "browser/base/content/browser.xul", - "browser/themes/winstripe/browser/browser-aero.css", - "browser/themes/winstripe/browser/browser.css" - ], - "components": [ - "Firefox::General" - ], - "directories": [ - "browser/base", - "browser/themes", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "89aad8922d715d0ef6aed75907fb8e242f4d70d3", - "author": "L. David Baron ", - "bug_id": 584582, - "desc": "Backed out changeset fef97fa21915 (bug 584582) for causing compilation failures on Windows.", - "pushdate": "2010-08-11 19:26:48", - "backsout": [ - "fef97fa21915fc51e8e4d231e1103b3d4eba1858" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 70763329.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "modules/plugin/test/mochitest/Makefile.in", - "toolkit/crashreporter/Makefile.in", - "toolkit/crashreporter/nsExceptionHandler.cpp" - ], - "components": [ - "Toolkit::Crash Reporting" - ], - "directories": [ - "modules/plugin", - "toolkit", - "toolkit/crashreporter", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "b186d13109a758d85982c790e25abcfb3de5358d", - "author": "Michael Wu ", - "bug_id": 583145, - "desc": "Backed out changeset ccfdad9f5c93 due to regressions (bug 583145)", - "pushdate": "2010-08-12 01:43:41", - "backsout": [ - "ccfdad9f5c9399f9083c8a5bd3bb24d5aaf87d1b" - ], - "backedoutby": "", - "author_email": "mwu@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 19345388.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/themes/pinstripe/global/headsUpDisplay.css" - ], - "components": [], - "directories": [ - "toolkit/themes", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "90b5a456b7bad12f4b78cc2bfb3d57749cdbbd1a", - "author": "Dave Townsend ", - "bug_id": 582569, - "desc": "Backed out changeset 937a11c1fc07 from bug 582569 due to new browser-chrome test\nfailures.", - "pushdate": "2010-08-12 17:29:08", - "backsout": [ - "937a11c1fc07d69a0eb3bfc0d97f0fbadc1fd512" - ], - "backedoutby": "", - "author_email": "dtownsend@oxymoronical.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 69144306.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/base/src/nsInProcessTabChildGlobal.cpp", - "content/base/src/nsInProcessTabChildGlobal.h", - "dom/ipc/TabChild.cpp" - ], - "components": [], - "directories": [ - "dom", - "content/base", - "content", - "dom/ipc" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "1bab6d09fbc9021a54784388e1d82994ee8bcca3", - "author": "Edward Lee ", - "bug_id": 581894, - "desc": "Backout d6a355524fcb from bug 581894 now that bug 579869 is fixed.", - "pushdate": "2010-08-12 19:47:36", - "backsout": [ - "d6a355524fcb88c677b10074adf0071cd5e962ff" - ], - "backedoutby": "", - "author_email": "edilee@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 44631500.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/base/content/tabbrowser.xml" - ], - "components": [], - "directories": [ - "browser/base", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "64e4cce311e8a03a9d15c7adef774e90fa5111b7", - "author": "Edward Lee ", - "bug_id": 583306, - "desc": "Backout df9bbe8b6d78 now that bug 583306 is fixed.", - "pushdate": "2010-08-12 19:47:36", - "backsout": [ - "df9bbe8b6d78" - ], - "backedoutby": "", - "author_email": "edilee@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 44631500.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/components/sessionstore/src/nsSessionStore.js" - ], - "components": [], - "directories": [ - "browser/components", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "60a5b0d62bccef4bae84b063b392246c1007de15", - "author": "Josh Aas ", - "bug_id": 578868, - "desc": "Backed out changeset 452db8c688ba, bug 578868.", - "pushdate": "2010-08-13 08:24:39", - "backsout": [ - "452db8c688bad65a1003ff00b2606d28410c5373" - ], - "backedoutby": "", - "author_email": "joshmoz@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 67147440.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "dom/plugins/PluginModuleChild.cpp", - "modules/plugin/base/public/npfunctions.h", - "modules/plugin/base/public/nsIPlugin.idl", - "modules/plugin/base/src/PluginPRLibrary.cpp", - "modules/plugin/base/src/PluginPRLibrary.h", - "modules/plugin/base/src/nsNPAPIPlugin.cpp", - "modules/plugin/base/src/nsNPAPIPlugin.h", - "modules/plugin/base/src/nsPluginHost.cpp", - "modules/plugin/base/src/nsPluginsDir.h", - "modules/plugin/base/src/nsPluginsDirBeOS.cpp", - "modules/plugin/base/src/nsPluginsDirDarwin.cpp", - "modules/plugin/base/src/nsPluginsDirOS2.cpp", - "modules/plugin/base/src/nsPluginsDirUnix.cpp", - "modules/plugin/base/src/nsPluginsDirWin.cpp" - ], - "components": [], - "directories": [ - "dom", - "modules/plugin", - "dom/plugins", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "2c69cdb5a98c492d99f6fc0c3f05cb2796a84d1d", - "author": "Josh Aas ", - "bug_id": 584965, - "desc": "Backed out changeset 33f8c2bb77ca, bug 584965.", - "pushdate": "2010-08-13 19:48:23", - "backsout": [ - "33f8c2bb77ca11f13bf368a193cfe51b569263cd" - ], - "backedoutby": "", - "author_email": "joshmoz@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 67188464.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "widget/src/cocoa/nsChildView.h", - "widget/src/cocoa/nsChildView.mm", - "widget/src/cocoa/nsCocoaWindow.mm", - "widget/src/cocoa/nsMenuBarX.h", - "widget/src/cocoa/nsMenuBarX.mm" - ], - "components": [], - "directories": [ - "widget", - "widget/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "9ded3c2c0a3fca47cfd74a2a985bcc2f9c358310", - "author": "Robert Sayre ", - "bug_id": 586533, - "desc": "Backed out changeset 1406935fced4. Brian Hackett \u2013 Put JSStackFrame.scopeChain/blockChain behind an interface, bug 586533. r=lw.", - "pushdate": "2010-08-13 20:13:33", - "backsout": [ - "1406935fced42e0bae650f04982c0871932f46d5" - ], - "backedoutby": "", - "author_email": "sayrer@gmail.com", - "reviewers": [ - "lw" - ], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 68518580.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsapi.cpp", - "js/src/jsbuiltins.cpp", - "js/src/jsdbgapi.cpp", - "js/src/jsfun.cpp", - "js/src/jsgc.cpp", - "js/src/jsinterp.cpp", - "js/src/jsinterp.h", - "js/src/jsiter.cpp", - "js/src/jsobj.cpp", - "js/src/jsobjinlines.h", - "js/src/jsrecursion.cpp", - "js/src/jstracer.cpp", - "js/src/jswrapper.cpp", - "js/src/jsxml.cpp" - ], - "components": [ - "Core::JavaScript Engine" - ], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "d796055d54653e1f30b08d833958bdcd79f544bd", - "author": "Jason Orendorff ", - "bug_id": 583850, - "desc": "Backed out changeset c5e31473b1a6 (assertions for bug 583850). See bug 584578 and bug 585754.", - "pushdate": "2010-08-13 20:13:33", - "backsout": [ - "c5e31473b1a670f26b865a49390613d74b3c30a3" - ], - "backedoutby": "", - "author_email": "jorendorff@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 69634942.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsinterp.cpp", - "js/src/jsobj.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "2fa5b630f3bc5e0d4ac7f56606b8e51331763cc2", - "author": "Marco Bonardo ", - "bug_id": 573492, - "desc": "Backed out changeset dfd35987dd82 (WAL journaling - bug 573492) due to Ts regressions", - "pushdate": "2010-08-14 07:58:46", - "backsout": [ - "dfd35987dd82520aaf89b1e4a481c26cf75605f9" - ], - "backedoutby": "", - "author_email": "mbonardo@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 48020971.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/components/places/src/Makefile.in", - "toolkit/components/places/src/nsNavHistory.cpp", - "toolkit/components/places/src/nsNavHistory.h", - "toolkit/components/places/src/nsPlacesDBFlush.js" - ], - "components": [], - "directories": [ - "toolkit/components", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "391e102eb8636bdd1c7cfdecef0294f6f80194ed", - "author": "D\u00e3o Gottwald ", - "bug_id": 575870, - "desc": "Backed out changeset 05dde680ade2 as per bug 575870 comment 71", - "pushdate": "2010-08-15 12:32:07", - "backsout": [ - "05dde680ade2fe2a9a55b6d1eb824ddfeeac84c4" - ], - "backedoutby": "", - "author_email": "dao@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 68681990.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "widget/src/windows/nsWindow.cpp", - "widget/src/windows/nsWindow.h" - ], - "components": [], - "directories": [ - "widget", - "widget/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "9f434423bdf92cf2c7732d8bca624d3c71c85f0d", - "author": "Gavin Sharp ", - "bug_id": 585877, - "desc": "Backed out changeset 43b490ef9dab (bug 585877), a=beltzner", - "pushdate": "2010-08-17 19:46:02", - "backsout": [ - "43b490ef9dab30db2c4e2706110ad5d524a21597" - ], - "backedoutby": "", - "author_email": "gavin@gavinsharp.com", - "reviewers": [ - "beltzner" - ], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 25711842.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/html/document/src/nsHTMLDocument.cpp", - "dom/interfaces/html/nsIDOMNSHTMLDocument.idl", - "js/src/xpconnect/src/dom_quickstubs.qsconf" - ], - "components": [], - "directories": [ - "js/src", - "dom/interfaces", - "dom", - "content", - "content/html", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "eaa833618eaab81c9a1aad2516434196b47e9664", - "author": "Ted Mielczarek ", - "bug_id": 490705, - "desc": "Backed out changeset 1362f0ca86d2 (bug 490705 - Support Audio Data API: Get, Manipulate, Play & Save) due to test failures.", - "pushdate": "2010-08-18 17:10:12", - "backsout": [ - "1362f0ca86d2e16b0341e45e8d5d9be8345a44f0" - ], - "backedoutby": "", - "author_email": "ted.mielczarek@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 76119648.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/base/src/nsContentUtils.cpp", - "content/base/src/nsGkAtomList.h", - "content/base/src/nsNodeUtils.cpp", - "content/events/public/nsIEventListenerManager.h", - "content/events/public/nsIPrivateDOMEvent.h", - "content/events/src/Makefile.in", - "content/events/src/nsDOMEvent.cpp", - "content/events/src/nsDOMEvent.h", - "content/events/src/nsDOMNotifyAudioAvailableEvent.cpp", - "content/events/src/nsDOMNotifyAudioAvailableEvent.h", - "content/events/src/nsEventDispatcher.cpp", - "content/events/src/nsEventListenerManager.cpp", - "content/html/content/public/nsHTMLMediaElement.h", - "content/html/content/src/nsHTMLAudioElement.cpp", - "content/html/content/src/nsHTMLMediaElement.cpp", - "content/media/Makefile.in", - "content/media/nsAudioAvailableEventManager.cpp", - "content/media/nsAudioAvailableEventManager.h", - "content/media/nsAudioStream.cpp", - "content/media/nsAudioStream.h", - "content/media/nsBuiltinDecoder.cpp", - "content/media/nsBuiltinDecoder.h", - "content/media/nsBuiltinDecoderStateMachine.cpp", - "content/media/nsBuiltinDecoderStateMachine.h", - "content/media/nsMediaDecoder.cpp", - "content/media/nsMediaDecoder.h", - "content/media/test/Makefile.in", - "content/media/test/file_a4_tone.ogg", - "content/media/test/file_audio_event_adopt_iframe.html", - "content/media/test/test_a4_tone.html", - "content/media/test/test_audio_event_adopt.html", - "content/media/test/test_audiowrite.html", - "content/media/wave/nsWaveDecoder.cpp", - "dom/base/nsDOMClassInfo.cpp", - "dom/base/nsDOMClassInfoClasses.h", - "dom/base/nsGlobalWindow.cpp", - "dom/base/nsPIDOMWindow.h", - "dom/interfaces/events/Makefile.in", - "dom/interfaces/events/nsIDOMNotifyAudioAvailableEvent.idl", - "dom/interfaces/html/nsIDOMHTMLAudioElement.idl", - "dom/interfaces/html/nsIDOMHTMLMediaElement.idl", - "js/src/xpconnect/src/dom_quickstubs.qsconf", - "widget/public/nsGUIEvent.h", - "xpcom/glue/nsCycleCollectionParticipant.h" - ], - "components": [ - "Core::DOM: Core & HTML" - ], - "directories": [ - "xpcom/glue", - "js/src", - "widget", - "dom/interfaces", - "dom/base", - "dom", - "content/base", - "content", - "content/media", - "widget/public", - "xpcom", - "content/html", - "js", - "content/events" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "c78c4fda1325dd5169f15e80f42de19908b7d99e", - "author": "Mark Banner ", - "bug_id": 471643, - "desc": "Backed out changeset f600448ae7db / bug 471643 due to reftest failures", - "pushdate": "2010-08-19 08:29:47", - "backsout": [ - "f600448ae7db41bd72ea625d674967a262c0dd81" - ], - "backedoutby": "", - "author_email": "bugzilla@standard8.plus.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 69721891.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/base/nsCSSRendering.cpp", - "layout/base/nsCSSRendering.h", - "layout/base/nsDisplayList.cpp", - "layout/reftests/border-radius/percent-1-ref.html", - "layout/reftests/border-radius/percent-1.html", - "layout/reftests/border-radius/percent-2-ref.html", - "layout/reftests/border-radius/percent-2.html", - "layout/reftests/border-radius/percent-3-ref.html", - "layout/reftests/border-radius/percent-3.html", - "layout/reftests/border-radius/reftest.list" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "layout/reftests", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "fae9fc14a22a9fd70f56544181e689b1af72f0f6", - "author": "Jonas Sicking ", - "bug_id": 588977, - "desc": "Backout 2d6ead22831c (bug 588977) due to orange. a=backout", - "pushdate": "2010-08-20 17:26:59", - "backsout": [ - "2d6ead22831cbe04922906805f5c38c730760875" - ], - "backedoutby": "", - "author_email": "jonas@sicking.cc", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 64435434.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/base/nsPresContext.h" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "cbb5793c529eda0f1a01a82edad05684c6978fd5", - "author": "Justin Lebar ", - "bug_id": 576026, - "desc": "Backed out changeset 2d57f5901aa2 (bug 576026). a=bustage", - "pushdate": "2010-08-24 22:52:15", - "backsout": [ - "2d57f5901aa226d161cbc45b4d9db41d34a28af8" - ], - "backedoutby": "", - "author_email": "justin.lebar@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 19864604.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "testing/mochitest/Makefile.in", - "testing/mochitest/runtests.py", - "testing/mochitest/runtests.py.in" - ], - "components": [ - "Testing::Mochitest" - ], - "directories": [ - "testing/mochitest", - "testing" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "c3c185d6ee88ebb2b52bc8cb1fbefc737779f749", - "author": "Robert Sayre ", - "bug_id": 587257, - "desc": "Backed out changeset b404ad209cb9. (Bug 587257 - Make Array.prototype.join faster. r=lw)", - "pushdate": "2010-08-25 16:25:25", - "backsout": [ - "b404ad209cb92ed0f056a77feb8e093a28734856" - ], - "backedoutby": "", - "author_email": "sayrer@gmail.com", - "reviewers": [ - "lw" - ], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 69541692.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsarray.cpp", - "js/src/jsstr.cpp", - "js/src/jsstrinlines.h" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "c8e75a4433d9b62eddcfb841c53af5815ae95948", - "author": "Boris Zbarsky ", - "bug_id": 590422, - "desc": "Backed out changeset d578993db396 (bug 590422) due to possible performance regressions (especially WinXP Tscroll).", - "pushdate": "2010-08-27 18:09:29", - "backsout": [ - "d578993db3969fa6e89e2e487ac4bb1c660aa7c9" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 67377877.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "dom/base/nsGlobalWindow.cpp", - "xpcom/threads/TimerThread.cpp", - "xpcom/threads/TimerThread.h", - "xpcom/threads/nsTimerImpl.cpp" - ], - "components": [ - "Core::XPCOM" - ], - "directories": [ - "dom", - "xpcom/threads", - "xpcom", - "dom/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "0487454f42193aa15efea739c359ea67b1682b11", - "author": "Blair McBride ", - "bug_id": 581076, - "desc": "Backed out changeset 6fe388a0fb5e (Bug 581076) due to test failures. a=bustage", - "pushdate": "2010-08-30 05:36:19", - "backsout": [ - "6fe388a0fb5eb94bc4b9969d60111b8ce5141378" - ], - "backedoutby": "", - "author_email": "bmcbride@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 32276589.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/app/profile/firefox.js", - "toolkit/locales/en-US/chrome/mozapps/extensions/extensions.properties", - "toolkit/mozapps/extensions/content/extensions.css", - "toolkit/mozapps/extensions/content/extensions.js", - "toolkit/mozapps/extensions/content/extensions.xul", - "toolkit/mozapps/extensions/test/browser/Makefile.in", - "toolkit/mozapps/extensions/test/browser/browser_bug581076.js", - "toolkit/themes/gnomestripe/mozapps/extensions/extensions.css", - "toolkit/themes/pinstripe/mozapps/extensions/extensions.css", - "toolkit/themes/winstripe/mozapps/extensions/extensions.css" - ], - "components": [ - "Firefox::General" - ], - "directories": [ - "toolkit", - "toolkit/locales", - "browser/app", - "toolkit/mozapps", - "browser", - "toolkit/themes" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "9e09716ddaf73e57dbd0d1a50492b0404275f67e", - "author": "Josh Aas ", - "bug_id": 592951, - "desc": "Backed out changeset 52388a9a6337, bug 592951. a=me", - "pushdate": "2010-09-08 22:20:40", - "backsout": [ - "52388a9a63378153bc365b022d913b64e9629bb1" - ], - "backedoutby": "", - "author_email": "joshmoz@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 69444001.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "ipc/app/MozillaRuntimeMain.cpp", - "ipc/chromium/src/base/process_util.h", - "ipc/chromium/src/base/process_util_mac.mm", - "ipc/glue/GeckoChildProcessHost.cpp", - "toolkit/xre/nsEmbedFunctions.cpp" - ], - "components": [ - "Core::IPC", - "Core::DOM: Content Processes", - "Toolkit::Startup and Profile System" - ], - "directories": [ - "ipc/glue", - "toolkit", - "ipc", - "ipc/chromium", - "toolkit/xre", - "ipc/app" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "b5896c8b6d41913e2968a08c15579152a58af8ce", - "author": "Ehsan Akhgari ", - "bug_id": 588999, - "desc": "Backed out changeset 4bc623a55708 (bug 588999) because of orange on Windows 7", - "pushdate": "2010-09-09 23:26:17", - "backsout": [ - "4bc623a5570853ba5da99922f425cd3753b48f08" - ], - "backedoutby": "", - "author_email": "ehsan@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 26791454.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/base/content/tabview/tabview.css", - "browser/base/content/tabview/tabview.html", - "browser/base/content/tabview/ui.js", - "browser/base/content/test/tabview/Makefile.in", - "browser/base/content/test/tabview/browser_tabview_exit_button.js", - "browser/themes/gnomestripe/browser/tabview/tabview.css", - "browser/themes/pinstripe/browser/tabview/tabview.css", - "browser/themes/winstripe/browser/tabview/tabview.css" - ], - "components": [], - "directories": [ - "browser/base", - "browser/themes", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "d8674093f3558f6cfc862352dec321af9f8e4d7a", - "author": "Justin Lebar ", - "bug_id": 578880, - "desc": "Backed out changeset 100bcacdbf45 due to orange (bug 578880).", - "pushdate": "2010-09-10 20:50:33", - "backsout": [ - "100bcacdbf456379bfd0f81359b600dfa648199a" - ], - "backedoutby": "", - "author_email": "justin.lebar@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 21326102.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "config/autoconf.mk.in", - "configure.in", - "js/src/Makefile.in", - "js/src/config/autoconf.mk.in", - "js/src/configure.in", - "xpcom/io/Makefile.in" - ], - "components": [ - "Firefox Build System::General" - ], - "directories": [ - "js/src", - "xpcom/io", - "config", - "xpcom", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "84baf90b040c7d5912724461c6e9e1d104ce5a18", - "author": "Gavin Sharp ", - "bug_id": 589613, - "desc": "Backed out changeset 2a216165e361 (bug 589613), a=shutuphook", - "pushdate": "2010-09-11 17:49:52", - "backsout": [ - "2a216165e361c07faf31e4788b404580e9cc7343" - ], - "backedoutby": "", - "author_email": "gavin@gavinsharp.com", - "reviewers": [ - "shutuphook" - ], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 27864872.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "docshell/base/nsDefaultURIFixup.cpp", - "netwerk/base/public/Makefile.in" - ], - "components": [], - "directories": [ - "netwerk/base", - "docshell/base", - "docshell", - "netwerk" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "afe3db59ae35d04547b3c07fdc46e8e77d8cd9d0", - "author": "Robert Sayre ", - "bug_id": 588016, - "desc": "Backed out changeset e2e1ea2a39ce. (Igor Bukanov \u2013 bug 588016 - Avoid reporting OOM when background has not finished. r=anygregor)", - "pushdate": "2010-09-11 19:16:24", - "backsout": [ - "e2e1ea2a39cea2442b332998015324369763f0a2" - ], - "backedoutby": "", - "author_email": "sayrer@gmail.com", - "reviewers": [ - "anygregor" - ], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 71020751.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/Makefile.in", - "js/src/jsapi.cpp", - "js/src/jscntxt.cpp", - "js/src/jscntxt.h", - "js/src/jsgc.cpp", - "js/src/jsgc.h", - "js/src/jsobj.cpp", - "js/src/jsscope.cpp", - "js/src/jstask.cpp", - "js/src/jstask.h" - ], - "components": [ - "Firefox Build System::General", - "Core::JavaScript Engine" - ], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "59244235c85ba6eb0d296198ec5ea5ac7540a1c7", - "author": "L. David Baron ", - "bug_id": 508115, - "desc": "Backed out changeset a6ee83aa638e to fix orange (test_bug508115.xul timing out)", - "pushdate": "2010-09-14 03:45:55", - "backsout": [ - "a6ee83aa638e" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 73644476.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/xbl/test/file_bug591198_inner.html", - "content/xbl/test/file_bug591198_xbl.xml", - "content/xbl/test/test_bug591198.html" - ], - "components": [], - "directories": [ - "content", - "content/xbl" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "5ef1dd2885fbd311be1be1993e786f218660cbb5", - "author": "L. David Baron ", - "bug_id": 508115, - "desc": "Backed out changeset 2e55203d7b80 to fix orange (test_bug508115.xul timing out).", - "pushdate": "2010-09-14 03:45:55", - "backsout": [ - "2e55203d7b80a8dffdf9217d8eefbf4a6f897456" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 73644476.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/base/public/nsContentErrors.h", - "content/xbl/src/nsXBLService.cpp", - "content/xbl/test/Makefile.in", - "layout/base/nsCSSFrameConstructor.cpp" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "content/base", - "content", - "content/xbl", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "df5e678290228bd3f9eb047fbe4597c1bb34092a", - "author": "Peter Van der Beken ", - "bug_id": 590612, - "desc": "Backout c130135dcf02 (Fix for bug 590612 (Speed up js-wrapping in classinfo when we already have a wrapper)).", - "pushdate": "2010-09-15 05:28:28", - "backsout": [ - "c130135dcf023f94f778866f3aba337704323f13" - ], - "backedoutby": "", - "author_email": "peterv@propagandism.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 70464335.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/base/public/nsContentUtils.h", - "content/base/src/nsContentUtils.cpp", - "js/src/jstl.h", - "js/src/jsvector.h", - "js/src/xpconnect/src/qsgen.py", - "js/src/xpconnect/src/xpcprivate.h", - "js/src/xpconnect/src/xpcpublic.h", - "js/src/xpconnect/src/xpcwrappednative.cpp" - ], - "components": [], - "directories": [ - "js", - "content/base", - "content", - "js/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "77e11b95175faa0b37166d68311b62b8c398e13d", - "author": "Oleg Romashin ", - "bug_id": 582840, - "desc": "Backout changeset 7eb93fe05d3a. bug 582840 due to oranges", - "pushdate": "2010-09-15 22:02:59", - "backsout": [ - "7eb93fe05d3aed48fe64ee4b00f55d7a931ee7fd" - ], - "backedoutby": "", - "author_email": "romaxa@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 65638790.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/base/public/nsIFrameLoader.idl", - "content/base/src/nsFrameLoader.cpp", - "content/base/test/chrome/Makefile.in", - "content/base/test/chrome/bug514705.html", - "content/base/test/chrome/bug514705_helper.xul", - "content/base/test/chrome/test_bug514705.xul", - "dom/ipc/PBrowser.ipdl", - "dom/ipc/TabChild.cpp", - "dom/ipc/TabChild.h", - "dom/ipc/TabParent.cpp", - "dom/ipc/TabParent.h", - "toolkit/content/widgets/browser.xml" - ], - "components": [ - "Core::DOM: Content Processes" - ], - "directories": [ - "toolkit/content", - "toolkit", - "dom", - "content/base", - "content", - "dom/ipc" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "8422935a2d917c8769c68fbff2a7443e286ae28e", - "author": "Jason Orendorff ", - "bug_id": 580033, - "desc": "Backed out changeset 84b4d4856e1e (bug 580033) due to orange.", - "pushdate": "2010-09-16 16:26:06", - "backsout": [ - "84b4d4856e1eaab0ccc7ba6184a977ab44ef5ab5" - ], - "backedoutby": "", - "author_email": "jorendorff@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 72558895.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jscntxt.h" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "58e7b99bb1d09011736b55ed85f9bb75af839b5b", - "author": "Josh Aas ", - "bug_id": 596762, - "desc": "Backed out changeset 080a38bd09c5, bug 596762, a=bustage", - "pushdate": "2010-09-16 22:41:26", - "backsout": [ - "080a38bd09c5cbdf173e61216655032c865d9b82" - ], - "backedoutby": "", - "author_email": "joshmoz@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 70136447.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/app/profile/firefox.js", - "modules/plugin/base/src/nsNPAPIPlugin.cpp" - ], - "components": [ - "Firefox::General" - ], - "directories": [ - "modules", - "modules/plugin", - "browser", - "browser/app" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "84a05bdabec5be7bacde12cccc92db17f4d54c5a", - "author": "Josh Aas ", - "bug_id": 596762, - "desc": "Backed out changeset c06ef0414fee, bug 596762. a=me", - "pushdate": "2010-09-21 02:13:50", - "backsout": [ - "c06ef0414fee2ae6ae41b8a4a13c62c132a7e780" - ], - "backedoutby": "", - "author_email": "joshmoz@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 70494791.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/app/profile/firefox.js", - "layout/tools/reftest/reftest.js", - "modules/plugin/base/src/nsNPAPIPlugin.cpp", - "modules/plugin/test/mochitest/test_GCrace.html", - "modules/plugin/test/mochitest/test_crash_nested_loop.html", - "modules/plugin/test/mochitest/test_crash_notify.xul", - "modules/plugin/test/mochitest/test_crash_notify_no_report.xul", - "modules/plugin/test/mochitest/test_crash_submit.xul", - "modules/plugin/test/mochitest/test_crashing.html", - "modules/plugin/test/mochitest/test_crashing2.html", - "modules/plugin/test/mochitest/test_hanging.html", - "modules/plugin/test/reftest/reftest.list", - "testing/mochitest/tests/SimpleTest/SimpleTest.js", - "testing/testsuite-targets.mk" - ], - "components": [ - "Testing::Mochitest", - "Firefox::General", - "Testing::General" - ], - "directories": [ - "layout/tools", - "browser/app", - "modules/plugin", - "testing/mochitest", - "browser", - "testing", - "layout", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "f552a61aa4234eca5819bb3bfd6490501a13c330", - "author": "Robert Sayre ", - "bug_id": 597945, - "desc": "Back out changeset d7d3c0af2877. Brendan Eich \u2013 Fix slot leak that leads to allocSlot assert botch (597945, r=jorendorff).", - "pushdate": "2010-09-21 05:12:47", - "backsout": [ - "d7d3c0af287702956715d115205e2695b5ec39fa" - ], - "backedoutby": "", - "author_email": "sayrer@gmail.com", - "reviewers": [ - "jorendorff" - ], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 71834134.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsscope.cpp", - "js/src/tests/js1_8_5/regress/jstests.list", - "js/src/tests/js1_8_5/regress/regress-597945-1.js", - "js/src/tests/js1_8_5/regress/regress-597945-2.js" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - } -] \ No newline at end of file diff --git a/dataset/raw_backout_data.json b/dataset/raw_backout_data.json deleted file mode 100644 index 5d5a17d844..0000000000 --- a/dataset/raw_backout_data.json +++ /dev/null @@ -1,101119 +0,0 @@ -[ - { - "node": "3a2a9e0c5c633a413efbf2db5110a978f7ebf055", - "author": "bcrowder@mozilla.com", - "bug_id": 439110, - "desc": "Backed out changeset f201baf7bf04 (bug 439110), was causing unit-test failures", - "pushdate": "2008-06-18 23:00:40", - "backsout": [ - "f201baf7bf04" - ], - "backedoutby": "", - "author_email": "bcrowder@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 2863366.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/xpconnect/shell/xpcshell.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "294bf662e8c0a3e3a1bc74a9dbd6d4d499c30e7f", - "author": "Daniel Holbert ", - "bug_id": 433373, - "desc": "Backed out changeset 5bffc31ff797 (bug 433373) -- first attempt didn't handle page scaling correctly.", - "pushdate": "2008-06-24 18:54:31", - "backsout": [ - "5bffc31ff797" - ], - "backedoutby": "", - "author_email": "dholbert@cs.stanford.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 3502598.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/generic/nsPageFrame.cpp" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "layout/generic", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "4f1b1553985c88372878dffe93a79988a4f1c8a1", - "author": "L. David Baron ", - "bug_id": 363706, - "desc": "Back out 0b57ada5d4b2 due to mochitest failures on at least Windows. (Bug 363706)", - "pushdate": "2008-07-02 05:02:11", - "backsout": [ - "0b57ada5d4b2" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 4183452.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/base/nsLayoutUtils.cpp", - "layout/base/nsLayoutUtils.h", - "layout/generic/nsAbsoluteContainingBlock.cpp", - "layout/generic/nsFrame.cpp", - "layout/style/nsComputedDOMStyle.cpp", - "layout/style/nsRuleNode.cpp", - "layout/style/nsStyleCoord.cpp", - "layout/style/nsStyleCoord.h", - "layout/style/nsStyleStruct.cpp", - "layout/style/nsStyleStruct.h", - "layout/tables/BasicTableLayoutStrategy.cpp", - "layout/tables/FixedTableLayoutStrategy.cpp", - "layout/xul/base/src/nsBox.cpp" - ], - "components": [ - "Core::CSS Parsing and Computation", - "Core::DOM: CSS Object Model", - "Core::Layout", - "Core::Layout: Tables", - "Core::Layout: Positioned" - ], - "directories": [ - "layout/generic", - "layout/tables", - "layout/xul", - "layout/style", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "487bd2c4044a093a8f1e108c7c925d1b55e85975", - "author": "L. David Baron ", - "bug_id": 363706, - "desc": "Back out 0b1995eab10f due to mochitest failures on at least Windows. (Bug 363706)", - "pushdate": "2008-07-02 05:02:11", - "backsout": [ - "0b1995eab10f" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 4183452.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "gfx/thebes/public/gfxFont.h", - "gfx/thebes/src/gfxAtsuiFonts.cpp", - "gfx/thebes/src/gfxOS2Fonts.cpp", - "gfx/thebes/src/gfxPangoFonts.cpp", - "gfx/thebes/src/gfxWindowsFonts.cpp", - "layout/reftests/bugs/371043-1-ref.html", - "layout/reftests/bugs/reftest.list", - "layout/style/nsRuleNode.cpp" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "gfx/thebes", - "layout/reftests", - "layout/style", - "gfx", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "847ff9bffc86ff91a8da3ea1b9f5b38bc335bce0", - "author": "Shawn Wilsher ", - "bug_id": 442949, - "desc": "Backed out changeset c9b5882bf6f6 per bug 442949.\nThis changeset is only being backed out because it depends on the sqlite upgrade.", - "pushdate": "2008-07-08 14:15:34", - "backsout": [ - "c9b5882bf6f6" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 2932103.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "db/sqlite3/src/Makefile.in" - ], - "components": [], - "directories": [ - "db/sqlite3", - "db" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "00f39bafc70ebf3fb8ee8911ad097624cf2383a0", - "author": "Shawn Wilsher ", - "bug_id": 442949, - "desc": "Backed out changeset 1d72dd9072ab for Bug 442949 (Ts regression)", - "pushdate": "2008-07-08 14:15:34", - "backsout": [ - "1d72dd9072ab" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 2932103.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "db/sqlite3/src/sqlite3.c", - "db/sqlite3/src/sqlite3.h" - ], - "components": [], - "directories": [ - "db/sqlite3", - "db" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "6d3ecb00edf7a48850ff6ea170af781d6339b363", - "author": "Shawn Wilsher ", - "bug_id": 442949, - "desc": "Backed out changeset e741c9c886f7 for bug 442949 (Ts regression)", - "pushdate": "2008-07-08 14:15:34", - "backsout": [ - "e741c9c886f7" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 2932103.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "configure.in", - "db/sqlite3/README.MOZILLA" - ], - "components": [], - "directories": [ - "db/sqlite3", - "db" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "ad98cff74097a54fc30245d5f7747d095834e68a", - "author": "Shawn Wilsher ", - "bug_id": 443220, - "desc": "Backed out changeset 12412df591a0 (bug 443220)", - "pushdate": "2008-07-08 22:34:54", - "backsout": [ - "12412df591a0" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 2962063.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "tools/test-harness/xpcshell-simple/test_one.sh" - ], - "components": [], - "directories": [ - "tools/test-harness", - "tools" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "337a43c872960010037890048fccfc08e2af8a96", - "author": "L. David Baron ", - "bug_id": 374754, - "desc": "Backed out changeset 5c009a853d70 for hitting a fatal JS_Assert during xpcshell unit tests (xpcom/unit/test_bug374754.js) on the DO_NEXT_OP(JSOP_INCNAME_LENGTH) line on !JS_THREADED_INTERP platforms (Windows).", - "pushdate": "2008-07-19 04:53:17", - "backsout": [ - "5c009a853d70" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 5651718.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsemit.cpp", - "js/src/jsinterp.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "16708f23daf5fbf23e298eeb28d7693e42ec6d34", - "author": "Edward Lee ", - "bug_id": 446621, - "desc": "Backout 6831521f03ac to fix Bug 446621 - Slowdown on AutoComplete - AwesomeBar. a=beltzner", - "pushdate": "2008-07-22 15:50:07", - "backsout": [ - "6831521f03ac" - ], - "backedoutby": "", - "author_email": "edward.lee@engineering.uiuc.edu", - "reviewers": [ - "beltzner" - ], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 5214472.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/components/places/src/nsNavHistoryAutoComplete.cpp" - ], - "components": [], - "directories": [ - "toolkit/components", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "cab5a570f46e10259bcd9152bcd3fab535a35e5c", - "author": "Ryan Flint ", - "bug_id": 432599, - "desc": "Backout changesets d811aa4cf0cf and 96ca77c43cb9 from bug 432599", - "pushdate": "2008-07-29 23:05:50", - "backsout": [ - "d811aa4cf0cf", - "96ca77c43cb9" - ], - "backedoutby": "", - "author_email": "rflint@ryanflint.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 836604.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/base/content/browser-places.js", - "browser/base/content/test/Makefile.in", - "browser/base/content/test/browser_bug432599.js" - ], - "components": [ - "Firefox::Bookmarks & History" - ], - "directories": [ - "browser/base", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "3bd5b0f13df3cce01677022941d92e14747eca78", - "author": "Justin Dolske ", - "bug_id": 449422, - "desc": "Backed out changeset 7362e63c648e (relanding bug 449422)", - "pushdate": "2008-08-14 04:20:03", - "backsout": [ - "7362e63c648e" - ], - "backedoutby": "", - "author_email": "dolske@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 5043247.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/tables/nsTableRowFrame.cpp", - "layout/tables/nsTableRowGroupFrame.cpp" - ], - "components": [ - "Core::Layout: Tables" - ], - "directories": [ - "layout/tables", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "93a88a69a3df3d36b4b4c28126cd38ebd04026b4", - "author": "Justin Dolske ", - "bug_id": 449168, - "desc": "Backed out changeset 4b2c67fe7e6b (relanding bug 449168)", - "pushdate": "2008-08-14 04:51:30", - "backsout": [ - "4b2c67fe7e6b" - ], - "backedoutby": "", - "author_email": "dolske@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 5045134.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/generic/nsFrameSelection.h", - "layout/generic/nsTextFrame.h", - "layout/generic/nsTextFrameThebes.cpp" - ], - "components": [ - "Core::Layout", - "Core::Layout: Text and Fonts" - ], - "directories": [ - "layout/generic", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "afeaf72a5266b81ccdc006fe1d923aea93f88811", - "author": "Justin Dolske ", - "bug_id": 121341, - "desc": "Backed out changeset db55605b2a4c (relanding bug 121341)", - "pushdate": "2008-08-14 05:00:00", - "backsout": [ - "db55605b2a4c" - ], - "backedoutby": "", - "author_email": "dolske@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 5045644.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "xpcom/ds/nsPersistentProperties.cpp", - "xpcom/ds/nsPersistentProperties.h", - "xpcom/tests/unit/data/bug121341-2.properties", - "xpcom/tests/unit/data/bug121341.properties", - "xpcom/tests/unit/test_bug121341.js" - ], - "components": [ - "Core::XPCOM" - ], - "directories": [ - "xpcom/ds", - "xpcom", - "xpcom/tests" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "573c5b6e8ec057ba45cc91e88b5ec74403fda2c8", - "author": "Benjamin Smedberg ", - "bug_id": 31290, - "desc": "Backed out changeset e92e18d52d71 due to the following test failures on Windows:\n*** 31290 ERROR TEST-UNEXPECTED-FAIL | /tests/dom/tests/mochitest/general/test_offsets.xul | svgbase bounding rect width - got 45, expected 0\n*** 31291 ERROR TEST-UNEXPECTED-FAIL | /tests/dom/tests/mochitest/general/test_offsets.xul | svgbase bounding rect height - got 20, expected 0\n*** 31292 ERROR TEST-UNEXPECTED-FAIL | /tests/dom/tests/mochitest/general/test_offsets.xul | svgbase bounding rect right - got 45, expected 0\n*** 31293 ERROR TEST-UNEXPECTED-FAIL | /tests/dom/tests/mochitest/general/test_offsets.xul | svgbase bounding rect bottom - got 20, expected 0\n*** 31306 ERROR TEST-UNEXPECTED-FAIL | /tests/dom/tests/mochitest/general/test_offsets.xul | svgrect bounding rect width - got 45, expected 0\n*** 31307 ERROR TEST-UNEXPECTED-FAIL | /tests/dom/tests/mochitest/general/test_offsets.xul | svgrect bounding rect height - got 20, expected 0\n*** 31308 ERROR TEST-UNEXPECTED-FAIL | /tests/dom/tests/mochitest/general/test_offsets.xul | svgrect bounding rect right - got 45, expected 0\n*** 31309 ERROR TEST-UNEXPECTED-FAIL | /tests/dom/tests/mochitest/general/test_offsets.xul | svgrect bounding rect bottom - got 20, expected 0", - "pushdate": "2008-08-19 16:22:27", - "backsout": [ - "e92e18d52d71" - ], - "backedoutby": "", - "author_email": "benjamin@smedbergs.us", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 13131183.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/base/nsLayoutUtils.cpp", - "layout/svg/base/src/nsISVGChildFrame.h", - "layout/svg/base/src/nsSVGClipPathFrame.cpp", - "layout/svg/base/src/nsSVGClipPathFrame.h", - "layout/svg/base/src/nsSVGContainerFrame.cpp", - "layout/svg/base/src/nsSVGContainerFrame.h", - "layout/svg/base/src/nsSVGEffects.cpp", - "layout/svg/base/src/nsSVGFilterFrame.cpp", - "layout/svg/base/src/nsSVGFilterFrame.h", - "layout/svg/base/src/nsSVGForeignObjectFrame.cpp", - "layout/svg/base/src/nsSVGForeignObjectFrame.h", - "layout/svg/base/src/nsSVGGlyphFrame.cpp", - "layout/svg/base/src/nsSVGGlyphFrame.h", - "layout/svg/base/src/nsSVGImageFrame.cpp", - "layout/svg/base/src/nsSVGInnerSVGFrame.cpp", - "layout/svg/base/src/nsSVGMarkerFrame.cpp", - "layout/svg/base/src/nsSVGMaskFrame.cpp", - "layout/svg/base/src/nsSVGOuterSVGFrame.cpp", - "layout/svg/base/src/nsSVGOuterSVGFrame.h", - "layout/svg/base/src/nsSVGPathGeometryFrame.cpp", - "layout/svg/base/src/nsSVGPathGeometryFrame.h", - "layout/svg/base/src/nsSVGSwitchFrame.cpp", - "layout/svg/base/src/nsSVGTextFrame.cpp", - "layout/svg/base/src/nsSVGTextFrame.h", - "layout/svg/base/src/nsSVGUtils.cpp", - "layout/svg/base/src/nsSVGUtils.h" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "layout/svg", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "2c020a9f03c14446c2b28966511240cc2883bcc5", - "author": "Dave Camp ", - "bug_id": 430061, - "desc": "Backed out changeset e63a23edb90c due to Rlk regression (bug 430061).", - "pushdate": "2008-08-19 21:43:06", - "backsout": [ - "e63a23edb90c" - ], - "backedoutby": "", - "author_email": "dcamp@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 4735124.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "modules/libpr0n/build/nsImageModule.cpp", - "modules/libpr0n/src/Makefile.in", - "modules/libpr0n/src/imgCache.cpp", - "modules/libpr0n/src/imgCache.h", - "modules/libpr0n/src/imgLoader.cpp", - "modules/libpr0n/src/imgLoader.h", - "modules/libpr0n/src/imgRequest.cpp", - "modules/libpr0n/src/imgRequest.h", - "modules/libpr0n/test/Makefile.in", - "modules/libpref/src/init/all.js" - ], - "components": [], - "directories": [ - "modules/libpref", - "modules/libpr0n", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "c82226c56072c7c85c7d9e614fa1c84b65d42592", - "author": "Dave Camp ", - "bug_id": 261074, - "desc": "Backed out changeset c0f5a0af84dd to try to fix windows orange (Bug 261074).", - "pushdate": "2008-08-19 22:46:59", - "backsout": [ - "c0f5a0af84dd" - ], - "backedoutby": "", - "author_email": "dcamp@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 4738957.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "widget/src/windows/nsWindow.cpp" - ], - "components": [], - "directories": [ - "widget", - "widget/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "aa14280d31fb3486a3371581ae6a04461738d1eb", - "author": "Dave Camp ", - "bug_id": 356295, - "desc": "Backed out changeset 30d900751ca9 to fix unit test orange (Bug 356295)", - "pushdate": "2008-08-20 00:57:00", - "backsout": [ - "30d900751ca9" - ], - "backedoutby": "", - "author_email": "dcamp@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 4746758.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/base/content/pageinfo/pageInfo.js", - "content/base/public/nsContentUtils.h", - "content/base/src/nsContentAreaDragDrop.cpp", - "content/base/src/nsContentAreaDragDrop.h", - "content/base/src/nsContentUtils.cpp", - "content/base/src/nsGkAtomList.h", - "content/events/public/nsIPrivateDOMEvent.h", - "content/events/src/Makefile.in", - "content/events/src/nsDOMDataTransfer.cpp", - "content/events/src/nsDOMDataTransfer.h", - "content/events/src/nsDOMDragEvent.cpp", - "content/events/src/nsDOMDragEvent.h", - "content/events/src/nsDOMEvent.cpp", - "content/events/src/nsDOMEvent.h", - "content/events/src/nsDOMMouseEvent.h", - "content/events/src/nsDOMUIEvent.cpp", - "content/events/src/nsEventDispatcher.cpp", - "content/events/src/nsEventListenerManager.cpp", - "content/events/src/nsEventStateManager.cpp", - "content/events/src/nsEventStateManager.h", - "content/events/test/Makefile.in", - "content/events/test/test_draggableprop.html", - "content/events/test/test_dragstart.html", - "content/html/content/src/nsGenericHTMLElement.cpp", - "content/html/content/src/nsGenericHTMLElement.h", - "content/html/content/src/nsHTMLAnchorElement.cpp", - "content/html/content/src/nsHTMLImageElement.cpp", - "dom/public/coreEvents/nsIDOMDragListener.h", - "dom/public/idl/events/Makefile.in", - "dom/public/idl/events/nsIDOMDataTransfer.idl", - "dom/public/idl/events/nsIDOMDragEvent.idl", - "dom/public/idl/html/nsIDOMNSHTMLElement.idl", - "dom/public/nsDOMClassInfoID.h", - "dom/src/base/nsDOMClassInfo.cpp", - "editor/libeditor/base/nsEditorUtils.cpp", - "editor/libeditor/base/nsEditorUtils.h", - "editor/libeditor/html/nsHTMLDataTransfer.cpp", - "editor/libeditor/text/nsEditorEventListeners.cpp", - "editor/libeditor/text/nsPlaintextDataTransfer.cpp", - "layout/base/nsLayoutUtils.cpp", - "layout/xul/base/src/tree/public/nsITreeBoxObject.idl", - "layout/xul/base/src/tree/src/nsTreeBodyFrame.cpp", - "layout/xul/base/src/tree/src/nsTreeBoxObject.cpp", - "testing/mochitest/tests/SimpleTest/EventUtils.js", - "toolkit/content/nsDragAndDrop.js", - "widget/public/nsGUIEvent.h", - "widget/public/nsIDragService.idl", - "widget/public/nsIDragSession.idl", - "widget/src/beos/nsWindow.cpp", - "widget/src/cocoa/nsChildView.mm", - "widget/src/cocoa/nsDragService.mm", - "widget/src/gtk2/nsWindow.cpp", - "widget/src/gtk2/nsWindow.h", - "widget/src/os2/nsWindow.cpp", - "widget/src/photon/nsWidget.cpp", - "widget/src/windows/nsNativeDragTarget.cpp", - "widget/src/xpwidgets/nsBaseDragService.cpp", - "widget/src/xpwidgets/nsBaseDragService.h", - "widget/src/xpwidgets/nsPrimitiveHelpers.cpp", - "xpfe/global/jar.mn" - ], - "components": [ - "Core::Layout", - "Firefox::Page Info Window", - "Testing::Mochitest" - ], - "directories": [ - "browser/base", - "toolkit/content", - "editor", - "content/base", - "content", - "content/html", - "toolkit", - "dom", - "browser", - "layout", - "dom/public", - "dom/src", - "xpfe", - "layout/xul", - "testing/mochitest", - "testing", - "layout/base", - "widget", - "editor/libeditor", - "xpfe/global", - "widget/public", - "widget/src", - "content/events" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "695ba8eac3dc1e4a5206ff29f25a36267bc2d3e0", - "author": "Dave Camp ", - "bug_id": 442812, - "desc": "Backed out changeset 1e3d4775197a (bug 442812)", - "pushdate": "2008-08-20 05:59:47", - "backsout": [ - "1e3d4775197a" - ], - "backedoutby": "", - "author_email": "dcamp@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 4764925.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "caps/src/nsScriptSecurityManager.cpp", - "content/base/public/nsContentUtils.h", - "content/base/src/Makefile.in", - "content/base/src/nsContentSink.cpp", - "content/base/src/nsContentSink.h", - "content/base/src/nsContentUtils.cpp", - "dom/src/offline/nsDOMOfflineResourceList.cpp", - "netwerk/base/public/nsNetUtil.h", - "netwerk/cache/src/nsDiskCacheDeviceSQL.cpp", - "netwerk/cache/src/nsDiskCacheDeviceSQL.h", - "uriloader/prefetch/nsIOfflineCacheUpdate.idl", - "uriloader/prefetch/nsOfflineCacheUpdate.cpp" - ], - "components": [], - "directories": [ - "netwerk/base", - "uriloader/prefetch", - "dom/src", - "netwerk", - "netwerk/cache", - "caps/src", - "caps", - "dom", - "content/base", - "content", - "uriloader" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "f65e7540fe97621babc413d15060df2cb3d86e81", - "author": "Dave Camp ", - "bug_id": 442806, - "desc": "Backed out changeset ea551e6f0f40 (bug 442806)", - "pushdate": "2008-08-20 05:59:47", - "backsout": [ - "ea551e6f0f40" - ], - "backedoutby": "", - "author_email": "dcamp@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 4764925.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/base/content/browser.js", - "browser/components/preferences/advanced.js", - "content/base/src/nsContentSink.cpp", - "content/base/src/nsContentUtils.cpp", - "content/base/src/nsDocument.cpp", - "content/base/src/nsDocument.h", - "docshell/base/nsDocShell.cpp", - "dom/src/offline/Makefile.in", - "dom/src/offline/nsDOMOfflineResourceList.cpp", - "dom/src/offline/nsDOMOfflineResourceList.h", - "dom/tests/mochitest/ajax/offline/offlineTests.js", - "dom/tests/mochitest/ajax/offline/test_changingManifest.html", - "dom/tests/mochitest/ajax/offline/test_simpleManifest.html", - "netwerk/base/public/Makefile.in", - "netwerk/base/public/nsIApplicationCache.idl", - "netwerk/base/public/nsIApplicationCacheContainer.idl", - "netwerk/base/public/nsIApplicationCacheService.idl", - "netwerk/base/public/nsINetUtil.idl", - "netwerk/base/public/nsNetUtil.h", - "netwerk/base/src/nsIOService.cpp", - "netwerk/base/src/nsIOService.h", - "netwerk/build/Makefile.in", - "netwerk/build/nsNetCID.h", - "netwerk/build/nsNetModule.cpp", - "netwerk/cache/public/Makefile.in", - "netwerk/cache/public/nsICacheService.idl", - "netwerk/cache/public/nsIOfflineCacheSession.idl", - "netwerk/cache/src/nsCacheService.cpp", - "netwerk/cache/src/nsCacheService.h", - "netwerk/cache/src/nsCacheSession.cpp", - "netwerk/cache/src/nsCacheSession.h", - "netwerk/cache/src/nsDiskCacheDeviceSQL.cpp", - "netwerk/cache/src/nsDiskCacheDeviceSQL.h", - "netwerk/protocol/http/src/nsHttpChannel.cpp", - "netwerk/protocol/http/src/nsHttpChannel.h", - "uriloader/prefetch/nsIOfflineCacheUpdate.idl", - "uriloader/prefetch/nsOfflineCacheUpdate.cpp", - "uriloader/prefetch/nsOfflineCacheUpdate.h" - ], - "components": [ - "Firefox::General", - "Core::Networking", - "Core::DOM: Navigation" - ], - "directories": [ - "netwerk/base", - "browser/base", - "uriloader/prefetch", - "netwerk/protocol", - "dom/src", - "dom/tests", - "netwerk", - "docshell/base", - "netwerk/cache", - "docshell", - "browser/components", - "content/base", - "content", - "dom", - "netwerk/build", - "browser", - "uriloader" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "2053bab906dc548240c7d3e279af04ffcac48843", - "author": "Dave Camp ", - "bug_id": 442803, - "desc": "Backed out changeset bbaf0d5fef61 (bug 442803)", - "pushdate": "2008-08-20 05:59:47", - "backsout": [ - "bbaf0d5fef61" - ], - "backedoutby": "", - "author_email": "dcamp@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 4764925.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "uriloader/prefetch/nsIPrefetchService.idl", - "uriloader/prefetch/nsPrefetchService.cpp", - "uriloader/prefetch/nsPrefetchService.h" - ], - "components": [ - "Core::Networking: Cache" - ], - "directories": [ - "uriloader/prefetch", - "uriloader" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "a9d2103187b145aec59e893a66ef3eec6efec569", - "author": "Dave Camp ", - "bug_id": 436531, - "desc": "Backed out changeset 2e3d61018e3d (Bug 436531)", - "pushdate": "2008-08-20 07:43:30", - "backsout": [ - "2e3d61018e3d" - ], - "backedoutby": "", - "author_email": "dcamp@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 4771148.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "xpcom/proxy/src/nsProxyEvent.cpp", - "xpcom/proxy/tests/Makefile.in", - "xpcom/proxy/tests/nsITestProxy.idl", - "xpcom/proxy/tests/nsITestProxyOrig.idl", - "xpcom/proxy/tests/proxy-create-threadsafety.cpp", - "xpcom/proxy/tests/proxytests.cpp", - "xpcom/reflect/xptcall/src/md/win32/xptc_arm_ceppc.asm" - ], - "components": [], - "directories": [ - "xpcom/reflect", - "xpcom/proxy", - "xpcom" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "e2f89ccef0e4b9e4f7cd72206a148692472b38dc", - "author": "Dave Camp ", - "bug_id": 418051, - "desc": "Backed out changeset af00b3f27c64 (Bug 418051)", - "pushdate": "2008-08-20 08:16:26", - "backsout": [ - "af00b3f27c64" - ], - "backedoutby": "", - "author_email": "dcamp@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 4773124.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsparse.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "ada680794b55d8ff552d5c3d73811725fef56e08", - "author": "Dave Camp ", - "bug_id": 419562, - "desc": "Backed out changeset 1c69f587516b (Bug 419562)", - "pushdate": "2008-08-20 09:43:02", - "backsout": [ - "1c69f587516b" - ], - "backedoutby": "", - "author_email": "dcamp@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 4778320.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "netwerk/protocol/http/src/nsHttpHandler.cpp", - "netwerk/protocol/http/src/nsHttpHandler.h" - ], - "components": [], - "directories": [ - "netwerk/protocol", - "netwerk" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "cafe838a9b87c8a80a674a2aa3acb890d2d4d37c", - "author": "Dave Camp ", - "bug_id": 367052, - "desc": "Backed out changeset f468ae1633d4 (bug 367052)", - "pushdate": "2008-08-20 10:48:44", - "backsout": [ - "f468ae1633d4" - ], - "backedoutby": "", - "author_email": "dcamp@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 4782262.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/components/sessionstore/src/nsSessionStore.js", - "browser/components/sessionstore/test/Makefile.in", - "browser/components/sessionstore/test/browser/Makefile.in", - "browser/components/sessionstore/test/browser/browser_367052.js" - ], - "components": [], - "directories": [ - "browser/components", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "da0fa455f1af06307d92b7a5a953a3d24b2641da", - "author": "Ted Mielczarek ", - "bug_id": 446529, - "desc": "Backed out changeset d55aac0ec553, bug 446529 - Disable discretionary ligatures on Mac, due to reftest failures on mac\n\nREFTEST TEST-UNEXPECTED-FAIL | file:///builds/slave/trunk_darwin_mini01/build/layout/reftests/text/wordwrap-01.html |\nREFTEST TEST-UNEXPECTED-FAIL | file:///builds/slave/trunk_darwin_mini01/build/layout/reftests/text/wordwrap-03.html |", - "pushdate": "2008-08-20 14:44:22", - "backsout": [ - "d55aac0ec553" - ], - "backedoutby": "", - "author_email": "ted.mielczarek@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 13211698.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "gfx/thebes/src/gfxAtsuiFonts.cpp" - ], - "components": [], - "directories": [ - "gfx/thebes", - "gfx" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "e376bc87ac4ac55653d08eae143ceeff73f0c2bf", - "author": "Dave Camp ", - "bug_id": 442806, - "desc": "Backed out changeset ebafb9df6ce0 (bug 442806)", - "pushdate": "2008-08-25 06:12:07", - "backsout": [ - "ebafb9df6ce0" - ], - "backedoutby": "", - "author_email": "dcamp@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 5197665.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/base/content/browser.js", - "browser/components/preferences/advanced.js", - "content/base/src/nsContentSink.cpp", - "content/base/src/nsContentUtils.cpp", - "content/base/src/nsDocument.cpp", - "content/base/src/nsDocument.h", - "docshell/base/nsDocShell.cpp", - "dom/src/offline/Makefile.in", - "dom/src/offline/nsDOMOfflineResourceList.cpp", - "dom/src/offline/nsDOMOfflineResourceList.h", - "dom/tests/mochitest/ajax/offline/offlineTests.js", - "dom/tests/mochitest/ajax/offline/test_changingManifest.html", - "dom/tests/mochitest/ajax/offline/test_simpleManifest.html", - "netwerk/base/public/Makefile.in", - "netwerk/base/public/nsIApplicationCache.idl", - "netwerk/base/public/nsIApplicationCacheContainer.idl", - "netwerk/base/public/nsIApplicationCacheService.idl", - "netwerk/base/public/nsINetUtil.idl", - "netwerk/base/public/nsNetUtil.h", - "netwerk/base/src/nsIOService.cpp", - "netwerk/base/src/nsIOService.h", - "netwerk/build/Makefile.in", - "netwerk/build/nsNetCID.h", - "netwerk/build/nsNetModule.cpp", - "netwerk/cache/public/Makefile.in", - "netwerk/cache/public/nsICacheService.idl", - "netwerk/cache/public/nsIOfflineCacheSession.idl", - "netwerk/cache/src/nsCacheService.cpp", - "netwerk/cache/src/nsCacheService.h", - "netwerk/cache/src/nsCacheSession.cpp", - "netwerk/cache/src/nsCacheSession.h", - "netwerk/cache/src/nsDiskCacheDeviceSQL.cpp", - "netwerk/cache/src/nsDiskCacheDeviceSQL.h", - "netwerk/protocol/http/src/nsHttpChannel.cpp", - "netwerk/protocol/http/src/nsHttpChannel.h", - "uriloader/prefetch/nsIOfflineCacheUpdate.idl", - "uriloader/prefetch/nsOfflineCacheUpdate.cpp", - "uriloader/prefetch/nsOfflineCacheUpdate.h" - ], - "components": [ - "Firefox::General", - "Core::Networking", - "Core::DOM: Navigation" - ], - "directories": [ - "netwerk/base", - "browser/base", - "uriloader/prefetch", - "netwerk/protocol", - "dom/src", - "dom/tests", - "netwerk", - "docshell/base", - "netwerk/cache", - "docshell", - "browser/components", - "content/base", - "content", - "dom", - "netwerk/build", - "browser", - "uriloader" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "5e208ee3e1cc379390bf83d2acd5aa2d2d28a40c", - "author": "Dave Townsend ", - "bug_id": 449027, - "desc": "Backed out changeset 47db77d641d4 from bug 449027", - "pushdate": "2008-08-28 09:58:46", - "backsout": [ - "47db77d641d4" - ], - "backedoutby": "", - "author_email": "dtownsend@oxymoronical.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 7427684.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/app/profile/firefox.js", - "toolkit/mozapps/extensions/src/nsBlocklistService.js", - "toolkit/mozapps/extensions/test/unit/data/test_bug449027_app.xml", - "toolkit/mozapps/extensions/test/unit/data/test_bug449027_toolkit.xml", - "toolkit/mozapps/extensions/test/unit/test_bug449027.js" - ], - "components": [ - "Firefox::General" - ], - "directories": [ - "toolkit/mozapps", - "toolkit", - "browser", - "browser/app" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "f1bb365372c6d7f74e199deea15cc6c632c5d180", - "author": "Brian Crowder ", - "bug_id": 422792, - "desc": "Backed out changeset 6b496b906af4, bug 422792", - "pushdate": "2008-08-29 20:37:43", - "backsout": [ - "6b496b906af4" - ], - "backedoutby": "", - "author_email": "crowder@fiverocks.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 5086271.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "widget/src/windows/nsAppShell.cpp", - "widget/src/windows/nsBidiKeyboard.cpp", - "widget/src/windows/nsBidiKeyboard.h", - "widget/src/windows/nsClipboard.cpp", - "widget/src/windows/nsDataObj.h", - "widget/src/windows/nsFilePicker.cpp", - "widget/src/windows/nsLookAndFeel.cpp", - "widget/src/windows/nsSound.cpp", - "widget/src/windows/nsToolkit.cpp", - "widget/src/windows/nsWindow.cpp" - ], - "components": [], - "directories": [ - "widget", - "widget/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "62e63419dfb3f79ca8825b93434e34ab626a3efd", - "author": "timeless@mozdev.org", - "bug_id": 454186, - "desc": "Backed out changeset 18b48ea2b188\nto fix Bug 454186\nSM crashes when try to download file [@ nsString::ToInteger - nsTreeBodyFrame::PaintProgressMeter]", - "pushdate": "2008-09-08 13:47:42", - "backsout": [ - "18b48ea2b188" - ], - "backedoutby": "", - "author_email": "timeless@mozdev.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 14849898.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/generic/nsContainerFrame.cpp" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "layout/generic", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "4b5063537a0f9c4a6dfeafe5bffcd4db54c82d08", - "author": "timeless@mozdev.org", - "bug_id": 454186, - "desc": "Backed out changeset 54215f2cbc66\nto fix Bug 454186\nSM crashes when try to download file [@ nsString::ToInteger - nsTreeBodyFrame::PaintProgressMeter]", - "pushdate": "2008-09-08 13:47:42", - "backsout": [ - "54215f2cbc66" - ], - "backedoutby": "", - "author_email": "timeless@mozdev.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 14849898.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/base/nsImageLoader.cpp", - "layout/base/nsLayoutUtils.cpp", - "layout/base/nsPresShell.cpp", - "layout/forms/nsListControlFrame.cpp", - "layout/generic/nsBlockFrame.cpp", - "layout/generic/nsContainerFrame.cpp", - "layout/generic/nsObjectFrame.cpp", - "layout/style/nsCSSDataBlock.cpp", - "layout/svg/base/src/nsSVGOuterSVGFrame.cpp", - "layout/xul/base/src/nsBox.cpp", - "layout/xul/base/src/nsXULPopupManager.cpp", - "layout/xul/base/src/nsXULTooltipListener.cpp", - "layout/xul/base/src/tree/src/nsTreeBodyFrame.cpp" - ], - "components": [ - "Core::Layout", - "Core::Layout: Form Controls", - "Core::Layout: Block and Inline" - ], - "directories": [ - "layout/generic", - "layout/xul", - "layout/forms", - "layout/svg", - "layout/style", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "713e17a251656ca02e552f7131ae0aa3e547b384", - "author": "Daniel Holbert ", - "bug_id": 454896, - "desc": "Backed out changeset 38140c8a8327 to see if it fixes Bug 454896 (sporadic RLk)", - "pushdate": "2008-09-12 01:03:43", - "backsout": [ - "38140c8a8327" - ], - "backedoutby": "", - "author_email": "dholbert@cs.stanford.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 10350350.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "netwerk/protocol/http/src/nsHttpConnection.cpp", - "security/manager/boot/src/nsSecureBrowserUIImpl.cpp", - "security/manager/ssl/src/nsNSSIOLayer.cpp", - "security/manager/ssl/src/nsNSSIOLayer.h", - "uriloader/base/nsDocLoader.cpp" - ], - "components": [ - "Core::DOM: Navigation" - ], - "directories": [ - "netwerk/protocol", - "netwerk", - "uriloader/base", - "security", - "security/manager", - "uriloader" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "9d9569916616f85f22b692a02041af3026eb43de", - "author": "Daniel Holbert ", - "bug_id": 451918, - "desc": "Backed out changeset 6772511dc81a (bug 451918) to see if it fixes broken linux leak stats (bug 455095)", - "pushdate": "2008-09-12 23:57:52", - "backsout": [ - "6772511dc81a" - ], - "backedoutby": "", - "author_email": "dholbert@cs.stanford.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 10432799.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/app/Makefile.in" - ], - "components": [ - "Firefox Build System::General" - ], - "directories": [ - "browser", - "browser/app" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "d793ccba25a5557255063ef27f3a3ab373cac258", - "author": "Steven Michaud ", - "bug_id": 444864, - "desc": "Backed out changeset f82532e1b6b5 due to reftest failures (b=444864,444260,449111)", - "pushdate": "2008-09-15 17:33:09", - "backsout": [ - "f82532e1b6b5" - ], - "backedoutby": "", - "author_email": "smichaud@pobox.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 6913211.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "widget/src/cocoa/nsNativeThemeCocoa.mm" - ], - "components": [], - "directories": [ - "widget", - "widget/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "0879f08590a9fe2a8b207ce82135408d878310cf", - "author": "Mark Banner ", - "bug_id": 325842, - "desc": "Back out changeset 493bbc89ca54 / Bug 325842", - "pushdate": "2008-09-18 11:10:27", - "backsout": [ - "493bbc89ca54" - ], - "backedoutby": "", - "author_email": "bugzilla@standard8.plus.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 9251531.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/components/autocomplete/src/nsAutoCompleteController.cpp", - "toolkit/content/tests/chrome/Makefile.in", - "toolkit/content/tests/chrome/test_autocomplete3.xul" - ], - "components": [], - "directories": [ - "toolkit/components", - "toolkit/content", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "406532c41fca52eb8570b727f8e8a5a614e5e84c", - "author": "Shawn Wilsher ", - "bug_id": 455836, - "desc": "Backed out changeset b3783fc5a9c9 (bug 455836) - TREE IS CLOSED!", - "pushdate": "2008-09-18 14:54:30", - "backsout": [ - "b3783fc5a9c9" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 9155239.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "widget/src/qt/nsNativeThemeQt.cpp" - ], - "components": [], - "directories": [ - "widget", - "widget/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "118ab5caf67dcf39de83014ca5e95b1a8cd62bdb", - "author": "Karl Tomlinson ", - "bug_id": 455791, - "desc": "backout f51aad9e6a88 due to intermittent talos ts failures b=455791", - "pushdate": "2008-09-19 03:04:07", - "backsout": [ - "f51aad9e6a88" - ], - "backedoutby": "", - "author_email": "karlt+@karlt.net", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 6393023.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "gfx/thebes/public/gfxFont.h" - ], - "components": [], - "directories": [ - "gfx/thebes", - "gfx" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "7aac9d9d651b0610c41d22707111c54271e625ff", - "author": "L. David Baron ", - "bug_id": 455403, - "desc": "Backed out changeset aab6b12f4a2b (Bug 455403) due to reftest failures from landing patches in the wrong order, and unexplained reftest hangs.", - "pushdate": "2008-09-19 23:05:30", - "backsout": [ - "aab6b12f4a2b" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 11074051.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "gfx/thebes/public/gfxMatrix.h", - "layout/reftests/transform/compound-1-fail.html", - "layout/reftests/transform/compound-1-ref.html", - "layout/reftests/transform/compound-1a.html", - "layout/reftests/transform/reftest.list", - "layout/reftests/transform/rotate-2a.html", - "layout/style/nsStyleTransformMatrix.cpp", - "layout/style/nsStyleTransformMatrix.h" - ], - "components": [ - "Core::Layout", - "Core::CSS Parsing and Computation" - ], - "directories": [ - "gfx/thebes", - "layout/reftests", - "layout/style", - "gfx", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "783541270c298725bcc433342ad12069551148fa", - "author": "Serge Gautherie ", - "bug_id": 452899, - "desc": "Backed out changeset fa8fbd81159d\nBug 452899 - Don't explicitly create the statement wrapper - storage does it for us; r=(dolske + sdwilsh)\nto try to fix leak", - "pushdate": "2008-09-20 17:43:00", - "backsout": [ - "fa8fbd81159d" - ], - "backedoutby": "", - "author_email": "sgautherie.bz@free.fr", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 6297643.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/components/passwordmgr/src/storage-mozStorage.js" - ], - "components": [], - "directories": [ - "toolkit/components", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "01d095208bdfd2fb3a09b91b5055f02dae58f02a", - "author": "Markus Stange ", - "bug_id": 403174, - "desc": "Backed out changeset 84bbd1f88fac (bug 403174)", - "pushdate": "2008-09-22 08:24:43", - "backsout": [ - "84bbd1f88fac" - ], - "backedoutby": "", - "author_email": "mstange@themasta.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 7282379.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "widget/src/cocoa/nsCocoaWindow.mm" - ], - "components": [], - "directories": [ - "widget", - "widget/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "2f9f1ea54be78fe8fe754bfbc235d7a369f730cf", - "author": "Benjamin Smedberg ", - "bug_id": 453388, - "desc": "Backed out changeset e2614011f194 - Bug 453388 - the better solution is to allow static objects and link libjs.so with g++ so that _init and _fini run static constructors/destructors correctly backout r=crowder", - "pushdate": "2008-09-23 07:43:09", - "backsout": [ - "e2614011f194" - ], - "backedoutby": "", - "author_email": "benjamin@smedbergs.us", - "reviewers": [ - "crowder" - ], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 16124025.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsapi.cpp", - "js/src/jstracer.cpp", - "js/src/jstracer.h" - ], - "components": [ - "Core::JavaScript Engine" - ], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "71d860a3a3006a0ea8b2d3dedfcec3810c64928c", - "author": "Benjamin Smedberg ", - "bug_id": 453388, - "desc": "Backed out changeset fc4a8cc07c9f - bustage fix from the first patch for bug 453388 which is also being backed out", - "pushdate": "2008-09-23 07:43:09", - "backsout": [ - "fc4a8cc07c9f" - ], - "backedoutby": "", - "author_email": "benjamin@smedbergs.us", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 16124025.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsapi.cpp", - "js/src/jstracer.cpp" - ], - "components": [ - "Core::JavaScript Engine" - ], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "6e6ac7a9540d42b871819923f441fd6d057e7718", - "author": "Serge Gautherie ", - "bug_id": 455813, - "desc": "Backed out changeset 9841b5e5cf10\nBug 455813 - Windows PGO builds fail when --disable-tests is set; r=ted.mielczarek", - "pushdate": "2008-09-24 05:18:25", - "backsout": [ - "9841b5e5cf10" - ], - "backedoutby": "", - "author_email": "sgautherie.bz@free.fr", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 6598568.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "build/Makefile.in", - "build/pgo/Makefile.in", - "build/pgo/automation.py.in", - "testing/mochitest/Makefile.in" - ], - "components": [], - "directories": [ - "testing/mochitest", - "build/pgo", - "testing", - "build" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "04a7c91e0f31b21d076ac52037ad6313dbefe0bd", - "author": "Justin Dolske ", - "bug_id": 454781, - "desc": "Backed out changeset fa432b23baa5. (Backing out bug 454781 to investigate mochitest leaks)", - "pushdate": "2008-09-25 00:19:08", - "backsout": [ - "fa432b23baa5" - ], - "backedoutby": "", - "author_email": "dolske@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 8657592.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "testing/mochitest/harness-overlay.xul", - "testing/mochitest/server.js", - "testing/mochitest/tests/SimpleTest/TestRunner.js" - ], - "components": [ - "Testing::Mochitest" - ], - "directories": [ - "testing/mochitest", - "testing" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "c2efb31d59857d6d3f8458080d44dbad60f4f135", - "author": "Karl Tomlinson ", - "bug_id": 385263, - "desc": "backout 23e255271851 b=385263", - "pushdate": "2008-09-26 08:01:41", - "backsout": [ - "23e255271851" - ], - "backedoutby": "", - "author_email": "karlt+@karlt.net", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 7015677.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "gfx/thebes/public/gfxPangoFonts.h", - "gfx/thebes/src/gfxBeOSPlatform.cpp", - "gfx/thebes/src/gfxPangoFonts.cpp", - "gfx/thebes/src/gfxPlatformGtk.cpp" - ], - "components": [], - "directories": [ - "gfx/thebes", - "gfx" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "f523d647bc5d8392a3bc2c312820694cc0f87291", - "author": "Shawn Wilsher ", - "bug_id": 417037, - "desc": "Backed out changeset b2d48e54c537 (bug 417037)\nWe have to backout bug 449443 because we have to backout bug 456910 because of\na Tp regression, which means we need to back this out :(", - "pushdate": "2008-09-26 19:56:06", - "backsout": [ - "b2d48e54c537" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 9864535.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "db/sqlite3/src/Makefile.in" - ], - "components": [], - "directories": [ - "db/sqlite3", - "db" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "f2f0728d979fabd8d40cab94a5d653ceab06e360", - "author": "Marco Zehe ", - "bug_id": 454997, - "desc": "Backout changeset 8fe1cd2d3c66 (bug 454997) because of regressions and crashes", - "pushdate": "2008-09-28 05:53:26", - "backsout": [ - "8fe1cd2d3c66" - ], - "backedoutby": "", - "author_email": "marco.zehe@googlemail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 9910520.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "accessible/src/base/nsAccessibilityUtils.cpp", - "accessible/src/base/nsAccessibilityUtils.h", - "accessible/src/base/nsDocAccessible.cpp", - "accessible/tests/mochitest/Makefile.in", - "accessible/tests/mochitest/common.js", - "accessible/tests/mochitest/nsIAccessible_states.js", - "accessible/tests/mochitest/test_nsIAccessible_editablebody.html" - ], - "components": [ - "Core::Disability Access APIs" - ], - "directories": [ - "accessible/src", - "accessible", - "accessible/tests" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "3db739625352ee5e378899dc583193a1c1ba0f25", - "author": "Mark Banner ", - "bug_id": 382690, - "desc": "Backed out changeset 93928936b1ab bug 382690 due to check-in during string freeze.", - "pushdate": "2008-09-28 14:56:16", - "backsout": [ - "93928936b1ab" - ], - "backedoutby": "", - "author_email": "bugzilla@standard8.plus.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 10129080.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/components/viewconfig/content/config.js", - "toolkit/components/viewconfig/content/config.xul", - "toolkit/locales/en-US/chrome/global/config.dtd" - ], - "components": [], - "directories": [ - "toolkit/components", - "toolkit", - "toolkit/locales" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "996d2802d3f2762122f9cb25a4b2302d2facbb8f", - "author": "Dave Townsend ", - "bug_id": 364315, - "desc": "Backed out changeset 961d90be2ba8 from bug 364315 due to random crashes in\ntests.", - "pushdate": "2008-09-30 12:09:36", - "backsout": [ - "961d90be2ba8" - ], - "backedoutby": "", - "author_email": "dtownsend@oxymoronical.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 10286734.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/base/src/nsScriptLoader.cpp", - "content/base/src/nsScriptLoader.h", - "parser/htmlparser/src/CParserContext.cpp", - "parser/htmlparser/src/CParserContext.h", - "parser/htmlparser/src/nsParser.cpp", - "parser/htmlparser/src/nsParser.h", - "parser/htmlparser/src/nsScanner.cpp", - "parser/htmlparser/src/nsScanner.h" - ], - "components": [], - "directories": [ - "parser/htmlparser", - "content/base", - "content", - "parser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "4e7a2d27d63649d9b58a772f6f29903f2601d607", - "author": "L. David Baron ", - "bug_id": 433616, - "desc": "Backed out changeset c1f6a55626be (bug 433616, part 2) because it probably caused a Windows XP performance regression.", - "pushdate": "2008-09-30 16:53:08", - "backsout": [ - "c1f6a55626be" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 12002109.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/base/public/nsIDocument.h", - "content/base/src/nsContentUtils.cpp", - "content/base/src/nsDataDocumentContentPolicy.cpp", - "content/base/src/nsDocument.cpp", - "content/base/src/nsDocument.h", - "content/base/src/nsFrameLoader.cpp", - "content/svg/document/src/Makefile.in", - "content/xul/content/src/nsXULElement.cpp", - "layout/base/nsDocumentViewer.cpp", - "layout/generic/nsFrameFrame.cpp", - "layout/generic/nsObjectFrame.cpp" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "layout/generic", - "content/xul", - "content/base", - "content", - "content/svg", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "abf1f4529de2161662d54fbc398943b5d0eef15d", - "author": "Dave Camp ", - "bug_id": 426932, - "desc": "Backed out changeset 38a48d485876 (bug 426932).", - "pushdate": "2008-09-30 19:25:44", - "backsout": [ - "38a48d485876" - ], - "backedoutby": "", - "author_email": "dcamp@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 8355682.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/components/url-classifier/tests/unit/test_cleankeycache.js" - ], - "components": [], - "directories": [ - "toolkit/components", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "507fca9fa64116a2bf6829c6b5f5fbf9414f40da", - "author": "Dave Camp ", - "bug_id": 453723, - "desc": "Backed out changeset 74aad43f37a5 (bug 453723).", - "pushdate": "2008-09-30 19:25:44", - "backsout": [ - "74aad43f37a5" - ], - "backedoutby": "", - "author_email": "dcamp@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 8355682.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/components/url-classifier/src/nsUrlClassifierDBService.cpp", - "toolkit/components/url-classifier/src/nsUrlClassifierDBService.h", - "toolkit/components/url-classifier/src/nsUrlClassifierUtils.h", - "toolkit/components/url-classifier/tests/unit/head_urlclassifier.js", - "toolkit/components/url-classifier/tests/unit/test_cleankeycache.js" - ], - "components": [ - "Toolkit::Safe Browsing" - ], - "directories": [ - "toolkit/components", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "2eade6ea592b184c39b36f93951cf4335de3e24e", - "author": "Dave Townsend ", - "bug_id": 457194, - "desc": "Backed out changeset a9838a973cdd from bug 457194 due to failing mochitest", - "pushdate": "2008-10-01 15:41:18", - "backsout": [ - "a9838a973cdd" - ], - "backedoutby": "", - "author_email": "dtownsend@oxymoronical.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 10385836.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "gfx/thebes/src/gfxAtsuiFonts.cpp" - ], - "components": [], - "directories": [ - "gfx/thebes", - "gfx" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "115934f340f058345955b0458f60fae44e4e41c8", - "author": "L. David Baron ", - "bug_id": 114649, - "desc": "Backed out changeset 6f3797124c84: Relanding: Fire resize events every 200ms during resizing, not just 200ms after resizing stops. (Bug 114649) r+sr=roc", - "pushdate": "2008-10-02 03:12:35", - "backsout": [ - "6f3797124c84" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 12125676.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/base/nsPresShell.cpp", - "layout/base/tests/test_bug114649.html" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "f9dccfb26ec9faa5399d84113fcbfd572ed90393", - "author": "Boris Zbarsky ", - "bug_id": 373701, - "desc": "Backed out changeset d07aa0d0712a: Relanding: Bug 373701. Make sure to properly cancel multipart image loads when they need canceling. r=joedrew, sr=biesi", - "pushdate": "2008-10-02 13:53:43", - "backsout": [ - "d07aa0d0712a" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [ - "joedrew", - "biesi" - ], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 7400931.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "modules/libpr0n/src/imgRequest.cpp" - ], - "components": [], - "directories": [ - "modules/libpr0n", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "5df4c3d437eeaa49e2121fca1eae9cdd52d876eb", - "author": "Boris Zbarsky ", - "bug_id": 433616, - "desc": "Backed out changeset 4e7a2d27d636: relanding Bug 433616 part 2. Implement loading of external resource documents. r=jst, sr=roc", - "pushdate": "2008-10-04 20:01:17", - "backsout": [ - "4e7a2d27d636" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [ - "roc", - "jst" - ], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 7595785.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/base/public/nsIDocument.h", - "content/base/src/nsContentUtils.cpp", - "content/base/src/nsDataDocumentContentPolicy.cpp", - "content/base/src/nsDocument.cpp", - "content/base/src/nsDocument.h", - "content/base/src/nsFrameLoader.cpp", - "content/svg/document/src/Makefile.in", - "content/xul/content/src/nsXULElement.cpp", - "layout/base/nsDocumentViewer.cpp", - "layout/generic/nsFrameFrame.cpp", - "layout/generic/nsObjectFrame.cpp" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "layout/generic", - "content/xul", - "content/base", - "content", - "content/svg", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "a8eb5fc88c015017c7eaa662a81d8631df00e382", - "author": "L. David Baron ", - "bug_id": 455311, - "desc": "Backed out changeset 6357eb31cec6 (bug 455311) for causing performance regression bug 458065.", - "pushdate": "2008-10-06 02:56:35", - "backsout": [ - "6357eb31cec6" - ], - "backedoutby": "e3b597862e2a2d0f6556f7a6a439e1b1ee487521", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 12470316.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "netwerk/base/src/nsBaseChannel.cpp", - "netwerk/base/src/nsBaseChannel.h", - "netwerk/base/src/nsInputStreamChannel.cpp", - "netwerk/base/src/nsInputStreamChannel.h", - "netwerk/protocol/data/src/nsDataChannel.cpp", - "netwerk/protocol/data/src/nsDataChannel.h", - "netwerk/protocol/file/src/nsFileChannel.cpp", - "netwerk/protocol/file/src/nsFileChannel.h", - "netwerk/protocol/file/src/nsFileProtocolHandler.cpp", - "netwerk/protocol/ftp/src/nsFTPChannel.cpp", - "netwerk/protocol/ftp/src/nsFTPChannel.h", - "netwerk/protocol/gopher/src/nsGopherChannel.cpp", - "netwerk/protocol/gopher/src/nsGopherChannel.h" - ], - "components": [], - "directories": [ - "netwerk/base", - "netwerk/protocol", - "netwerk" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "6681dc7f1293b6e328450ab0df24f73b5a96f536", - "author": "D\u00e3o Gottwald ", - "bug_id": 455990, - "desc": "Backed out changeset a8cfcc9b6d5c: relanding Bug 455990 - Close button on last open tab should be hidden. r=gavin", - "pushdate": "2008-10-06 03:45:11", - "backsout": [ - "a8cfcc9b6d5c" - ], - "backedoutby": "", - "author_email": "dao@mozilla.com", - "reviewers": [ - "gavin" - ], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 10071174.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/base/content/tabbrowser.css" - ], - "components": [ - "Firefox::Tabbed Browser" - ], - "directories": [ - "browser/base", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "e3b597862e2a2d0f6556f7a6a439e1b1ee487521", - "author": "Boris Zbarsky ", - "bug_id": 455311, - "desc": "Back out changeset a8eb5fc88c01: relanding bug 455311. Treat .url files as redirects. r+sr=biesi", - "pushdate": "2008-10-06 20:45:30", - "backsout": [ - "a8eb5fc88c01" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 7771238.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "netwerk/base/src/nsBaseChannel.cpp", - "netwerk/base/src/nsBaseChannel.h", - "netwerk/base/src/nsInputStreamChannel.cpp", - "netwerk/base/src/nsInputStreamChannel.h", - "netwerk/protocol/data/src/nsDataChannel.cpp", - "netwerk/protocol/data/src/nsDataChannel.h", - "netwerk/protocol/file/src/nsFileChannel.cpp", - "netwerk/protocol/file/src/nsFileChannel.h", - "netwerk/protocol/file/src/nsFileProtocolHandler.cpp", - "netwerk/protocol/ftp/src/nsFTPChannel.cpp", - "netwerk/protocol/ftp/src/nsFTPChannel.h", - "netwerk/protocol/gopher/src/nsGopherChannel.cpp", - "netwerk/protocol/gopher/src/nsGopherChannel.h" - ], - "components": [], - "directories": [ - "netwerk/base", - "netwerk/protocol", - "netwerk" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "cfaa8db2c177f79ebc5392db50bc0d7cdcc97b6f", - "author": "Ted Mielczarek ", - "bug_id": 365467, - "desc": "Backed out changeset 893b2c3b521f (Bug 365467 Focus controller's initial window and element can get out of sync r+sr=jst)", - "pushdate": "2008-10-08 16:44:01", - "backsout": [ - "893b2c3b521f" - ], - "backedoutby": "", - "author_email": "ted.mielczarek@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 17452477.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/base/nsPresShell.cpp" - ], - "components": [], - "directories": [ - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "1d8c68c2989e53ab13b883ce0e2023e049b9894e", - "author": "Justin Dolske ", - "bug_id": 394611, - "desc": "Backed out changeset 2f36cde1694c (bug 394611, due to leaks)", - "pushdate": "2008-10-11 04:42:26", - "backsout": [ - "2f36cde1694c" - ], - "backedoutby": "", - "author_email": "dolske@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 10055790.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/components/passwordmgr/src/nsLoginManager.js", - "toolkit/components/passwordmgr/src/nsLoginManagerPrompter.js", - "toolkit/components/passwordmgr/test/Makefile.in", - "toolkit/components/passwordmgr/test/notification_common.js", - "toolkit/components/passwordmgr/test/subtst_notifications_10.html", - "toolkit/components/passwordmgr/test/subtst_notifications_8.html", - "toolkit/components/passwordmgr/test/subtst_notifications_9.html", - "toolkit/components/passwordmgr/test/test_notifications.html", - "toolkit/components/passwordmgr/test/test_prompt.html" - ], - "components": [], - "directories": [ - "toolkit/components", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "d8a6df699a2635c9bf3c02a97941a0a540844200", - "author": "Markus Stange ", - "bug_id": 398928, - "desc": "Backed out changeset 151e51ec625e (bug 398928) because of unit test orange", - "pushdate": "2008-10-13 12:34:11", - "backsout": [ - "151e51ec625e" - ], - "backedoutby": "", - "author_email": "mstange@themasta.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 9111747.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/base/content/browser.xul", - "browser/base/content/pageinfo/pageInfo.xul", - "toolkit/components/console/content/console.xul", - "toolkit/content/Makefile.in", - "toolkit/content/WindowDraggingUtils.jsm", - "toolkit/content/customizeToolbar.js", - "toolkit/content/widgets/general.xml", - "toolkit/content/widgets/preferences.xml", - "toolkit/content/widgets/toolbar.xml", - "toolkit/mozapps/downloads/content/downloads.xul", - "toolkit/mozapps/extensions/content/extensions.xul", - "toolkit/themes/pinstripe/global/global.css" - ], - "components": [], - "directories": [ - "browser/base", - "toolkit/content", - "toolkit/components", - "toolkit", - "toolkit/mozapps", - "browser", - "toolkit/themes" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "726c49f3ea91e36175a708bafe4607194eadd56b", - "author": "Brian Crowder ", - "bug_id": 411726, - "desc": "Backed out changeset 82af7163534f\n(Bug 411726 -- Time offset and zone code are set wrong for some locales, r=mrbkap)", - "pushdate": "2008-10-14 21:21:14", - "backsout": [ - "82af7163534f" - ], - "backedoutby": "", - "author_email": "crowder@fiverocks.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 9063282.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsdate.cpp", - "js/src/prmjtime.cpp" - ], - "components": [ - "Core::JavaScript: Standard Library" - ], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "fdb6f474fc26c902aaeae57c9a2c39c37de65819", - "author": "Reed Loden ", - "bug_id": 459780, - "desc": "Backed out changeset f678aac23eae from bug 459780 because it caused the regression in bug 460643.", - "pushdate": "2008-10-20 01:26:21", - "backsout": [ - "f678aac23eae" - ], - "backedoutby": "", - "author_email": "reed@reedloden.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 13746475.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "widget/src/gtk2/nsWindow.cpp" - ], - "components": [], - "directories": [ - "widget", - "widget/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "6db7098c04e46b24fc7731203602e19a3921c588", - "author": "Benjamin Smedberg ", - "bug_id": 461410, - "desc": "Backed out changeset affcc1c08bc0 (deCOM frame enumerator) due to regression from it or bug 461410.", - "pushdate": "2008-10-28 06:59:42", - "backsout": [ - "affcc1c08bc0" - ], - "backedoutby": "", - "author_email": "benjamin@smedbergs.us", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 19145418.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/events/src/nsEventStateManager.cpp", - "layout/base/nsFrameTraversal.cpp", - "layout/base/nsFrameTraversal.h", - "layout/base/nsIFrameTraversal.h", - "layout/generic/nsFrame.cpp", - "layout/generic/nsSelection.cpp", - "toolkit/components/typeaheadfind/src/nsTypeAheadFind.cpp" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "layout/generic", - "toolkit", - "toolkit/components", - "content", - "layout", - "layout/base", - "content/events" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "b13e55f6cfda45d7fef4b6621e7681a7532edf2c", - "author": "Benjamin Smedberg ", - "bug_id": 461410, - "desc": "Backed out changeset eda9709dc586 (deCOM frame enumerator) due to regression from it or bug 461410.", - "pushdate": "2008-10-28 06:59:42", - "backsout": [ - "eda9709dc586" - ], - "backedoutby": "", - "author_email": "benjamin@smedbergs.us", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 19145418.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/base/nsFrameTraversal.cpp" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "66c23339bd12aca0833a922b63d10477ea5b224b", - "author": "Benjamin Smedberg ", - "bug_id": 461212, - "desc": "Backed out changeset d4c9a0776667 (deCOM nsILineEnumerator) due to regression from it or bug 461212", - "pushdate": "2008-10-28 06:59:42", - "backsout": [ - "d4c9a0776667" - ], - "backedoutby": "", - "author_email": "benjamin@smedbergs.us", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 19145418.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "accessible/src/html/nsHyperTextAccessible.cpp", - "layout/base/nsPresShell.cpp", - "layout/generic/nsBlockFrame.cpp", - "layout/generic/nsBlockFrame.h", - "layout/generic/nsFrame.cpp", - "layout/generic/nsFrame.h", - "layout/generic/nsFrameList.cpp", - "layout/generic/nsIFrame.h", - "layout/generic/nsILineIterator.h", - "layout/generic/nsLineBox.cpp", - "layout/generic/nsLineBox.h", - "layout/tables/nsTableRowGroupFrame.cpp", - "layout/tables/nsTableRowGroupFrame.h" - ], - "components": [ - "Core::Layout", - "Core::Layout: Tables", - "Core::Layout: Block and Inline" - ], - "directories": [ - "layout/generic", - "layout/tables", - "accessible/src", - "accessible", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "0370470de0650dabd61aac4d282eb60d1b7aa014", - "author": "L. David Baron ", - "bug_id": 322475, - "desc": "Backed out changeset d7338fec7266 (from bug 322475, which made us construct all our image loaders at frame construction time) because of issues with propagation of backgrounds to the canvas (bug 460796).", - "pushdate": "2008-10-28 22:52:00", - "backsout": [ - "d7338fec7266" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 14442841.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/generic/nsFrame.cpp" - ], - "components": [], - "directories": [ - "layout/generic", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "01e2b22db875bc378c6668f160a7ef4630806295", - "author": "L. David Baron ", - "bug_id": 322475, - "desc": "Backed out changeset 7f708623bf59 (from bug 322475, which made us construct all our image loaders at frame construction time) because of issues with propagation of backgrounds to the canvas (bug 460796).", - "pushdate": "2008-10-28 22:52:00", - "backsout": [ - "7f708623bf59" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 14442841.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/base/Makefile.in", - "layout/base/nsImageLoadNotifier.cpp", - "layout/base/nsImageLoadNotifier.h", - "layout/base/nsImageLoader.cpp", - "layout/base/nsImageLoader.h", - "layout/base/nsPresContext.cpp", - "layout/base/nsPresContext.h", - "layout/generic/nsFrame.cpp" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "layout/generic", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "80654a9e4692b8cc671683911c2e53240be3df1c", - "author": "L. David Baron ", - "bug_id": 322475, - "desc": "Backed out changeset 23eebebb8b48 (from bug 322475, which made us construct all our image loaders at frame construction time) because of issues with propagation of backgrounds to the canvas (bug 460796).", - "pushdate": "2008-10-28 22:52:00", - "backsout": [ - "23eebebb8b48" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 14442841.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/events/src/nsDOMDataContainerEvent.h", - "layout/base/nsCSSRendering.cpp", - "layout/base/nsFrameManager.cpp", - "layout/base/nsImageLoader.cpp", - "layout/base/nsImageLoader.h", - "layout/base/nsPresContext.cpp", - "layout/base/nsPresContext.h", - "layout/generic/nsFrame.cpp", - "layout/generic/nsHTMLReflowState.cpp" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "layout/generic", - "content", - "layout", - "layout/base", - "content/events" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "a935c0b1617856bc62d2aa0f2d12b3e109f831d8", - "author": "Josh Aas ", - "bug_id": 456662, - "desc": "back out changeset 47259b642835, b=456662", - "pushdate": "2008-10-28 23:59:08", - "backsout": [ - "47259b642835" - ], - "backedoutby": "", - "author_email": "joshmoz@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 10697909.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "configure.in", - "modules/libreg/src/Makefile.in", - "modules/libreg/src/reg.c", - "modules/libreg/standalone/Makefile.in", - "xpcom/Makefile.in", - "xpcom/MoreFiles/FSCopyObject.c", - "xpcom/MoreFiles/FSCopyObject.h", - "xpcom/MoreFiles/Makefile.in", - "xpcom/MoreFiles/MoreFilesX.c", - "xpcom/MoreFiles/MoreFilesX.h", - "xpcom/MoreFiles/ReadMe.txt", - "xpcom/build/Makefile.in", - "xpcom/io/Makefile.in", - "xpcom/io/nsLocalFileOSX.h", - "xpcom/io/nsLocalFileOSX.mm", - "xpcom/obsolete/Makefile.in" - ], - "components": [], - "directories": [ - "xpcom/MoreFiles", - "xpcom/io", - "xpcom/obsolete", - "xpcom/build", - "modules/libreg", - "xpcom", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "429bfa1c5dea5601da90aba52524b302a1472ab9", - "author": "timeless@mozdev.org", - "bug_id": 454561, - "desc": "Backed out changeset b0d41235146a\nBug 454561 disable tracing when JavaScript-Debugger is enabled [ @ jsd_lock ]\nthis isn't the correct fix\nr=graydon", - "pushdate": "2008-10-31 11:54:34", - "backsout": [ - "b0d41235146a" - ], - "backedoutby": "", - "author_email": "timeless@mozdev.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 19422310.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "dom/src/base/nsJSEnvironment.cpp" - ], - "components": [], - "directories": [ - "dom", - "dom/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "cf6c01973a893ff010964216f3e4d75b1bd12347", - "author": "Shawn Wilsher ", - "bug_id": 462050, - "desc": "Backed out changeset 84a9e53373c7\nBackout of bug 462050. We are going to try to reland this later to get reliable\nperformance numbers.", - "pushdate": "2008-11-01 00:43:02", - "backsout": [ - "84a9e53373c7" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 12905751.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/base/content/browser.js" - ], - "components": [ - "Firefox::General" - ], - "directories": [ - "browser/base", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "8b08744c500c3b7cb1929f2ab2a5b015f3b89eee", - "author": "Shawn Wilsher ", - "bug_id": 461422, - "desc": "Backed out changeset 157abfbcb96e (bug 461422) tree is closed", - "pushdate": "2008-11-03 22:30:47", - "backsout": [ - "157abfbcb96e" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 13157016.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/xul/templates/src/nsXULContentBuilder.cpp" - ], - "components": [], - "directories": [ - "content/xul", - "content" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "1830e12fe251edd7afb8671795bd127bebd70004", - "author": "Dave Townsend ", - "bug_id": 462986, - "desc": "Backed out changeset fbae114d6133 from bug 462986 due to test failures", - "pushdate": "2008-11-04 12:03:56", - "backsout": [ - "fbae114d6133" - ], - "backedoutby": "", - "author_email": "dtownsend@oxymoronical.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 13310394.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/components/sessionstore/test/browser/browser_248970_a.js" - ], - "components": [], - "directories": [ - "browser/components", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "0d823e9893ad2dc95c4e402b280c01804c543721", - "author": "Dave Townsend ", - "bug_id": 436304, - "desc": "Backed out changeset 9b96bcff860b from bug 436304 - Implement All Tabs panel\nwith previews and search.", - "pushdate": "2008-11-04 14:21:32", - "backsout": [ - "9b96bcff860b" - ], - "backedoutby": "", - "author_email": "dtownsend@oxymoronical.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 13318650.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/app/profile/firefox.js", - "browser/base/content/browser-tabPreviews.js", - "browser/base/content/browser-tabPreviews.xml", - "browser/base/content/browser.css", - "browser/base/content/browser.js", - "browser/base/content/browser.xul", - "browser/base/content/tabbrowser.css", - "browser/base/content/tabbrowser.xml", - "browser/base/content/test/browser_ctrlTab.js", - "browser/base/jar.mn", - "browser/locales/en-US/chrome/browser/browser.dtd", - "browser/themes/gnomestripe/browser/browser.css", - "browser/themes/gnomestripe/browser/jar.mn", - "browser/themes/gnomestripe/browser/tabbrowser/alltabs.png", - "browser/themes/pinstripe/browser/browser.css", - "browser/themes/winstripe/browser/browser-aero.css", - "browser/themes/winstripe/browser/browser.css", - "browser/themes/winstripe/browser/jar.mn", - "browser/themes/winstripe/browser/tabbrowser/alltabs-box-overflow-end-bkgnd-hover.png", - "browser/themes/winstripe/browser/tabbrowser/alltabs-box-overflow-end-bkgnd.png", - "browser/themes/winstripe/browser/tabbrowser/alltabs-box-overflow-start-bkgnd-hover.png", - "browser/themes/winstripe/browser/tabbrowser/alltabs-box-overflow-start-bkgnd.png", - "browser/themes/winstripe/browser/tabbrowser/alltabs.png" - ], - "components": [ - "Firefox::General", - "Firefox::Tabbed Browser" - ], - "directories": [ - "browser/base", - "browser/app", - "browser/themes", - "browser/locales", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "1a2fefd12905bbc6aae0b495c005959593b11fce", - "author": "Robert O'Callahan ", - "bug_id": 460811, - "desc": "Back out changeset b83d3c8ac166 (bug 460811) to try to fix bustage", - "pushdate": "2008-11-04 23:48:43", - "backsout": [ - "b83d3c8ac166" - ], - "backedoutby": "", - "author_email": "robert@ocallahan.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 12703332.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "dom/public/idl/base/nsIDOMNavigator.idl", - "dom/public/idl/threads/Makefile.in", - "dom/public/nsDOMClassInfoID.h", - "dom/src/base/nsDOMClassInfo.cpp", - "dom/src/base/nsDOMClassInfo.h", - "dom/src/base/nsDOMScriptObjectFactory.cpp", - "dom/src/base/nsGlobalWindow.cpp", - "dom/src/base/nsGlobalWindow.h", - "dom/src/base/nsJSEnvironment.cpp", - "dom/src/threads/Makefile.in", - "dom/src/threads/nsDOMThreadService.cpp", - "dom/src/threads/nsDOMThreadService.h", - "dom/src/threads/nsDOMWorkerPool.cpp", - "dom/src/threads/nsDOMWorkerPool.h", - "dom/src/threads/nsDOMWorkerScriptLoader.cpp", - "dom/src/threads/nsDOMWorkerScriptLoader.h", - "dom/src/threads/nsDOMWorkerTimeout.cpp", - "dom/src/threads/nsDOMWorkerTimeout.h", - "dom/src/threads/nsDOMWorkerXHR.cpp", - "dom/src/threads/nsDOMWorkerXHR.h", - "dom/src/threads/nsDOMWorkerXHRProxy.cpp", - "dom/src/threads/nsDOMWorkerXHRProxy.h", - "dom/src/threads/test/Makefile.in", - "dom/src/threads/test/importScripts_worker.js", - "dom/src/threads/test/test_importScripts.html", - "dom/src/threads/test/test_longThread.html", - "dom/src/threads/test/test_recursion.html", - "dom/src/threads/test/test_regExpStatics.html", - "dom/src/threads/test/test_simpleThread.html", - "dom/src/threads/test/test_threadErrors.html", - "dom/src/threads/test/test_threadTimeouts.html", - "dom/src/threads/test/test_xhr.html", - "js/src/xpconnect/src/xpcwrappednativescope.cpp" - ], - "components": [], - "directories": [ - "js/src", - "dom/public", - "dom/src", - "dom", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "b5cba763fe6da4cd635d05a00ac63a13e62a3371", - "author": "Robert O'Callahan ", - "bug_id": 460811, - "desc": "Back out changeset b83d3c8ac166 (bug 460811) to try to fix bustage ... re-adding removed files", - "pushdate": "2008-11-05 00:04:07", - "backsout": [ - "b83d3c8ac166" - ], - "backedoutby": "", - "author_email": "robert@ocallahan.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 12704256.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "dom/public/idl/threads/nsIDOMThreads.idl", - "dom/src/threads/nsDOMWorkerThread.cpp", - "dom/src/threads/nsDOMWorkerThread.h" - ], - "components": [], - "directories": [ - "dom", - "dom/public", - "dom/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "5b1425e110372a469590cb5e2eeb641b321f7bc0", - "author": "Dave Townsend ", - "bug_id": 407110, - "desc": "Backed out changeset 10c21d116e5d from bug 407110 to investigate Ts\nregression.", - "pushdate": "2008-11-07 10:15:13", - "backsout": [ - "10c21d116e5d" - ], - "backedoutby": "", - "author_email": "dtownsend@oxymoronical.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 13563071.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/components/sessionstore/src/nsSessionStore.js" - ], - "components": [], - "directories": [ - "browser/components", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "9a2cbd5d3984c5ac673cef6fcebe32b89c5ae5ef", - "author": "Dave Townsend ", - "bug_id": 462973, - "desc": "Backed out changeset 4df50933e7cb from bug 462973 to investigate Ts\nregression.", - "pushdate": "2008-11-07 10:55:58", - "backsout": [ - "4df50933e7cb" - ], - "backedoutby": "", - "author_email": "dtownsend@oxymoronical.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 13565516.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/components/sessionstore/src/nsSessionStore.js" - ], - "components": [], - "directories": [ - "browser/components", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "83c8769d5fd9358dad12acf73440372f4a0e9651", - "author": "Dave Townsend ", - "bug_id": 455057, - "desc": "Backed out changeset 673d1ba18849 from bug 455057 as the likely cause of the\nVista Ts regression", - "pushdate": "2008-11-07 15:21:44", - "backsout": [ - "673d1ba18849" - ], - "backedoutby": "", - "author_email": "dtownsend@oxymoronical.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 13581462.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/base/content/aboutRobots-icon-rtl.png", - "browser/themes/gnomestripe/browser/Search-glass-rtl.png", - "browser/themes/gnomestripe/browser/Toolbar-small.png", - "browser/themes/gnomestripe/browser/Toolbar.png", - "browser/themes/gnomestripe/browser/identity.png", - "browser/themes/gnomestripe/browser/pageInfo.png", - "browser/themes/gnomestripe/browser/preferences/Options.png", - "browser/themes/gnomestripe/browser/preview.png", - "browser/themes/gnomestripe/browser/tabbrowser/newtab.png", - "browser/themes/pinstripe/browser/tabbrowser/newtab.png", - "browser/themes/winstripe/browser/tabbrowser/newtab-aero.png", - "browser/themes/winstripe/browser/tabbrowser/newtab.png", - "layout/reftests/border-image/10x5multicolor.png", - "layout/reftests/border-image/3x3multicolor.png", - "layout/reftests/border-image/4x4multicolor.png", - "layout/reftests/box-properties/abspos-replaced-width-offset-margin-narrow.png", - "layout/reftests/box-properties/abspos-replaced-width-offset-margin-wide.png", - "layout/reftests/bugs/solidblue.png", - "layout/reftests/bugs/solidblue2.png", - "layout/reftests/bugs/square-outline-32x32.png", - "layout/reftests/generated-content/square-outline-32x32.png", - "layout/reftests/pixel-rounding/corner-bl.png", - "layout/reftests/pixel-rounding/corner-tr.png", - "layout/reftests/pixel-rounding/random-10x10.png", - "layout/reftests/table-background/repeatable-diagonal-gradient-with-ticks.png", - "modules/libpr0n/test/reftest/generic/green.png", - "testing/performance/talos/page_load_test/gfx/images/png-2x2.png", - "toolkit/themes/gnomestripe/global/console/console-toolbar.png", - "toolkit/themes/gnomestripe/global/icons/Search-glass-rtl.png", - "toolkit/themes/gnomestripe/global/icons/blacklist_large.png", - "toolkit/themes/gnomestripe/global/icons/find.png", - "toolkit/themes/gnomestripe/global/icons/folder-item.png", - "toolkit/themes/gnomestripe/mozapps/extensions/extensionIcons.png", - "toolkit/themes/gnomestripe/mozapps/extensions/themeGeneric.png", - "toolkit/themes/gnomestripe/mozapps/extensions/viewButtons.png", - "toolkit/themes/gnomestripe/mozapps/update/update.png", - "toolkit/themes/gnomestripe/mozapps/xpinstall/xpinstallItemGeneric.png", - "toolkit/themes/pinstripe/global/icons/Search-close.png", - "toolkit/themes/pinstripe/global/icons/Search-glass.png" - ], - "components": [ - "Core::Layout", - "Core::Layout: Tables" - ], - "directories": [ - "browser/base", - "toolkit", - "modules/libpr0n", - "testing/performance", - "browser/themes", - "browser", - "layout/reftests", - "toolkit/themes", - "testing", - "layout", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "05c20a65b1df77e59275266e9a70cf3109344b45", - "author": "Jason Orendorff ", - "bug_id": 458851, - "desc": "Backed out changeset d4fe79372140 (bug 458851) due to persistent orange on TraceMonkey tinderboxes.", - "pushdate": "2008-11-08 09:06:43", - "backsout": [ - "d4fe79372140" - ], - "backedoutby": "", - "author_email": "jorendorff@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 14039732.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsemit.cpp", - "js/src/jsinterp.cpp", - "js/src/jsobj.cpp", - "js/src/jsopcode.cpp", - "js/src/jsopcode.h", - "js/src/jsopcode.tbl", - "js/src/jstracer.cpp", - "js/src/jstracer.h", - "js/src/jsxdrapi.h" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "0a765c5ce37d5a6e9f6a9518e3b5df6d1d187530", - "author": "timeless@mozdev.org", - "bug_id": 454561, - "desc": "Backed out changeset b0d41235146a\nBug 454561 disable tracing when JavaScript-Debugger is enabled [ @ jsd_lock ]\nthis isn't the correct fix\nr=graydon", - "pushdate": "2008-11-08 09:06:43", - "backsout": [ - "b0d41235146a" - ], - "backedoutby": "", - "author_email": "timeless@mozdev.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 20103439.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "dom/src/base/nsJSEnvironment.cpp" - ], - "components": [], - "directories": [ - "dom", - "dom/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "827edbbc90885ef4742de54252ced8ffbe0b82aa", - "author": "Dave Townsend ", - "bug_id": 462774, - "desc": "Backed out changeset ec9a1864d1fb from bug 462774, drop JSON.jsm due to OSX\nburning", - "pushdate": "2008-11-14 12:36:21", - "backsout": [ - "ec9a1864d1fb" - ], - "backedoutby": "", - "author_email": "dtownsend@oxymoronical.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 14176339.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/xpconnect/loader/JSON.jsm", - "js/src/xpconnect/loader/Makefile.in", - "js/src/xpconnect/tests/unit/test_json.js" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "e10a0f54b14ea85629a77bf6ec0cb7f0e671efbf", - "author": "Dave Townsend ", - "bug_id": 462878, - "desc": "Backed out changeset 72088d2498c3 from bug 462878 as it was causing\nmochitests to crash", - "pushdate": "2008-11-14 14:51:28", - "backsout": [ - "72088d2498c3" - ], - "backedoutby": "", - "author_email": "dtownsend@oxymoronical.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 14184446.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/media/video/public/nsOggDecoder.h", - "content/media/video/src/nsChannelReader.cpp", - "content/media/video/src/nsOggDecoder.cpp" - ], - "components": [], - "directories": [ - "content", - "content/media" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "d0c342436fa89f4d72c4ff14e98115a640f52b4e", - "author": "Daniel Holbert ", - "bug_id": 421885, - "desc": "Backed out changeset e4690fcf6f7c, due to reftest failures on linux (421885-1.xml and 403181-1.xml)", - "pushdate": "2008-11-14 21:17:30", - "backsout": [ - "e4690fcf6f7c" - ], - "backedoutby": "", - "author_email": "dholbert@cs.stanford.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 15866377.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "gfx/src/thebes/nsThebesImage.cpp" - ], - "components": [], - "directories": [ - "gfx/src", - "gfx" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "75a38b047225e75426cc7ed74b1ab2e45e5ad513", - "author": "Igor Bukanov ", - "bug_id": 453157, - "desc": "Backed out changeset 8329a91db67d - bug 453157, CLOSED TREE", - "pushdate": "2008-11-20 23:18:55", - "backsout": [ - "8329a91db67d" - ], - "backedoutby": "", - "author_email": "igor@mir2.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 13398236.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "dom/src/base/nsJSEnvironment.cpp", - "dom/src/threads/nsDOMThreadService.cpp", - "js/src/js.cpp", - "js/src/jsapi.cpp", - "js/src/jsapi.h", - "js/src/jscntxt.cpp", - "js/src/jscntxt.h", - "js/src/jsinterp.cpp", - "js/src/jspubtd.h", - "js/src/jsversion.h", - "js/src/xpconnect/idl/nsIXPConnect.idl", - "js/src/xpconnect/src/nsXPConnect.cpp", - "js/src/xpconnect/src/xpccomponents.cpp", - "js/src/xpconnect/src/xpccontext.cpp", - "js/src/xpconnect/src/xpcjsruntime.cpp", - "js/src/xpconnect/src/xpcprivate.h" - ], - "components": [ - "Core::JavaScript Engine" - ], - "directories": [ - "dom", - "js", - "dom/src", - "js/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "1f6bac1d9ed0bef5a0c9af637b63c5a905004de3", - "author": "Dave Townsend ", - "bug_id": 463384, - "desc": "Backed out changeset 4b5e00c182be from bug 463384 due to it causing bug 465883", - "pushdate": "2008-11-20 23:59:44", - "backsout": [ - "4b5e00c182be" - ], - "backedoutby": "", - "author_email": "dtownsend@oxymoronical.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 14735742.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/base/content/browser.js", - "browser/base/content/tabbrowser.xml" - ], - "components": [ - "Firefox::General" - ], - "directories": [ - "browser/base", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "25a79f857a12b49dc3cf819331cb0457fdafa8db", - "author": "Igor Bukanov ", - "bug_id": 453157, - "desc": "Backed out changeset c54f1957d564 - bug 453157 - build system changes caused mouchi test failures. CLOSED TREE", - "pushdate": "2008-11-21 23:13:52", - "backsout": [ - "c54f1957d564" - ], - "backedoutby": "", - "author_email": "igor@mir2.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 13484333.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "build/Makefile.in", - "build/pgo/Makefile.in", - "build/pgo/automation.py.in", - "dom/src/base/nsJSEnvironment.cpp", - "dom/src/threads/nsDOMThreadService.cpp", - "js/src/js.cpp", - "js/src/jsapi.cpp", - "js/src/jsapi.h", - "js/src/jscntxt.cpp", - "js/src/jscntxt.h", - "js/src/jsinterp.cpp", - "js/src/jspubtd.h", - "js/src/jsversion.h", - "js/src/xpconnect/idl/nsIXPConnect.idl", - "js/src/xpconnect/src/nsXPConnect.cpp", - "js/src/xpconnect/src/xpccomponents.cpp", - "js/src/xpconnect/src/xpccontext.cpp", - "js/src/xpconnect/src/xpcjsruntime.cpp", - "js/src/xpconnect/src/xpcprivate.h" - ], - "components": [ - "Core::JavaScript Engine" - ], - "directories": [ - "js/src", - "dom/src", - "build", - "dom", - "js", - "build/pgo" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "51249e968f249def386436609c6f2950197e2061", - "author": "Igor Bukanov ", - "bug_id": 453157, - "desc": "Backed out changeset 700ae4e59496 - bug 453157 caused talos oranges. CLOSED TREE", - "pushdate": "2008-11-24 10:37:44", - "backsout": [ - "700ae4e59496" - ], - "backedoutby": "", - "author_email": "igor@mir2.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 13698165.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "build/Makefile.in", - "build/pgo/Makefile.in", - "build/pgo/automation.py.in", - "dom/src/base/nsJSEnvironment.cpp", - "dom/src/threads/nsDOMThreadService.cpp", - "js/src/js.cpp", - "js/src/jsapi.cpp", - "js/src/jsapi.h", - "js/src/jscntxt.cpp", - "js/src/jscntxt.h", - "js/src/jsinterp.cpp", - "js/src/jspubtd.h", - "js/src/jsversion.h", - "js/src/xpconnect/idl/nsIXPConnect.idl", - "js/src/xpconnect/src/nsXPConnect.cpp", - "js/src/xpconnect/src/xpccomponents.cpp", - "js/src/xpconnect/src/xpccontext.cpp", - "js/src/xpconnect/src/xpcjsruntime.cpp", - "js/src/xpconnect/src/xpcprivate.h", - "testing/mochitest/Makefile.in" - ], - "components": [ - "Core::JavaScript Engine" - ], - "directories": [ - "js/src", - "dom/src", - "build", - "testing/mochitest", - "dom", - "js", - "testing", - "build/pgo" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "21d4cb73f6fe401968c9f1f10da7ed1cb72e40db", - "author": "Shawn Wilsher ", - "bug_id": 435474, - "desc": "Backed out changeset 87f6ae0c4324 (bug 435474) for orange.", - "pushdate": "2008-11-27 21:18:19", - "backsout": [ - "87f6ae0c4324" - ], - "backedoutby": "", - "author_email": "me@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/app/Makefile.in", - "config/Makefile.in", - "config/rules.mk", - "config/static-rules.mk", - "embedding/browser/photon/src/Makefile.in", - "embedding/componentlib/Makefile.in", - "extensions/java/xpcom/interfaces/Makefile.in", - "modules/staticmod/Makefile.in", - "toolkit/mozapps/installer/packager.mk", - "xpcom/tests/static-checker/Makefile.in", - "xulrunner/app/Makefile.in", - "xulrunner/installer/Makefile.in" - ], - "components": [ - "Firefox Build System::General", - "Firefox::Installer" - ], - "directories": [ - "embedding/browser", - "embedding", - "toolkit", - "browser/app", - "xpcom/tests", - "config", - "extensions/java", - "xulrunner/installer", - "embedding/componentlib", - "toolkit/mozapps", - "extensions", - "browser", - "xpcom", - "xulrunner/app", - "xulrunner", - "modules/staticmod", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "ec6ae3ecb8815f3e272e5acf74321173a53ee171", - "author": "Shawn Wilsher ", - "bug_id": 453865, - "desc": "Backed out changeset 17842a2d0c7f (bug 453865) due to test failures", - "pushdate": "2008-11-27 22:23:09", - "backsout": [ - "17842a2d0c7f" - ], - "backedoutby": "", - "author_email": "me@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 3890.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "dom/public/idl/threads/nsIDOMWorkers.idl", - "dom/src/threads/Makefile.in", - "dom/src/threads/nsDOMWorker.cpp", - "dom/src/threads/nsDOMWorker.h", - "dom/src/threads/nsDOMWorkerEvents.cpp", - "dom/src/threads/nsDOMWorkerEvents.h", - "dom/src/threads/nsDOMWorkerMacros.h", - "dom/src/threads/test/Makefile.in", - "dom/src/threads/test/json_worker.js", - "dom/src/threads/test/test_json.html", - "dom/src/threads/test/test_xhrAbort.html", - "js/src/json.cpp", - "js/src/xpconnect/public/nsAutoJSValHolder.h" - ], - "components": [], - "directories": [ - "js/src", - "dom/public", - "dom/src", - "dom", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "1b45760df6eefe25863b23b93cafc5bc73b6a559", - "author": "Shawn Wilsher ", - "bug_id": 561566, - "desc": "Backed out changeset 037f635ced9f (bug 561566)", - "pushdate": "2008-11-28 04:35:30", - "backsout": [ - "037f635ced9f" - ], - "backedoutby": "", - "author_email": "me@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 26231.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "dom/src/base/nsDOMClassInfo.cpp", - "dom/src/base/nsDOMClassInfo.h", - "js/src/xpconnect/idl/nsIXPConnect.idl", - "js/src/xpconnect/src/nsXPConnect.cpp", - "js/src/xpconnect/src/qsgen.py", - "js/src/xpconnect/src/xpcconvert.cpp", - "js/src/xpconnect/src/xpcjsruntime.cpp", - "js/src/xpconnect/src/xpcprivate.h", - "js/src/xpconnect/src/xpcquickstubs.cpp", - "js/src/xpconnect/src/xpcquickstubs.h", - "js/src/xpconnect/src/xpcwrappednative.cpp" - ], - "components": [], - "directories": [ - "dom", - "js", - "dom/src", - "js/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "3957258880e7d6f4a8a3c7b4aff5475666cbd3b1", - "author": "Shawn Wilsher ", - "bug_id": 457215, - "desc": "Backed out changeset 527249758771 (bug 457215) to investigate a performance regression (bug 467102)", - "pushdate": "2008-11-28 19:08:08", - "backsout": [ - "527249758771" - ], - "backedoutby": "", - "author_email": "me@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 78589.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "modules/lcms/src/cmsprecache.c" - ], - "components": [], - "directories": [ - "modules/lcms", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "a6d8a0bcac507df8008225e2683664f29145f395", - "author": "Shawn Wilsher ", - "bug_id": 460629, - "desc": "Backed out changeset 0586ee185c87 (bug 460629) to investigate possible performance regression (bug 467102)", - "pushdate": "2008-11-28 19:08:08", - "backsout": [ - "0586ee185c87" - ], - "backedoutby": "", - "author_email": "me@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 78589.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "gfx/thebes/src/gfxPlatform.cpp", - "modules/lcms/include/lcms.h", - "modules/lcms/src/cmsio1.c", - "modules/lcms/src/lcms.def" - ], - "components": [], - "directories": [ - "modules/lcms", - "gfx/thebes", - "gfx", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "a3f9376ede1ea7fd6c56c4cb4e6f192267a97683", - "author": "Shawn Wilsher ", - "bug_id": 460520, - "desc": "Backed out changeset 6d9d920759cb (bug 460520) to investigate a performance regression (bug 467102)", - "pushdate": "2008-11-28 19:08:08", - "backsout": [ - "6d9d920759cb" - ], - "backedoutby": "", - "author_email": "me@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 78589.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "modules/lcms/src/cmsmtrx.c", - "modules/lcms/src/cmswtpnt.c" - ], - "components": [], - "directories": [ - "modules/lcms", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "de15a638ac3c89a392ecd313c3562e275e4f3f31", - "author": "Shawn Wilsher ", - "bug_id": 407725, - "desc": "Backed out changeset fdd5e4e34241 (bug 407725) to possibly fix random failures of browser/base/content/test/browser_customize.js", - "pushdate": "2008-11-28 23:22:07", - "backsout": [ - "fdd5e4e34241" - ], - "backedoutby": "", - "author_email": "me@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 93828.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/content/customizeToolbar.js", - "toolkit/content/widgets/toolbar.xml" - ], - "components": [], - "directories": [ - "toolkit/content", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "5d192e3eee829d162556c9ba7391222c32967154", - "author": "Shawn Wilsher ", - "bug_id": 464362, - "desc": "Backed out changeset 30adfe786ffa (bug 464362) in an attempt to fix red on tinderbox.", - "pushdate": "2008-11-29 00:15:56", - "backsout": [ - "30adfe786ffa" - ], - "backedoutby": "", - "author_email": "me@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 97057.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "modules/libreg/src/Makefile.in", - "modules/libreg/src/reg.c", - "modules/libreg/standalone/Makefile.in" - ], - "components": [], - "directories": [ - "modules/libreg", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "6dc4b85cd8a70d847b884dd841cccbbea3a25277", - "author": "Shawn Wilsher ", - "bug_id": 458397, - "desc": "Backed out changeset a4495a0cf2ff (bug 458397) to investigate Txul regression (bug 467102)", - "pushdate": "2008-11-29 01:07:07", - "backsout": [ - "a4495a0cf2ff" - ], - "backedoutby": "", - "author_email": "me@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 100128.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "dom/src/base/nsDOMClassInfo.cpp", - "dom/src/base/nsDOMClassInfo.h", - "js/src/xpconnect/idl/nsIXPConnect.idl", - "js/src/xpconnect/src/nsXPConnect.cpp", - "js/src/xpconnect/src/xpcconvert.cpp", - "js/src/xpconnect/src/xpcprivate.h", - "js/src/xpconnect/src/xpcquickstubs.cpp", - "js/src/xpconnect/src/xpcwrappedjsclass.cpp" - ], - "components": [], - "directories": [ - "dom", - "js", - "dom/src", - "js/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "09ec08895dea4dfdd86671846bacc89efd1c1114", - "author": "Ted Mielczarek ", - "bug_id": 427750, - "desc": "Backed out changeset 96956634349c, bug 427750 - Require python >= 2.4 to build Mozilla (and >=2.5 on Windows). Apparently scratchbox only ships with 2.3 by default.", - "pushdate": "2008-12-02 19:17:03", - "backsout": [ - "96956634349c" - ], - "backedoutby": "", - "author_email": "ted.mielczarek@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 22213659.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "configure.in" - ], - "components": [], - "directories": [], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "b4b8f7a7212b6cf9a1cb5d84cc5f656d7be4970b", - "author": "Benjamin Smedberg ", - "bug_id": 466486, - "desc": "Backed out changeset f71446b6fc7e: bug 466486- directories are getting skipped, causing things like xpcshell not to be built", - "pushdate": "2008-12-02 22:18:45", - "backsout": [ - "f71446b6fc7e" - ], - "backedoutby": "", - "author_email": "benjamin@smedbergs.us", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 22224561.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "config/rules.mk", - "js/src/config/rules.mk" - ], - "components": [ - "Firefox Build System::General" - ], - "directories": [ - "js/src", - "config", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "c0e30a87ce6381e10e3948f0877bd07f180e5caf", - "author": "Gavin Sharp ", - "bug_id": 455381, - "desc": "backout changeset ce8fbd7d222e from bug 455381 to fix windows unit test bustage", - "pushdate": "2008-12-03 23:51:55", - "backsout": [ - "ce8fbd7d222e" - ], - "backedoutby": "", - "author_email": "gavin@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 14769262.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "xpcom/threads/nsProcessCommon.cpp" - ], - "components": [ - "Core::XPCOM" - ], - "directories": [ - "xpcom/threads", - "xpcom" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "212de1e1a1048edc5d3976b83694d0533a6c9b87", - "author": "L. David Baron ", - "bug_id": 302561, - "desc": "Backed out changeset 7b553bbed53d (bug 302561) due to chrome test crash.", - "pushdate": "2008-12-04 17:57:59", - "backsout": [ - "7b553bbed53d" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 17622000.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/base/nsCSSFrameConstructor.cpp", - "layout/base/nsCSSFrameConstructor.h", - "layout/base/nsPresShell.cpp", - "layout/style/test/Makefile.in", - "layout/style/test/test_hover.html", - "view/public/nsIViewObserver.h", - "view/src/nsViewManager.cpp" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "view", - "view/src", - "view/public", - "layout/style", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "024fa1c26e347b5281a1cb57854f6eff6687dc90", - "author": "Daniel Holbert ", - "bug_id": 335531, - "desc": "Backed out changeset 78d662c2c878 (Bug 335531) on suspicion of causing mochitest failures in test_bug399284.html on linux & windows unittest boxes.", - "pushdate": "2008-12-05 19:53:14", - "backsout": [ - "78d662c2c878" - ], - "backedoutby": "", - "author_email": "dholbert@cs.stanford.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 17675721.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/base/public/nsContentUtils.h", - "content/base/src/nsContentUtils.cpp", - "content/base/src/nsScriptLoader.cpp", - "dom/locales/en-US/chrome/charsetTitles.properties", - "extensions/universalchardet/src/base/nsUniversalDetector.cpp", - "intl/chardet/src/nsMetaCharsetObserver.cpp", - "intl/uconv/src/charsetalias.properties", - "intl/uconv/src/nsUConvModule.cpp", - "intl/uconv/tests/unit/test_bug335531.js", - "intl/uconv/ucvlatin/nsUCvLatinCID.h", - "intl/uconv/ucvlatin/nsUTF32ToUnicode.cpp", - "intl/uconv/ucvlatin/nsUTF32ToUnicode.h", - "intl/uconv/ucvlatin/nsUnicodeToUTF32.cpp", - "intl/uconv/ucvlatin/nsUnicodeToUTF32.h", - "layout/style/nsCSSLoader.cpp", - "netwerk/streamconv/converters/nsUnknownDecoder.cpp", - "parser/htmlparser/src/nsParser.cpp", - "toolkit/locales/en-US/chrome/global/intl.properties" - ], - "components": [ - "Core::Networking", - "Firefox Build System::General" - ], - "directories": [ - "toolkit", - "netwerk", - "toolkit/locales", - "dom/locales", - "extensions/universalchardet", - "netwerk/streamconv", - "dom", - "content/base", - "content", - "extensions", - "intl", - "intl/chardet", - "parser", - "parser/htmlparser", - "layout/style", - "layout", - "intl/uconv" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "6c07d6a8cd3344d35263acd501806ce01c661c2f", - "author": "Shawn Wilsher ", - "bug_id": 466582, - "desc": "Backed out changeset b6f762fde736 (bug 466582) for unit test orange.", - "pushdate": "2008-12-08 23:53:23", - "backsout": [ - "b6f762fde736" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 16185972.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "chrome/src/nsChromeProtocolHandler.cpp", - "chrome/src/nsChromeRegistry.cpp", - "chrome/test/unit/data/test_bug401153.manifest", - "chrome/test/unit/data/test_data_protocol_registration.manifest", - "chrome/test/unit/data/test_no_remote_registration.manifest", - "chrome/test/unit/test_bug401153.js", - "chrome/test/unit/test_data_protocol_registration.js", - "chrome/test/unit/test_no_remote_registration.js", - "docshell/base/nsDocShell.cpp", - "modules/libpr0n/decoders/icon/nsIconProtocolHandler.cpp", - "netwerk/base/public/nsIProtocolHandler.idl", - "netwerk/protocol/data/src/nsDataHandler.cpp", - "netwerk/protocol/file/src/nsFileProtocolHandler.cpp", - "netwerk/protocol/res/src/nsResProtocolHandler.cpp", - "toolkit/components/places/src/nsAnnoProtocolHandler.cpp" - ], - "components": [ - "Core::DOM: Navigation", - "Toolkit::Startup and Profile System" - ], - "directories": [ - "modules", - "netwerk/base", - "netwerk/protocol", - "toolkit", - "modules/libpr0n", - "netwerk", - "toolkit/components", - "docshell/base", - "docshell", - "chrome/src", - "chrome/test", - "chrome" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "5af0a48a20d48baf754d6b71831334134effc6aa", - "author": "Shawn Wilsher ", - "bug_id": 432938, - "desc": "Backed out changeset 3744204c1576 (bug 432938) due to orange", - "pushdate": "2008-12-08 23:53:23", - "backsout": [ - "3744204c1576" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 16185972.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/themes/gnomestripe/browser/jar.mn" - ], - "components": [], - "directories": [ - "browser/themes", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "3ce0936aef4054e10469b2af018aa2779f25de57", - "author": "L. David Baron ", - "bug_id": 466104, - "desc": "Backed out changeset 957a4fed14af (bug 466104) due to leaks", - "pushdate": "2008-12-09 07:13:47", - "backsout": [ - "957a4fed14af" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 18015348.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "testing/mochitest/tests/SimpleTest/SimpleTest.js", - "testing/mochitest/tests/SimpleTest/TestRunner.js" - ], - "components": [ - "Testing::Mochitest" - ], - "directories": [ - "testing/mochitest", - "testing" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "57c92d052aca6c275b7a08ed52cf7a084d664526", - "author": "Shawn Wilsher ", - "bug_id": 463887, - "desc": "Backed out changeset 00563815af18 (bug 463887) because it caused orange.", - "pushdate": "2008-12-12 01:27:07", - "backsout": [ - "00563815af18" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 16450796.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "configure.in" - ], - "components": [], - "directories": [], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "c39b5108ca5184cafb529908608991022e2c63ae", - "author": "L. David Baron ", - "bug_id": 468824, - "desc": "Backed out changeset 12f97a5bc3b6 (bug 468824) for causing failed unit test because of differences between config/system-headers and js/src/config/system-headers", - "pushdate": "2008-12-12 02:21:01", - "backsout": [ - "12f97a5bc3b6" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 18256982.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "config/system-headers" - ], - "components": [], - "directories": [ - "config" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "3cbb1961f1f7047554228cbae0629112ffeaf5f5", - "author": "Benjamin Smedberg ", - "bug_id": 460926, - "desc": "Backed out changeset 71c3a9d14712 - Bug 460926 - due to crash regression, bug 468845", - "pushdate": "2008-12-15 14:21:49", - "backsout": [ - "71c3a9d14712" - ], - "backedoutby": "", - "author_email": "benjamin@smedbergs.us", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 23319145.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/xre/nsAppRunner.cpp" - ], - "components": [ - "Toolkit::Startup and Profile System" - ], - "directories": [ - "toolkit", - "toolkit/xre" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "44ef5053568e07019c19149684eae85c1b8a64e4", - "author": "Joe Drew ", - "bug_id": 469809, - "desc": "Backed out changeset 0c0bf7bd8e7b for bug 469809", - "pushdate": "2008-12-16 19:54:02", - "backsout": [ - "0c0bf7bd8e7b" - ], - "backedoutby": "", - "author_email": "joe@drew.ca", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 10323370.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "widget/src/gtk2/nsWindow.cpp" - ], - "components": [], - "directories": [ - "widget", - "widget/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "eceb4663cfd926c4541e094756c1c0bc29500401", - "author": "Justin Dolske ", - "bug_id": 463806, - "desc": "Backed out changeset 98ea743c9156 (Bug 463806) due to crashes on OS X 10.4 talos boxes.", - "pushdate": "2008-12-17 21:03:07", - "backsout": [ - "98ea743c9156" - ], - "backedoutby": "", - "author_email": "dolske@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 15903431.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "gfx/thebes/src/gfxQuartzFontCache.h", - "gfx/thebes/src/gfxQuartzFontCache.mm" - ], - "components": [], - "directories": [ - "gfx/thebes", - "gfx" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "e0740bbd7f753add0a5973e031f7388c2c87a2a1", - "author": "L. David Baron ", - "bug_id": 470769, - "desc": "Backed out changeset 441f119f1a0c (Bug 470769) due to failures in layout/style/test/test_bug365932.html", - "pushdate": "2008-12-23 16:12:28", - "backsout": [ - "441f119f1a0c" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 19257269.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/style/nsComputedDOMStyle.cpp", - "layout/style/nsROCSSPrimitiveValue.cpp", - "layout/style/nsROCSSPrimitiveValue.h", - "layout/style/test/Makefile.in", - "layout/style/test/test_bug373875.html" - ], - "components": [ - "Core::DOM: CSS Object Model" - ], - "directories": [ - "layout/style", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "f506b00d99f4bfcd16df58ff86c0e435ae3bbcc0", - "author": "Igor Bukanov ", - "bug_id": 453157, - "desc": "Backed out changeset 7184e014cd05 - the patch for bug 453157 bursted tgfx test on Windows.", - "pushdate": "2008-12-26 01:26:36", - "backsout": [ - "7184e014cd05" - ], - "backedoutby": "", - "author_email": "igor@mir2.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 16429897.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "build/Makefile.in", - "build/pgo/Makefile.in", - "build/pgo/automation.py.in", - "dom/src/base/nsJSEnvironment.cpp", - "dom/src/threads/nsDOMThreadService.cpp", - "js/src/js.cpp", - "js/src/jsapi.cpp", - "js/src/jsapi.h", - "js/src/jscntxt.cpp", - "js/src/jscntxt.h", - "js/src/jsinterp.cpp", - "js/src/jspubtd.h", - "js/src/jsversion.h", - "js/src/xpconnect/idl/nsIXPConnect.idl", - "js/src/xpconnect/src/nsXPConnect.cpp", - "js/src/xpconnect/src/xpccomponents.cpp", - "js/src/xpconnect/src/xpccontext.cpp", - "js/src/xpconnect/src/xpcjsruntime.cpp", - "js/src/xpconnect/src/xpcprivate.h", - "testing/mochitest/Makefile.in" - ], - "components": [ - "Core::JavaScript Engine" - ], - "directories": [ - "js/src", - "dom/src", - "build", - "testing/mochitest", - "dom", - "js", - "testing", - "build/pgo" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "0928c4fc27901f10216e5ac2509530bea0c62c3b", - "author": "Phil Ringnalda ", - "bug_id": 467862, - "desc": "Backed out changeset 73be1c836d7f (bug 467862) to see if that fixes Windows bustage (bug 471097)", - "pushdate": "2008-12-26 03:30:08", - "backsout": [ - "73be1c836d7f" - ], - "backedoutby": "", - "author_email": "philringnalda@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 16769818.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "config/config.mk", - "config/rules.mk", - "js/src/config/config.mk", - "js/src/config/rules.mk" - ], - "components": [ - "Firefox Build System::General" - ], - "directories": [ - "js/src", - "config", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "bac73f9f2d2b28630201fe2a2511b3a5bce0f68e", - "author": "Phil Ringnalda ", - "bug_id": 462004, - "desc": "Backed out changeset 55e23c647137 (bug 462004) so the backout for bug 467862 to solve bug 471097 can actually build", - "pushdate": "2008-12-26 03:52:55", - "backsout": [ - "55e23c647137" - ], - "backedoutby": "", - "author_email": "philringnalda@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 16771185.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "config/autoconf.mk.in", - "configure.in", - "js/src/Makefile.in", - "js/src/config/autoconf.mk.in", - "js/src/configure.in", - "js/src/editline/Makefile.in", - "js/src/js.cpp", - "js/src/shell/Makefile.in", - "js/src/shell/js.cpp" - ], - "components": [ - "Firefox Build System::General", - "Core::JavaScript Engine" - ], - "directories": [ - "js/src", - "config", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "de8572d5add0ea788427cc233df093a3e893d76d", - "author": "Phil Ringnalda ", - "bug_id": 466224, - "desc": "Backed out changeset e0cce6a738c9 (Bug 466224 - Make quickstubs call nsINode/nsINodeList methods) for failing mochitest", - "pushdate": "2009-01-01 02:43:25", - "backsout": [ - "e0cce6a738c9" - ], - "backedoutby": "", - "author_email": "philringnalda@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 17285415.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/base/public/nsIDocument.h", - "content/base/public/nsINode.h", - "content/base/public/nsINodeList.h", - "content/base/src/nsDOMAttribute.cpp", - "content/base/src/nsDocument.cpp", - "content/base/src/nsGenericDOMDataNode.cpp", - "content/base/src/nsGenericDOMDataNode.h", - "content/base/src/nsGenericElement.cpp", - "content/base/src/nsGenericElement.h", - "js/src/xpconnect/src/Makefile.in", - "js/src/xpconnect/src/dom_quickstubs.qsconf", - "js/src/xpconnect/src/nsXPConnect.cpp", - "js/src/xpconnect/src/qsgen.py", - "js/src/xpconnect/src/xpcconvert.cpp", - "js/src/xpconnect/src/xpcprivate.h", - "js/src/xpconnect/src/xpcquickstubs.cpp", - "js/src/xpconnect/src/xpcquickstubs.h", - "js/src/xpconnect/src/xpcwrappedjsclass.cpp" - ], - "components": [], - "directories": [ - "js", - "content/base", - "content", - "js/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "4a377a57eb8ef906c2381bc07212154f5323a402", - "author": "Dave Camp ", - "bug_id": 441359, - "desc": "Backed out changeset e31d0d3c28fd (bug 441359)", - "pushdate": "2009-01-05 09:29:44", - "backsout": [ - "e31d0d3c28fd" - ], - "backedoutby": "", - "author_email": "dcamp@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 16700722.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "build/pgo/server-locations.txt", - "content/base/src/nsObjectLoadingContent.cpp", - "content/base/src/nsScriptLoader.cpp", - "docshell/base/nsDocShell.cpp", - "docshell/base/nsDocShell.h", - "docshell/base/nsIChannelClassifier.idl", - "layout/style/nsCSSLoader.cpp", - "toolkit/components/url-classifier/tests/Makefile.in", - "toolkit/components/url-classifier/tests/mochitest/Makefile.in", - "toolkit/components/url-classifier/tests/mochitest/classifierFrame.html", - "toolkit/components/url-classifier/tests/mochitest/evil.css", - "toolkit/components/url-classifier/tests/mochitest/evil.js", - "toolkit/components/url-classifier/tests/mochitest/import.css", - "toolkit/components/url-classifier/tests/mochitest/test_classifier.html" - ], - "components": [ - "Toolkit::Safe Browsing", - "Firefox Build System::General", - "Core::DOM: Navigation" - ], - "directories": [ - "toolkit", - "toolkit/components", - "docshell/base", - "docshell", - "build", - "content/base", - "content", - "layout/style", - "build/pgo", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "e3bab6e6bfc24812be67c4952811ffcd341f37a1", - "author": "Boris Zbarsky ", - "bug_id": 437366, - "desc": "Backed out changeset f87b46d44d22 (bug 437366)", - "pushdate": "2009-01-05 22:05:44", - "backsout": [ - "f87b46d44d22" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 15638452.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/style/nsCSSDataBlock.cpp" - ], - "components": [], - "directories": [ - "layout/style", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "0f85bea9dea38a4923d328f57b6ab00d5d751669", - "author": "Andreas Gal ", - "bug_id": 453157, - "desc": "Backed out changeset adbe8e4b21dc due to tinderbox failures/timeouts (453157).", - "pushdate": "2009-01-08 04:49:11", - "backsout": [ - "adbe8e4b21dc" - ], - "backedoutby": "", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 16390673.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "build/Makefile.in", - "build/pgo/Makefile.in", - "build/pgo/automation.py.in", - "dom/src/base/nsJSEnvironment.cpp", - "dom/src/threads/nsDOMThreadService.cpp", - "js/src/js.cpp", - "js/src/jsapi.cpp", - "js/src/jsapi.h", - "js/src/jscntxt.cpp", - "js/src/jscntxt.h", - "js/src/jsinterp.cpp", - "js/src/jspubtd.h", - "js/src/jsversion.h", - "js/src/xpconnect/idl/nsIXPConnect.idl", - "js/src/xpconnect/src/nsXPConnect.cpp", - "js/src/xpconnect/src/xpccomponents.cpp", - "js/src/xpconnect/src/xpccontext.cpp", - "js/src/xpconnect/src/xpcjsruntime.cpp", - "js/src/xpconnect/src/xpcprivate.h", - "testing/mochitest/Makefile.in" - ], - "components": [ - "Core::JavaScript Engine" - ], - "directories": [ - "js/src", - "dom/src", - "build", - "testing/mochitest", - "dom", - "js", - "testing", - "build/pgo" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "d77eef73aeb6917ae4edb654a15fbdf8c9321bc8", - "author": "Boris Zbarsky ", - "bug_id": 464838, - "desc": "Backed out changeset b73e063a3f99 (bug 464838)", - "pushdate": "2009-01-08 19:59:07", - "backsout": [ - "b73e063a3f99" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 15890055.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/html/content/src/nsHTMLAnchorElement.cpp", - "content/html/content/src/nsHTMLDNSPrefetch.cpp", - "content/html/content/src/nsHTMLDNSPrefetch.h" - ], - "components": [], - "directories": [ - "content/html", - "content" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "48b1dea326bb61ab862b363b4223404e242b2e88", - "author": "Dave Townsend ", - "bug_id": 469613, - "desc": "Backed out changeset fe759e3fd895 from bug 469613 due to mochitest failures", - "pushdate": "2009-01-09 13:47:34", - "backsout": [ - "fe759e3fd895" - ], - "backedoutby": "", - "author_email": "dtownsend@oxymoronical.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 19019012.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/generic/test/Makefile.in", - "layout/generic/test/test_bug469613.xul", - "view/src/nsScrollPortView.cpp" - ], - "components": [], - "directories": [ - "view", - "layout/generic", - "view/src", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "864061941ee1bd4ae34deec261b8440e4a3a720d", - "author": "Benjamin Smedberg ", - "bug_id": 396185, - "desc": "Backed out changeset 4c4df6ed1b41 - Bug 396185 - Make nsIFrame not inherit from nsISupports due to mochitest failures... these appear to be crashes in nsGenericHTMLElement::GetEditorInternal.", - "pushdate": "2009-01-09 16:36:02", - "backsout": [ - "4c4df6ed1b41" - ], - "backedoutby": "", - "author_email": "benjamin@smedbergs.us", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 25487198.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "accessible/public/nsIAccessibilityService.idl", - "accessible/src/base/nsAccessibilityService.cpp", - "accessible/src/base/nsAccessibilityService.h", - "accessible/src/base/nsAccessible.cpp", - "accessible/src/base/nsCoreUtils.cpp", - "accessible/src/base/nsRootAccessible.cpp", - "accessible/src/html/nsHTMLAreaAccessible.cpp", - "accessible/src/html/nsHTMLFormControlAccessible.cpp", - "accessible/src/html/nsHTMLSelectAccessible.cpp", - "accessible/src/html/nsHTMLTableAccessible.cpp", - "accessible/src/html/nsHyperTextAccessible.cpp", - "accessible/src/msaa/nsAccessibleWrap.cpp", - "content/base/src/nsFrameLoader.cpp", - "content/base/src/nsGenericElement.cpp", - "content/base/src/nsObjectLoadingContent.cpp", - "content/events/src/nsEventStateManager.cpp", - "content/html/content/src/nsGenericHTMLElement.cpp", - "content/html/content/src/nsHTMLButtonElement.cpp", - "content/html/content/src/nsHTMLInputElement.cpp", - "content/html/content/src/nsHTMLObjectElement.cpp", - "content/html/content/src/nsHTMLSelectElement.cpp", - "content/html/content/src/nsHTMLTextAreaElement.cpp", - "content/html/document/src/nsPluginDocument.cpp", - "content/svg/content/src/nsISVGTextContentMetrics.h", - "content/svg/content/src/nsISVGValue.h", - "content/svg/content/src/nsSVGGraphicElement.cpp", - "content/svg/content/src/nsSVGPatternElement.cpp", - "content/svg/content/src/nsSVGSVGElement.cpp", - "content/svg/content/src/nsSVGSwitchElement.cpp", - "content/svg/content/src/nsSVGTSpanElement.cpp", - "content/svg/content/src/nsSVGTextElement.cpp", - "content/svg/content/src/nsSVGTextPathElement.cpp", - "content/svg/content/src/nsSVGTextPathElement.h", - "docshell/base/nsDocShell.cpp", - "editor/libeditor/html/nsTableEditor.cpp", - "embedding/components/find/src/nsFind.cpp", - "embedding/components/find/src/nsWebBrowserFind.cpp", - "layout/base/nsBidiPresUtils.cpp", - "layout/base/nsCSSFrameConstructor.cpp", - "layout/base/nsCSSRendering.cpp", - "layout/base/nsCaret.cpp", - "layout/base/nsDocumentViewer.cpp", - "layout/base/nsFrameManager.cpp", - "layout/base/nsIPercentHeightObserver.h", - "layout/base/nsLayoutDebugger.cpp", - "layout/base/nsLayoutUtils.cpp", - "layout/base/nsPresShell.cpp", - "layout/forms/nsComboboxControlFrame.cpp", - "layout/forms/nsComboboxControlFrame.h", - "layout/forms/nsFileControlFrame.cpp", - "layout/forms/nsFileControlFrame.h", - "layout/forms/nsFormControlFrame.cpp", - "layout/forms/nsFormControlFrame.h", - "layout/forms/nsGfxButtonControlFrame.cpp", - "layout/forms/nsGfxButtonControlFrame.h", - "layout/forms/nsGfxCheckboxControlFrame.cpp", - "layout/forms/nsGfxCheckboxControlFrame.h", - "layout/forms/nsGfxRadioControlFrame.cpp", - "layout/forms/nsGfxRadioControlFrame.h", - "layout/forms/nsHTMLButtonControlFrame.cpp", - "layout/forms/nsHTMLButtonControlFrame.h", - "layout/forms/nsICheckboxControlFrame.h", - "layout/forms/nsIComboboxControlFrame.h", - "layout/forms/nsIFormControlFrame.h", - "layout/forms/nsIListControlFrame.h", - "layout/forms/nsIRadioControlFrame.h", - "layout/forms/nsISelectControlFrame.h", - "layout/forms/nsImageControlFrame.cpp", - "layout/forms/nsIsIndexFrame.cpp", - "layout/forms/nsIsIndexFrame.h", - "layout/forms/nsLegendFrame.cpp", - "layout/forms/nsLegendFrame.h", - "layout/forms/nsListControlFrame.cpp", - "layout/forms/nsListControlFrame.h", - "layout/forms/nsTextControlFrame.cpp", - "layout/forms/nsTextControlFrame.h", - "layout/generic/Makefile.in", - "layout/generic/nsAbsoluteContainingBlock.cpp", - "layout/generic/nsBRFrame.cpp", - "layout/generic/nsBlockFrame.cpp", - "layout/generic/nsBlockFrame.h", - "layout/generic/nsContainerFrame.cpp", - "layout/generic/nsFloatManager.cpp", - "layout/generic/nsFrame.cpp", - "layout/generic/nsFrame.h", - "layout/generic/nsFrameFrame.cpp", - "layout/generic/nsFrameList.cpp", - "layout/generic/nsFrameSetFrame.cpp", - "layout/generic/nsFrameSetFrame.h", - "layout/generic/nsGfxScrollFrame.cpp", - "layout/generic/nsGfxScrollFrame.h", - "layout/generic/nsHTMLFrame.cpp", - "layout/generic/nsIAnonymousContentCreator.h", - "layout/generic/nsICanvasFrame.h", - "layout/generic/nsIFrame.h", - "layout/generic/nsIFrameDebug.h", - "layout/generic/nsIFrameFrame.h", - "layout/generic/nsIImageFrame.h", - "layout/generic/nsIObjectFrame.h", - "layout/generic/nsIPageSequenceFrame.h", - "layout/generic/nsIScrollableFrame.h", - "layout/generic/nsIScrollableViewProvider.h", - "layout/generic/nsIStatefulFrame.h", - "layout/generic/nsImageFrame.cpp", - "layout/generic/nsImageFrame.h", - "layout/generic/nsInlineFrame.cpp", - "layout/generic/nsInlineFrame.h", - "layout/generic/nsLineBox.cpp", - "layout/generic/nsObjectFrame.cpp", - "layout/generic/nsObjectFrame.h", - "layout/generic/nsQueryFrame.h", - "layout/generic/nsSelection.cpp", - "layout/generic/nsSimplePageSequence.cpp", - "layout/generic/nsSimplePageSequence.h", - "layout/generic/nsVideoFrame.cpp", - "layout/generic/nsVideoFrame.h", - "layout/generic/nsViewportFrame.cpp", - "layout/mathml/base/src/nsIMathMLFrame.h", - "layout/mathml/base/src/nsMathMLContainerFrame.cpp", - "layout/mathml/base/src/nsMathMLContainerFrame.h", - "layout/mathml/base/src/nsMathMLForeignFrameWrapper.cpp", - "layout/mathml/base/src/nsMathMLForeignFrameWrapper.h", - "layout/mathml/base/src/nsMathMLFrame.cpp", - "layout/mathml/base/src/nsMathMLFrame.h", - "layout/mathml/base/src/nsMathMLmactionFrame.cpp", - "layout/mathml/base/src/nsMathMLmfencedFrame.cpp", - "layout/mathml/base/src/nsMathMLmtableFrame.cpp", - "layout/mathml/base/src/nsMathMLmtableFrame.h", - "layout/printing/nsPrintEngine.cpp", - "layout/style/nsComputedDOMStyle.cpp", - "layout/style/nsICSSPseudoComparator.h", - "layout/svg/base/src/nsISVGChildFrame.h", - "layout/svg/base/src/nsISVGGlyphFragmentLeaf.h", - "layout/svg/base/src/nsISVGGlyphFragmentNode.h", - "layout/svg/base/src/nsISVGSVGFrame.h", - "layout/svg/base/src/nsSVGClipPathFrame.cpp", - "layout/svg/base/src/nsSVGContainerFrame.cpp", - "layout/svg/base/src/nsSVGContainerFrame.h", - "layout/svg/base/src/nsSVGFilterFrame.cpp", - "layout/svg/base/src/nsSVGForeignObjectFrame.cpp", - "layout/svg/base/src/nsSVGForeignObjectFrame.h", - "layout/svg/base/src/nsSVGGlyphFrame.cpp", - "layout/svg/base/src/nsSVGGlyphFrame.h", - "layout/svg/base/src/nsSVGInnerSVGFrame.cpp", - "layout/svg/base/src/nsSVGIntegrationUtils.cpp", - "layout/svg/base/src/nsSVGMarkerFrame.cpp", - "layout/svg/base/src/nsSVGOuterSVGFrame.cpp", - "layout/svg/base/src/nsSVGOuterSVGFrame.h", - "layout/svg/base/src/nsSVGPathGeometryFrame.cpp", - "layout/svg/base/src/nsSVGPathGeometryFrame.h", - "layout/svg/base/src/nsSVGPatternFrame.cpp", - "layout/svg/base/src/nsSVGSwitchFrame.cpp", - "layout/svg/base/src/nsSVGTSpanFrame.cpp", - "layout/svg/base/src/nsSVGTSpanFrame.h", - "layout/svg/base/src/nsSVGTextContainerFrame.cpp", - "layout/svg/base/src/nsSVGTextContainerFrame.h", - "layout/svg/base/src/nsSVGUseFrame.cpp", - "layout/svg/base/src/nsSVGUtils.cpp", - "layout/tables/nsITableCellLayout.h", - "layout/tables/nsITableLayout.h", - "layout/tables/nsTableCellFrame.cpp", - "layout/tables/nsTableCellFrame.h", - "layout/tables/nsTableFrame.cpp", - "layout/tables/nsTableFrame.h", - "layout/tables/nsTableOuterFrame.cpp", - "layout/tables/nsTableOuterFrame.h", - "layout/tables/nsTableRowGroupFrame.cpp", - "layout/tables/nsTableRowGroupFrame.h", - "layout/xul/base/public/nsIMenuFrame.h", - "layout/xul/base/public/nsIScrollbarMediator.h", - "layout/xul/base/src/grid/nsGrid.cpp", - "layout/xul/base/src/grid/nsGridRowLeafLayout.cpp", - "layout/xul/base/src/nsBoxObject.cpp", - "layout/xul/base/src/nsContainerBoxObject.cpp", - "layout/xul/base/src/nsDocElementBoxFrame.cpp", - "layout/xul/base/src/nsIRootBox.h", - "layout/xul/base/src/nsIScrollbarFrame.h", - "layout/xul/base/src/nsListBoxBodyFrame.cpp", - "layout/xul/base/src/nsListBoxBodyFrame.h", - "layout/xul/base/src/nsListBoxObject.cpp", - "layout/xul/base/src/nsListItemFrame.cpp", - "layout/xul/base/src/nsListItemFrame.h", - "layout/xul/base/src/nsMenuFrame.cpp", - "layout/xul/base/src/nsMenuFrame.h", - "layout/xul/base/src/nsMenuPopupFrame.cpp", - "layout/xul/base/src/nsPopupSetFrame.cpp", - "layout/xul/base/src/nsRootBoxFrame.cpp", - "layout/xul/base/src/nsScrollBoxObject.cpp", - "layout/xul/base/src/nsScrollbarButtonFrame.cpp", - "layout/xul/base/src/nsScrollbarFrame.cpp", - "layout/xul/base/src/nsScrollbarFrame.h", - "layout/xul/base/src/nsSliderFrame.cpp", - "layout/xul/base/src/nsSplitterFrame.cpp", - "layout/xul/base/src/nsSplitterFrame.h", - "layout/xul/base/src/tree/src/nsTreeBodyFrame.cpp", - "layout/xul/base/src/tree/src/nsTreeBodyFrame.h", - "layout/xul/base/src/tree/src/nsTreeBoxObject.cpp", - "layout/xul/base/src/tree/src/nsTreeColFrame.cpp", - "layout/xul/base/src/tree/src/nsTreeColFrame.h", - "widget/src/gtk2/nsNativeThemeGTK.cpp", - "widget/src/windows/nsNativeThemeWin.cpp" - ], - "components": [ - "Core::DOM: Navigation", - "Core::Layout: Block and Inline", - "Core::DOM: CSS Object Model", - "Core::Audio/Video", - "Core::Layout: Form Controls", - "Core::Layout: Images, Video, and HTML Frames", - "Core::Layout", - "Core::Layout: Tables", - "Core::Layout: Scrolling and Overflow", - "Core::Layout: Text and Fonts", - "Core::Layout: Positioned", - "Core::Layout: Floats" - ], - "directories": [ - "accessible/src", - "accessible", - "docshell/base", - "layout/mathml", - "editor", - "content/base", - "content", - "content/html", - "embedding/components", - "layout/generic", - "accessible/public", - "layout/style", - "layout", - "layout/xul", - "docshell", - "layout/forms", - "layout/base", - "widget", - "editor/libeditor", - "layout/tables", - "embedding", - "layout/printing", - "layout/svg", - "content/svg", - "widget/src", - "content/events" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "a7489d8375cf34005f915e5bc93f997ae239ed11", - "author": "Shawn Wilsher ", - "bug_id": 471685, - "desc": "Backed out changeset 4de172f0d8b8 (bug 471685) with a CLOSED TREE", - "pushdate": "2009-01-09 21:19:50", - "backsout": [ - "4de172f0d8b8" - ], - "backedoutby": "", - "author_email": "me@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 3715291.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "db/sqlite3/src/sqlite3.c", - "db/sqlite3/src/sqlite3.h" - ], - "components": [], - "directories": [ - "db/sqlite3", - "db" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "f8a05a8b28eb977cf4a1a2e032e06489fead4d26", - "author": "Shawn Wilsher ", - "bug_id": 471685, - "desc": "Backed out changeset c569a8f91c0e (bug 471685) with a CLOSED TREE", - "pushdate": "2009-01-09 21:19:50", - "backsout": [ - "c569a8f91c0e" - ], - "backedoutby": "", - "author_email": "me@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 3715291.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "configure.in", - "db/sqlite3/README.MOZILLA" - ], - "components": [], - "directories": [ - "db/sqlite3", - "db" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "e1da61348ddaee37776ea497c30e517b718caa6b", - "author": "Benjamin Smedberg ", - "bug_id": 469558, - "desc": "Backed out changeset 8f347bf50a53 due to x86-64 build bustage, and the fact that the committed patch didn't match the reviewed patch in an important way (bug 469558)", - "pushdate": "2009-01-13 15:22:11", - "backsout": [ - "8f347bf50a53" - ], - "backedoutby": "", - "author_email": "benjamin@smedbergs.us", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 25828367.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "config/Makefile.in", - "config/autoconf.mk.in", - "config/system-headers", - "configure.in", - "js/src/config/system-headers", - "toolkit/toolkit-makefiles.sh", - "toolkit/toolkit-tiers.mk" - ], - "components": [ - "Firefox Build System::General" - ], - "directories": [ - "js/src", - "config", - "js", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "c573ff777cc4311b0b57bb909fd1eeac274e9e5f", - "author": "Peter Van der Beken ", - "bug_id": 471126, - "desc": "Back out changeset 9fd8740decb8 (Fix for bug 471126 (leak content nodes (and sometimes dom windows) after clicking on nytimes.com articles).) to try to fix orange.", - "pushdate": "2009-01-14 14:13:59", - "backsout": [ - "9fd8740decb8" - ], - "backedoutby": "", - "author_email": "peterv@propagandism.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 17878266.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "editor/composer/src/nsComposerCommandsUpdater.cpp", - "editor/composer/src/nsComposerCommandsUpdater.h", - "layout/base/nsDocumentViewer.cpp", - "layout/base/tests/Makefile.in", - "layout/base/tests/test_bug471126.html", - "layout/generic/nsFrameSelection.h", - "layout/generic/nsSelection.cpp" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "layout/generic", - "editor", - "editor/composer", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "d7c6fc72e3cd032ee4c24f903d58730336372dd3", - "author": "Kai Engert ", - "bug_id": 473837, - "desc": "Backout 6c571dc80a99, bug 473837", - "pushdate": "2009-01-16 19:16:17", - "backsout": [ - "6c571dc80a99" - ], - "backedoutby": "", - "author_email": "kaie@kuix.de", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 19572297.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "dbm/Makefile.in", - "dbm/include/mcom_db.h", - "dbm/src/h_bigkey.c", - "dbm/src/h_page.c", - "dbm/src/hash.c", - "dbm/src/hash_buf.c", - "dbm/src/mktemp.c", - "dbm/src/snprintf.c", - "dbm/tests/Makefile.in", - "dbm/tests/dbmtest.pkg", - "security/coreconf/WINCE.mk", - "security/coreconf/WINCE3.0.mk", - "security/coreconf/config.mk", - "security/dbm/Makefile", - "security/nss/Makefile", - "security/nss/cmd/bltest/blapitest.c", - "security/nss/cmd/bltest/tests/seed_cbc/ciphertext0", - "security/nss/cmd/bltest/tests/seed_cbc/iv0", - "security/nss/cmd/bltest/tests/seed_cbc/key0", - "security/nss/cmd/bltest/tests/seed_cbc/numtests", - "security/nss/cmd/bltest/tests/seed_cbc/plaintext0", - "security/nss/cmd/bltest/tests/seed_ecb/ciphertext0", - "security/nss/cmd/bltest/tests/seed_ecb/iv0", - "security/nss/cmd/bltest/tests/seed_ecb/key0", - "security/nss/cmd/bltest/tests/seed_ecb/numtests", - "security/nss/cmd/bltest/tests/seed_ecb/plaintext0", - "security/nss/cmd/certutil/certutil.c", - "security/nss/cmd/pk11mode/pk11mode.c", - "security/nss/cmd/platlibs.mk", - "security/nss/cmd/shlibsign/Makefile", - "security/nss/cmd/shlibsign/mangle/Makefile", - "security/nss/cmd/shlibsign/shlibsign.c", - "security/nss/cmd/signtool/list.c", - "security/nss/cmd/symkeyutil/symkeyutil.c", - "security/nss/cmd/vfychain/vfychain.c", - "security/nss/lib/certdb/cert.h", - "security/nss/lib/certdb/certdb.c", - "security/nss/lib/certdb/certi.h", - "security/nss/lib/certdb/certt.h", - "security/nss/lib/certdb/crl.c", - "security/nss/lib/certdb/genname.c", - "security/nss/lib/certdb/stanpcertdb.c", - "security/nss/lib/certdb/xauthkid.c", - "security/nss/lib/certdb/xbsconst.c", - "security/nss/lib/certdb/xconst.c", - "security/nss/lib/certhigh/certvfypkix.c", - "security/nss/lib/certhigh/certvfypkixprint.c", - "security/nss/lib/certhigh/ocsp.c", - "security/nss/lib/certhigh/ocspi.h", - "security/nss/lib/ckfw/Makefile", - "security/nss/lib/ckfw/builtins/certdata.c", - "security/nss/lib/ckfw/builtins/certdata.txt", - "security/nss/lib/ckfw/builtins/config.mk", - "security/nss/lib/ckfw/builtins/nssckbi.h", - "security/nss/lib/crmf/crmffut.h", - "security/nss/lib/cryptohi/hasht.h", - "security/nss/lib/cryptohi/keythi.h", - "security/nss/lib/cryptohi/manifest.mn", - "security/nss/lib/cryptohi/sechash.h", - "security/nss/lib/dev/devslot.c", - "security/nss/lib/dev/devutil.c", - "security/nss/lib/freebl/Makefile", - "security/nss/lib/freebl/aeskeywrap.c", - "security/nss/lib/freebl/alg2268.c", - "security/nss/lib/freebl/alghmac.c", - "security/nss/lib/freebl/arcfive.c", - "security/nss/lib/freebl/arcfour.c", - "security/nss/lib/freebl/blapi.h", - "security/nss/lib/freebl/blapit.h", - "security/nss/lib/freebl/camellia.c", - "security/nss/lib/freebl/config.mk", - "security/nss/lib/freebl/des.c", - "security/nss/lib/freebl/desblapi.c", - "security/nss/lib/freebl/dh.c", - "security/nss/lib/freebl/dsa.c", - "security/nss/lib/freebl/ec.c", - "security/nss/lib/freebl/freebl_hash.def", - "security/nss/lib/freebl/hasht.h", - "security/nss/lib/freebl/intel-aes.h", - "security/nss/lib/freebl/intel-aes.s", - "security/nss/lib/freebl/ldvector.c", - "security/nss/lib/freebl/loader.c", - "security/nss/lib/freebl/loader.h", - "security/nss/lib/freebl/manifest.mn", - "security/nss/lib/freebl/md2.c", - "security/nss/lib/freebl/md5.c", - "security/nss/lib/freebl/mpi/mpcpucache.c", - "security/nss/lib/freebl/mpi/mpcpucache_amd64.s", - "security/nss/lib/freebl/mpi/mpcpucache_x86.s", - "security/nss/lib/freebl/mpi/mpi.h", - "security/nss/lib/freebl/mpi/mpprime.c", - "security/nss/lib/freebl/nsslowhash.c", - "security/nss/lib/freebl/nsslowhash.h", - "security/nss/lib/freebl/pqg.c", - "security/nss/lib/freebl/prng_fips1861.c", - "security/nss/lib/freebl/rawhash.c", - "security/nss/lib/freebl/rijndael.c", - "security/nss/lib/freebl/rsa.c", - "security/nss/lib/freebl/sechash.h", - "security/nss/lib/freebl/seed.c", - "security/nss/lib/freebl/seed.h", - "security/nss/lib/freebl/sha512.c", - "security/nss/lib/freebl/sha_fast.c", - "security/nss/lib/freebl/shvfy.c", - "security/nss/lib/freebl/stubs.c", - "security/nss/lib/freebl/stubs.h", - "security/nss/lib/freebl/sysrand.c", - "security/nss/lib/freebl/tlsprfalg.c", - "security/nss/lib/jar/jarfile.c", - "security/nss/lib/libpkix/include/pkix.h", - "security/nss/lib/libpkix/include/pkix_certstore.h", - "security/nss/lib/libpkix/include/pkix_crlsel.h", - "security/nss/lib/libpkix/include/pkix_errorstrings.h", - "security/nss/lib/libpkix/include/pkix_params.h", - "security/nss/lib/libpkix/include/pkix_pl_pki.h", - "security/nss/lib/libpkix/include/pkix_revchecker.h", - "security/nss/lib/libpkix/include/pkix_sample_modules.h", - "security/nss/lib/libpkix/include/pkixt.h", - "security/nss/lib/libpkix/pkix/checker/manifest.mn", - "security/nss/lib/libpkix/pkix/checker/pkix_crlchecker.c", - "security/nss/lib/libpkix/pkix/checker/pkix_crlchecker.h", - "security/nss/lib/libpkix/pkix/checker/pkix_defaultcrlchecker.c", - "security/nss/lib/libpkix/pkix/checker/pkix_defaultcrlchecker.h", - "security/nss/lib/libpkix/pkix/checker/pkix_defaultrevchecker.c", - "security/nss/lib/libpkix/pkix/checker/pkix_defaultrevchecker.h", - "security/nss/lib/libpkix/pkix/checker/pkix_ekuchecker.c", - "security/nss/lib/libpkix/pkix/checker/pkix_ekuchecker.h", - "security/nss/lib/libpkix/pkix/checker/pkix_ocspchecker.c", - "security/nss/lib/libpkix/pkix/checker/pkix_ocspchecker.h", - "security/nss/lib/libpkix/pkix/checker/pkix_revocationchecker.c", - "security/nss/lib/libpkix/pkix/checker/pkix_revocationchecker.h", - "security/nss/lib/libpkix/pkix/checker/pkix_revocationmethod.c", - "security/nss/lib/libpkix/pkix/checker/pkix_revocationmethod.h", - "security/nss/lib/libpkix/pkix/crlsel/pkix_crlselector.c", - "security/nss/lib/libpkix/pkix/crlsel/pkix_crlselector.h", - "security/nss/lib/libpkix/pkix/params/pkix_procparams.c", - "security/nss/lib/libpkix/pkix/params/pkix_procparams.h", - "security/nss/lib/libpkix/pkix/params/pkix_trustanchor.c", - "security/nss/lib/libpkix/pkix/results/pkix_verifynode.c", - "security/nss/lib/libpkix/pkix/store/pkix_store.c", - "security/nss/lib/libpkix/pkix/store/pkix_store.h", - "security/nss/lib/libpkix/pkix/top/pkix_build.c", - "security/nss/lib/libpkix/pkix/top/pkix_build.c.orig", - "security/nss/lib/libpkix/pkix/top/pkix_build.h", - "security/nss/lib/libpkix/pkix/top/pkix_validate.c", - "security/nss/lib/libpkix/pkix/top/pkix_validate.c.orig", - "security/nss/lib/libpkix/pkix/top/pkix_validate.h", - "security/nss/lib/libpkix/pkix/util/pkix_error.c", - "security/nss/lib/libpkix/pkix/util/pkix_list.c", - "security/nss/lib/libpkix/pkix/util/pkix_logger.c", - "security/nss/lib/libpkix/pkix/util/pkix_logger.h", - "security/nss/lib/libpkix/pkix/util/pkix_tools.c", - "security/nss/lib/libpkix/pkix/util/pkix_tools.h", - "security/nss/lib/libpkix/pkix_pl_nss/module/manifest.mn", - "security/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_aiamgr.c", - "security/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_colcertstore.c", - "security/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ekuchecker.c", - "security/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ekuchecker.h", - "security/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_httpcertstore.c", - "security/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_httpdefaultclient.c", - "security/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_httpdefaultclient.h", - "security/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapcertstore.c", - "security/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_nsscontext.c", - "security/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_nsscontext.h", - "security/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_pk11certstore.c", - "security/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_cert.c", - "security/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_certpolicymap.c", - "security/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_crl.h", - "security/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_date.c", - "security/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_ocsprequest.c", - "security/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_ocsprequest.h", - "security/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_ocspresponse.c", - "security/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_ocspresponse.h", - "security/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_x500name.c", - "security/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_common.h", - "security/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_lifecycle.c", - "security/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_lifecycle.h", - "security/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c", - "security/nss/lib/nss/nss.def", - "security/nss/lib/nss/nss.h", - "security/nss/lib/pk11wrap/manifest.mn", - "security/nss/lib/pk11wrap/pk11akey.c", - "security/nss/lib/pk11wrap/pk11err.c", - "security/nss/lib/pk11wrap/pk11init.h", - "security/nss/lib/pk11wrap/pk11mech.c", - "security/nss/lib/pk11wrap/pk11merge.c", - "security/nss/lib/pk11wrap/pk11obj.c", - "security/nss/lib/pk11wrap/pk11slot.c", - "security/nss/lib/pk11wrap/secmod.h", - "security/nss/lib/pk11wrap/secmodi.h", - "security/nss/lib/pk11wrap/secmodt.h", - "security/nss/lib/pki/tdcache.c", - "security/nss/lib/smime/config.mk", - "security/nss/lib/softoken/Makefile", - "security/nss/lib/softoken/config.mk", - "security/nss/lib/softoken/legacydb/config.mk", - "security/nss/lib/softoken/manifest.mn", - "security/nss/lib/softoken/pk11init.h", - "security/nss/lib/softoken/pk11pars.h", - "security/nss/lib/softoken/pkcs11.c", - "security/nss/lib/softoken/pkcs11c.c", - "security/nss/lib/softoken/pkcs11t.h", - "security/nss/lib/softoken/pkcs11u.c", - "security/nss/lib/softoken/sdb.c", - "security/nss/lib/softoken/secmodt.h", - "security/nss/lib/softoken/sftkdb.c", - "security/nss/lib/softoken/sftkdb.h", - "security/nss/lib/softoken/sftkpars.c", - "security/nss/lib/softoken/softkver.h", - "security/nss/lib/softoken/softoken.h", - "security/nss/lib/sqlite/config.mk", - "security/nss/lib/ssl/config.mk", - "security/nss/lib/ssl/ssl3con.c", - "security/nss/lib/ssl/ssl3gthr.c", - "security/nss/lib/ssl/sslenum.c", - "security/nss/lib/ssl/sslimpl.h", - "security/nss/lib/ssl/sslinfo.c", - "security/nss/lib/ssl/sslmutex.c", - "security/nss/lib/ssl/sslmutex.h", - "security/nss/lib/ssl/sslproto.h", - "security/nss/lib/ssl/sslsnce.c", - "security/nss/lib/ssl/sslsock.c", - "security/nss/lib/ssl/sslt.h", - "security/nss/lib/ssl/win32err.c", - "security/nss/lib/util/nssutil.def", - "security/nss/lib/util/secitem.c", - "security/nss/lib/util/secoid.c", - "security/nss/lib/util/secoidt.h", - "security/nss/tests/README.txt", - "security/nss/tests/all.sh", - "security/nss/tests/chains/chains.sh", - "security/nss/tests/chains/scenarios/aia.cfg", - "security/nss/tests/chains/scenarios/anypolicy.cfg", - "security/nss/tests/chains/scenarios/anypolicywithlevel.cfg", - "security/nss/tests/chains/scenarios/bridge.cfg", - "security/nss/tests/chains/scenarios/bridgewithaia.cfg", - "security/nss/tests/chains/scenarios/bridgewithhalfaia.cfg", - "security/nss/tests/chains/scenarios/bridgewithpolicyextensionandmapping.cfg", - "security/nss/tests/chains/scenarios/dsa.cfg", - "security/nss/tests/chains/scenarios/extension.cfg", - "security/nss/tests/chains/scenarios/extension2.cfg", - "security/nss/tests/chains/scenarios/mapping.cfg", - "security/nss/tests/chains/scenarios/mapping2.cfg", - "security/nss/tests/chains/scenarios/megabridge_3_2.cfg", - "security/nss/tests/chains/scenarios/realcerts.cfg", - "security/nss/tests/chains/scenarios/scenarios", - "security/nss/tests/cipher/cipher.txt", - "security/nss/tests/cipher/symmkey.txt", - "security/nss/tests/dbtests/dbtests.sh", - "security/nss/tests/libpkix/libpkix.sh", - "security/nss/tests/memleak/ignored", - "security/nss/tests/memleak/memleak.sh", - "security/nss/tests/merge/merge.sh", - "security/nss/tests/ssl/ssl.sh" - ], - "components": [ - "NSS::Libraries" - ], - "directories": [ - "security/nss", - "dbm", - "security", - "security/dbm", - "dbm/include", - "dbm/tests", - "dbm/src", - "security/coreconf" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "f5436f305f3a8917c651c798be17d63aa051cdaa", - "author": "L. David Baron ", - "bug_id": 462188, - "desc": "Backed out changeset 9b832d90d637 (bug 462188) due to 7 test failures on Linux and 1 on Windows (0 on Mac).", - "pushdate": "2009-01-16 23:01:46", - "backsout": [ - "9b832d90d637" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 21355427.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "editor/libeditor/html/nsHTMLEditRules.cpp", - "layout/generic/test/test_backspace_delete.html" - ], - "components": [], - "directories": [ - "editor/libeditor", - "layout", - "layout/generic", - "editor" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "79043b10f34c01764ab4e9a542fdd48257d0e369", - "author": "Igor Bukanov ", - "bug_id": 473721, - "desc": "Backed out changeset 562d8990f33a - with the fix for bug 473721 this workaround is no longer necessary.", - "pushdate": "2009-01-19 01:17:02", - "backsout": [ - "562d8990f33a" - ], - "backedoutby": "", - "author_email": "igor@mir2.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 18502923.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsapi.cpp" - ], - "components": [ - "Core::JavaScript Engine" - ], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "6f2d2ef53d758d199d16ddb88ca982ecd6e67845", - "author": "L. David Baron ", - "bug_id": 468645, - "desc": "Backed out changeset 6849ce51dfef (patch 3 from bug 468645) to fix bug 472353.", - "pushdate": "2009-01-20 21:59:23", - "backsout": [ - "6849ce51dfef" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 21697284.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/base/nsCSSFrameConstructor.cpp", - "layout/base/nsPresContext.cpp" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "929d0451c9b5ac985511f01d48d8347a5a788276", - "author": "Benjamin Smedberg ", - "bug_id": 470971, - "desc": "Backed out changeset 700bca4b693f due to reftest failure (bug 470971)", - "pushdate": "2009-01-21 00:00:44", - "backsout": [ - "700bca4b693f" - ], - "backedoutby": "", - "author_email": "benjamin@smedbergs.us", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 26464280.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "config/autoconf.mk.in", - "configure.in", - "js/src/xpconnect/shell/Makefile.in", - "js/src/xpconnect/shell/xpcshell.cpp" - ], - "components": [ - "Firefox Build System::General" - ], - "directories": [ - "js/src", - "config", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "3b4b3555239203608307ebb31e790e9345ac145c", - "author": "Benjamin Smedberg ", - "bug_id": 269538, - "desc": "Backed out changeset 525e42406396, bug 269538 (jscpucfg-ectomy) due to Windows TUnit bustage.", - "pushdate": "2009-01-21 22:35:10", - "backsout": [ - "525e42406396" - ], - "backedoutby": "", - "author_email": "benjamin@smedbergs.us", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 26545546.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "build/autoconf/moznbytetype.m4", - "js/src/Makefile.in", - "js/src/build/autoconf/moznbytetype.m4", - "js/src/configure.in", - "js/src/js-config.h.in", - "js/src/jscpucfg.cpp", - "js/src/jscpucfg.h", - "js/src/jslock.cpp", - "js/src/jslong.cpp", - "js/src/jslong.h", - "js/src/jstypes.h", - "js/src/prmjtime.cpp" - ], - "components": [ - "Firefox Build System::General", - "Core::JavaScript Engine" - ], - "directories": [ - "build/autoconf", - "js", - "js/src", - "build" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "835e35dd544217fb4247d8060836be95497c9b59", - "author": "Daniel Holbert ", - "bug_id": 466410, - "desc": "Backed out changeset e6566d187edd (bug 466410) on suspicion of causing linux reftest failures in 'ogg-video/basic-1.html' and 'ogg-video/zoomed-1.html'", - "pushdate": "2009-01-22 06:37:50", - "backsout": [ - "e6566d187edd" - ], - "backedoutby": "", - "author_email": "dholbert@cs.stanford.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 21775197.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/media/video/src/nsMediaDecoder.cpp", - "content/media/video/src/nsOggDecoder.cpp", - "content/media/video/test/test_onloadedmetadata.html" - ], - "components": [], - "directories": [ - "content", - "content/media" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "d27fe7afe11e276037b99a04b77481c687cd8241", - "author": "Peter Van der Beken ", - "bug_id": 464954, - "desc": "Backed out changeset 9fc993ac4427 (Bug 464954: Update Access-Control implementation to latest draft and fix some bugs. r/sr=bz) to fix orange.", - "pushdate": "2009-01-22 13:53:44", - "backsout": [ - "9fc993ac4427" - ], - "backedoutby": "", - "author_email": "peterv@propagandism.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 18568251.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/base/public/nsContentUtils.h", - "content/base/src/nsContentUtils.cpp", - "content/base/src/nsCrossSiteListenerProxy.cpp", - "content/base/src/nsCrossSiteListenerProxy.h", - "content/base/src/nsXMLHttpRequest.cpp", - "content/base/test/Makefile.in", - "content/base/test/file_CrossSiteXHR_inner.html", - "content/base/test/file_CrossSiteXHR_inner.jar", - "content/base/test/file_CrossSiteXHR_inner_data.sjs", - "content/base/test/file_CrossSiteXHR_server.sjs", - "content/base/test/test_CrossSiteXHR.html", - "docshell/test/Makefile.in", - "dom/src/base/nsGlobalWindow.cpp", - "netwerk/base/public/nsNetUtil.h", - "testing/mochitest/server.js" - ], - "components": [ - "Testing::Mochitest" - ], - "directories": [ - "netwerk/base", - "dom/src", - "netwerk", - "docshell", - "testing/mochitest", - "dom", - "docshell/test", - "content/base", - "content", - "testing" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "dffc4413419a5c0b6a88fb51ef81a37bc6c814fe", - "author": "Peter Van der Beken ", - "bug_id": 464676, - "desc": "Back out changeset 32dc89bc34ad (Fix for bug 464676 (Cycle collector sometimes unlinks live cycles). r=bent, sr=jst.) to fix orange.", - "pushdate": "2009-01-23 16:06:05", - "backsout": [ - "32dc89bc34ad" - ], - "backedoutby": "", - "author_email": "peterv@propagandism.org", - "reviewers": [ - "bent", - "jst" - ], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 18662592.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/xpconnect/src/nsXPConnect.cpp", - "js/src/xpconnect/src/xpcwrappednativescope.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "173e57cbce97ad7ed4710aacf6486fba023ddbc7", - "author": "Peter Van der Beken ", - "bug_id": 462106, - "desc": "Backed out changeset 97907892496f (Bug 462106 - Clear the data copied to clipboard inside the private browsing mode after leaving it; r,sr=roc a=blocking-firefox3.1+) to fix orange.", - "pushdate": "2009-01-24 13:28:32", - "backsout": [ - "97907892496f" - ], - "backedoutby": "", - "author_email": "peterv@propagandism.org", - "reviewers": [ - "roc", - "blocking-firefox3.1" - ], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 18739539.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "widget/src/gtk2/nsClipboard.cpp", - "widget/src/gtk2/nsClipboard.h", - "widget/src/photon/nsClipboard.cpp", - "widget/src/photon/nsClipboard.h", - "widget/src/qt/nsClipboard.cpp", - "widget/src/qt/nsClipboard.h", - "widget/src/xpwidgets/Makefile.in", - "widget/src/xpwidgets/nsBaseClipboard.cpp", - "widget/src/xpwidgets/nsBaseClipboard.h", - "widget/src/xpwidgets/nsClipboardPrivacyHandler.cpp", - "widget/src/xpwidgets/nsClipboardPrivacyHandler.h", - "widget/tests/Makefile.in", - "widget/tests/test_bug462106.xul" - ], - "components": [], - "directories": [ - "widget/tests", - "widget", - "widget/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "6718f7e66778dc26dadec571c108b29b37df0822", - "author": "Peter Van der Beken ", - "bug_id": 464676, - "desc": "Back out changeset e919f0c1dfa9 (Fix for bug 464676 (Cycle collector sometimes unlinks live cycles). r=bent, sr=jst.) to try to fix red on leak tinderboxes.", - "pushdate": "2009-01-24 22:14:11", - "backsout": [ - "e919f0c1dfa9" - ], - "backedoutby": "", - "author_email": "peterv@propagandism.org", - "reviewers": [ - "bent", - "jst" - ], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 18771078.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/xpconnect/src/nsXPConnect.cpp", - "js/src/xpconnect/src/xpcwrappednativescope.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "4d6ed97f82f3c86991c11b90f7f8aabc19f05094", - "author": "Peter Van der Beken ", - "bug_id": 464676, - "desc": "Backed out changeset 81428de4b5dc (Fix for bug 464676 (Cycle collector sometimes unlinks live cycles). r=bent, sr=jst.).", - "pushdate": "2009-01-26 08:11:21", - "backsout": [ - "81428de4b5dc" - ], - "backedoutby": "", - "author_email": "peterv@propagandism.org", - "reviewers": [ - "bent", - "jst" - ], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 18893308.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/xpconnect/src/nsXPConnect.cpp", - "js/src/xpconnect/src/xpcprivate.h", - "js/src/xpconnect/src/xpcwrappednative.cpp", - "js/src/xpconnect/src/xpcwrappednativescope.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "73bfcdaa1a516a2c25ca7d9f6106ba30a3ca11c5", - "author": "Igor Bukanov ", - "bug_id": 474801, - "desc": "Backed out changeset 6657640cbbb2 - the patch from the bug 474801 caused leak and crash test failures", - "pushdate": "2009-01-27 21:40:57", - "backsout": [ - "6657640cbbb2" - ], - "backedoutby": "", - "author_email": "igor@mir2.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 19267558.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "dom/src/base/nsJSEnvironment.cpp", - "js/src/jsapi.cpp", - "js/src/jsapi.h", - "js/src/jscntxt.h", - "js/src/jsgc.cpp", - "js/src/shell/js.cpp" - ], - "components": [ - "Core::JavaScript Engine" - ], - "directories": [ - "dom", - "js", - "dom/src", - "js/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "2bed5117722e6f63ebf50ec02562946c129bed3f", - "author": "Andreas Gal ", - "bug_id": 462027, - "desc": "Backed out changeset 17663da1b840 (bug 462027).", - "pushdate": "2009-01-27 21:40:57", - "backsout": [ - "17663da1b840" - ], - "backedoutby": "", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 18092979.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/builtins.tbl", - "js/src/imacro_asm.js.in", - "js/src/imacros.c.out", - "js/src/imacros.jsasm", - "js/src/jsbuiltins.cpp", - "js/src/jscntxt.h", - "js/src/jsgc.cpp", - "js/src/jsinterp.cpp", - "js/src/jsopcode.tbl", - "js/src/jstracer.cpp", - "js/src/jstracer.h", - "js/src/trace-test.js" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "6e5e50fe7ca61ddf885122b938f825af08c81ee2", - "author": "Andreas Gal ", - "bug_id": 24106, - "desc": "Backed out changeset 05cbbc9f1ae2, which backed out bug 24106 (so this is re-landing 24106).", - "pushdate": "2009-01-27 21:40:57", - "backsout": [ - "05cbbc9f1ae2" - ], - "backedoutby": "", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 18092979.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jstracer.cpp", - "js/src/trace-test.js" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "799a55cfae002c1a1b0e8a6a089b3b3c007f0668", - "author": "Andreas Gal ", - "bug_id": 474771, - "desc": "Backed out changeset d50d3681b94e (attempted re-landing of 474771).", - "pushdate": "2009-01-28 18:59:34", - "backsout": [ - "d50d3681b94e" - ], - "backedoutby": "", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 18169696.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jscntxt.h", - "js/src/jsinterp.cpp", - "js/src/jsobj.cpp", - "js/src/jsstaticcheck.h", - "js/src/jstracer.cpp", - "js/src/trace-test.js" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "0cbd3800749f3bffc26297d2307262908464c554", - "author": "L. David Baron ", - "bug_id": 475128, - "desc": "Backed out changeset 24917a339f2e (bug 475128) because it didn't patch the IsRoot check nsRuleNode::Sweep, which it needs to.", - "pushdate": "2009-01-29 22:37:28", - "backsout": [ - "24917a339f2e" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 22477169.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/base/nsPresContext.h", - "layout/style/nsStyleContext.cpp", - "layout/style/nsStyleSet.cpp", - "layout/style/nsStyleSet.h" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "layout/style", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "6efc982bb051993be0ab7d97a8efc25745dbb945", - "author": "Justin Dolske ", - "bug_id": 451352, - "desc": "Backout changeset 8dd2e82503cd (bug 451352), it broke password manager.", - "pushdate": "2009-01-30 20:02:08", - "backsout": [ - "8dd2e82503cd" - ], - "backedoutby": "", - "author_email": "dolske@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 19701372.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/components/passwordmgr/content/passwordManager.js" - ], - "components": [], - "directories": [ - "toolkit/components", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "6a6d6d76ebc8fad447f77cf8d537dea380361855", - "author": "shaver@mozilla.org", - "bug_id": 469625, - "desc": "Backed out changeset 7246c4dcf997 (bug 469625) due to trace-test.js failures.", - "pushdate": "2009-01-31 19:45:42", - "backsout": [ - "7246c4dcf997" - ], - "backedoutby": "", - "author_email": "shaver@mozilla.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 27399378.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsarray.cpp", - "js/src/jsemit.cpp", - "js/src/jsobj.cpp", - "js/src/jstracer.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "143ac6c35cfacf6ec31a1cb8bce9d295d3889aaf", - "author": "Ted Mielczarek ", - "bug_id": 460515, - "desc": "Backed out changeset 7c7ec4bd36a6 (bug 460515 - Remove assumption that xpcshell etc in same directory as app executable) because it's broken on OS X.", - "pushdate": "2009-02-04 20:43:14", - "backsout": [ - "7c7ec4bd36a6" - ], - "backedoutby": "", - "author_email": "ted.mielczarek@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 27748430.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "build/pgo/automation.py.in", - "testing/mochitest/runtests.py.in", - "testing/mochitest/server.js" - ], - "components": [ - "Testing::Mochitest" - ], - "directories": [ - "testing/mochitest", - "build/pgo", - "testing", - "build" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "674246a64ed25f818e72b1982cc20168502c2988", - "author": "L. David Baron ", - "bug_id": 474655, - "desc": "Backed out changeset eec3076f3bab (Bug 474655, Warn when nsIDOMCSSStyleDeclaration::GetPropertyCSSValue is called) because we trigger the warning too much ourselves (Bug 475311)", - "pushdate": "2009-02-04 21:25:12", - "backsout": [ - "eec3076f3bab" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 22991233.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "dom/locales/en-US/chrome/layout/css.properties", - "layout/style/nsCSSRules.cpp", - "layout/style/nsComputedDOMStyle.cpp", - "layout/style/nsComputedDOMStyle.h", - "layout/style/nsDOMCSSDeclaration.cpp", - "layout/style/nsStyleUtil.cpp", - "layout/style/nsStyleUtil.h" - ], - "components": [ - "Core::DOM: CSS Object Model", - "Core::CSS Parsing and Computation" - ], - "directories": [ - "dom", - "layout", - "dom/locales", - "layout/style" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "c5044341110e9e79210a7547b1a3e75f01b6e58a", - "author": "L. David Baron ", - "bug_id": 476345, - "desc": "Backed out changeset d9eff1fb5e60 (bug 476345) due to Windows bustage.", - "pushdate": "2009-02-04 22:39:56", - "backsout": [ - "d9eff1fb5e60" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 22995717.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/style/nsCSSValue.h" - ], - "components": [ - "Core::CSS Parsing and Computation" - ], - "directories": [ - "layout/style", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "c1dabe868c329e83fc95183ba931d0da48e7d865", - "author": "Peter Van der Beken ", - "bug_id": 445087, - "desc": "Backed out changeset d679ac3a8de0 (Bug 445087. Add extra pixel on each side of the glyph's black box returned by GetGlyphOutlineW, to avoid clipping ClearType pixels. r=vlad) to fix orange.", - "pushdate": "2009-02-05 14:35:14", - "backsout": [ - "d679ac3a8de0" - ], - "backedoutby": "", - "author_email": "peterv@propagandism.org", - "reviewers": [ - "vlad" - ], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 19780341.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "gfx/cairo/README", - "gfx/cairo/cairo/src/cairo-win32-font.c", - "gfx/cairo/win32-cleartype-clipping.patch" - ], - "components": [ - "Core::Graphics" - ], - "directories": [ - "gfx/cairo", - "gfx" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "1dabc169a3c4f6afea7acec07e2fe983bdce6186", - "author": "Benjamin Smedberg ", - "bug_id": 476643, - "desc": "Backed out changeset 64d5b7cdeb69 - bug 476643 because of Windows bustage (js_LeaveTrace is not a friend API)", - "pushdate": "2009-02-06 01:20:20", - "backsout": [ - "64d5b7cdeb69" - ], - "backedoutby": "", - "author_email": "benjamin@smedbergs.us", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 27851456.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "dom/src/base/nsJSEnvironment.cpp", - "dom/src/base/nsJSEnvironment.h", - "js/src/xpconnect/src/xpcprivate.h", - "js/src/xpconnect/src/xpcwrappedjsclass.cpp" - ], - "components": [], - "directories": [ - "dom", - "js", - "dom/src", - "js/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "27d46c33caddcf8b00b874230d539e283e9ddfa2", - "author": "L. David Baron ", - "bug_id": 460882, - "desc": "Backed out changeset 423eea03fb54 (Bug 460882) for being one of the two changesets that's causing chrome and a11y tests not to start.", - "pushdate": "2009-02-07 04:58:06", - "backsout": [ - "423eea03fb54" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 23191207.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "dom/src/base/nsDOMClassInfo.cpp", - "js/src/jsdbgapi.cpp", - "js/src/jsinterp.cpp", - "js/src/jsscope.h", - "js/src/xpconnect/idl/nsIXPConnect.idl", - "js/src/xpconnect/src/XPCCrossOriginWrapper.cpp", - "js/src/xpconnect/src/nsXPConnect.cpp", - "js/src/xpconnect/src/xpccallcontext.cpp", - "js/src/xpconnect/src/xpcprivate.h", - "js/src/xpconnect/src/xpcwrappednativejsops.cpp", - "js/src/xpconnect/src/xpcwrappednativescope.cpp" - ], - "components": [], - "directories": [ - "dom", - "js", - "dom/src", - "js/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "7a4f890c862d61c7d8d26f656a1f438e81c6c9d5", - "author": "Phil Ringnalda ", - "bug_id": 320954, - "desc": "Backed out changeset c8d43645a578 (bug 320954) for burning leak tests", - "pushdate": "2009-02-07 22:40:16", - "backsout": [ - "c8d43645a578" - ], - "backedoutby": "", - "author_email": "philringnalda@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 20554026.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "security/manager/ssl/src/nsNSSModule.cpp" - ], - "components": [], - "directories": [ - "security/manager", - "security" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "7581b9caf300976be72d4be0a74041533a586396", - "author": "Marco Bonardo ", - "bug_id": 469831, - "desc": "Backed out changeset 92a47ed3d54e - Michael Ventnor \u2014 Bug 469831 - need gtk2 drawing code for test plugin - due to mochitest leak failures (crash?)", - "pushdate": "2009-02-10 00:37:27", - "backsout": [ - "92a47ed3d54e" - ], - "backedoutby": "", - "author_email": "mbonardo@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 474492.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "modules/plugin/test/reftest/reftest.list", - "modules/plugin/test/testplugin/Makefile.in", - "modules/plugin/test/testplugin/nptest_gtk2.cpp" - ], - "components": [], - "directories": [ - "modules/plugin", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "4bb932755d5c4d2a79ce867b256e95cbb3118fcd", - "author": "Marco Zehe ", - "bug_id": 475522, - "desc": "Backout changeset 4767c92771e6 from bug 475522 because of burning tree", - "pushdate": "2009-02-12 14:37:38", - "backsout": [ - "4767c92771e6" - ], - "backedoutby": "", - "author_email": "marco.zehe@googlemail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 21778772.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "accessible/src/base/Makefile.in", - "accessible/src/base/nsAccessibilityAtomList.h", - "accessible/src/base/nsTextAttrs.cpp", - "accessible/src/base/nsTextAttrs.h", - "accessible/src/base/nsTextUtils.cpp", - "accessible/src/base/nsTextUtils.h", - "accessible/src/html/nsHyperTextAccessible.cpp", - "accessible/src/html/nsHyperTextAccessible.h", - "accessible/tests/mochitest/attributes.js", - "accessible/tests/mochitest/test_textattrs.html" - ], - "components": [ - "Core::Disability Access APIs" - ], - "directories": [ - "accessible/src", - "accessible", - "accessible/tests" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "8dccd5c59ad200b7187886fd95d6847b11d03607", - "author": "L. David Baron ", - "bug_id": 474536, - "desc": "Backed out changeset 4bd7dd7645c2 (Bug 474536)", - "pushdate": "2009-02-19 20:38:52", - "backsout": [ - "4bd7dd7645c2" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 24284453.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "modules/libjar/nsJARChannel.cpp", - "modules/libjar/nsJARChannel.h", - "netwerk/base/public/nsChannelProperties.h", - "netwerk/base/public/nsNetStrings.h", - "netwerk/base/public/nsNetUtil.h", - "netwerk/base/src/nsNetStrings.cpp", - "netwerk/protocol/http/src/nsHttpAtomList.h", - "netwerk/streamconv/test/Makefile.in", - "uriloader/base/nsURILoader.cpp" - ], - "components": [ - "Core::DOM: Navigation", - "Core::Networking: JAR" - ], - "directories": [ - "netwerk/base", - "modules/libjar", - "netwerk/protocol", - "netwerk", - "uriloader/base", - "netwerk/streamconv", - "uriloader", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "0590dccbad048faa84af827bb1eaefe978e95260", - "author": "L. David Baron ", - "bug_id": 322475, - "desc": "Backed out changeset fde0b361f25e (bug 322475, main patch) due to Mac talos startup failures and hitting the NS_ABORT_IF_FALSE in SetupBackgroundClip, which may be related.", - "pushdate": "2009-02-19 21:52:07", - "backsout": [ - "fde0b361f25e" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 24288848.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "accessible/src/base/nsTextAttrs.cpp", - "content/html/content/src/nsGenericHTMLElement.cpp", - "content/mathml/content/src/nsMathMLElement.cpp", - "gfx/thebes/public/gfxContext.h", - "layout/base/nsCSSRendering.cpp", - "layout/base/nsDisplayList.cpp", - "layout/base/nsLayoutUtils.cpp", - "layout/base/nsPresContext.cpp", - "layout/base/nsStyleConsts.h", - "layout/generic/nsFrame.cpp", - "layout/reftests/backgrounds/aqua-32x32.png", - "layout/reftests/backgrounds/blue-32x32.png", - "layout/reftests/backgrounds/fallback-color-1.xhtml", - "layout/reftests/backgrounds/fallback-color-2.xhtml", - "layout/reftests/backgrounds/fallback-color-3.xhtml", - "layout/reftests/backgrounds/fallback-color-4.xhtml", - "layout/reftests/backgrounds/fallback-color-5.xhtml", - "layout/reftests/backgrounds/fallback-color-6.xhtml", - "layout/reftests/backgrounds/fallback-color-7.xhtml", - "layout/reftests/backgrounds/fallback-color-8.xhtml", - "layout/reftests/backgrounds/fallback-color-9.xhtml", - "layout/reftests/backgrounds/fallback-color-ref.xhtml", - "layout/reftests/backgrounds/fuchsia-32x32.png", - "layout/reftests/backgrounds/layers-layer-count-1-ref.xhtml", - "layout/reftests/backgrounds/layers-layer-count-2-ref.xhtml", - "layout/reftests/backgrounds/layers-layer-count-cascade-1.xhtml", - "layout/reftests/backgrounds/layers-layer-count-cascade-2.xhtml", - "layout/reftests/backgrounds/layers-layer-count-inheritance-1.xhtml", - "layout/reftests/backgrounds/layers-layer-count-inheritance-2.xhtml", - "layout/reftests/backgrounds/layers-stacking-order-ref.xhtml", - "layout/reftests/backgrounds/layers-stacking-order.xhtml", - "layout/reftests/backgrounds/lime-32x32.png", - "layout/reftests/backgrounds/malformed.png", - "layout/reftests/backgrounds/red-32x32.png", - "layout/reftests/backgrounds/reftest.list", - "layout/reftests/backgrounds/transparent-32x32.png", - "layout/reftests/backgrounds/yellow-32x32.png", - "layout/reftests/reftest.list", - "layout/style/nsCSSDataBlock.cpp", - "layout/style/nsCSSDeclaration.cpp", - "layout/style/nsCSSParser.cpp", - "layout/style/nsCSSPropList.h", - "layout/style/nsCSSProps.cpp", - "layout/style/nsCSSStruct.cpp", - "layout/style/nsCSSStruct.h", - "layout/style/nsComputedDOMStyle.cpp", - "layout/style/nsComputedDOMStyle.h", - "layout/style/nsRuleNode.cpp", - "layout/style/nsStyleStruct.cpp", - "layout/style/nsStyleStruct.h", - "layout/style/test/property_database.js", - "layout/style/test/test_shorthand_property_getters.html", - "layout/tables/nsTablePainter.cpp", - "layout/xul/base/src/tree/src/nsTreeBodyFrame.cpp", - "xpcom/glue/nsTArray.h" - ], - "components": [ - "Core::Layout", - "Core::DOM: CSS Object Model", - "Core::CSS Parsing and Computation" - ], - "directories": [ - "xpcom/glue", - "layout/generic", - "layout/tables", - "accessible/src", - "accessible", - "content/mathml", - "gfx/thebes", - "layout/xul", - "content", - "xpcom", - "content/html", - "layout/style", - "gfx", - "layout", - "layout/base", - "layout/reftests" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "6e008e161a0fed680d40e4f811254f51ece7b7bf", - "author": "Shawn Wilsher ", - "bug_id": 474749, - "desc": "Backed out changeset 690209fc5b6b (bug 474749) due to unit test failures.", - "pushdate": "2009-02-22 06:44:40", - "backsout": [ - "690209fc5b6b" - ], - "backedoutby": "", - "author_email": "me@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 7464381.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "media/liboggplay/src/liboggplay/oggplay_yuv2rgb.c", - "media/liboggplay/update.sh", - "media/liboggplay/yuv_fix_mmx.patch" - ], - "components": [], - "directories": [ - "media", - "media/liboggplay" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "0e56b82242f20ff27016b2816acf79363ce9190e", - "author": "Shawn Wilsher ", - "bug_id": 479543, - "desc": "Backed out changeset f8926cd4a7b2 (bug 479543) since it breaks unit tests in\ndebug builds.", - "pushdate": "2009-02-23 22:35:40", - "backsout": [ - "f8926cd4a7b2" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 22834109.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "storage/src/mozStorageConnection.cpp" - ], - "components": [], - "directories": [ - "storage/src", - "storage" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "87097563da9eb475bae4354e8b4953530d70ab25", - "author": "L. David Baron ", - "bug_id": 476245, - "desc": "Backed out changeset a328b5ae57e0 (bug 476245) for causing failures of test_videocontrols.html across platforms (although Linux hasn't cycled yet).", - "pushdate": "2009-02-24 21:39:20", - "backsout": [ - "a328b5ae57e0" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 24720081.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/base/public/nsIContent.h", - "content/base/public/nsINode.h", - "content/base/src/nsGenericDOMDataNode.cpp", - "content/base/src/nsGenericElement.cpp", - "content/xbl/src/nsXBLBinding.cpp", - "layout/base/nsCSSFrameConstructor.cpp" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "content/base", - "content", - "content/xbl", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "596366a3c3413b7b303f75f0beb8e2ebb36ca3a9", - "author": "Jonas Sicking ", - "bug_id": 479521, - "desc": "Backed out changeset 4130ff1e52f3 (bug 479521) due to test failures.", - "pushdate": "2009-02-24 23:38:22", - "backsout": [ - "4130ff1e52f3" - ], - "backedoutby": "", - "author_email": "jonas@sicking.cc", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 17628917.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "build/automation.py.in", - "content/base/src/nsCrossSiteListenerProxy.cpp", - "content/base/src/nsCrossSiteListenerProxy.h", - "content/base/src/nsXMLHttpRequest.cpp", - "content/base/test/file_CrossSiteXHR_server.sjs", - "content/base/test/test_CrossSiteXHR.html", - "modules/libpref/src/init/all.js", - "netwerk/protocol/http/src/nsHttpChannel.cpp", - "netwerk/protocol/http/src/nsHttpHandler.cpp", - "netwerk/protocol/http/src/nsHttpHandler.h" - ], - "components": [], - "directories": [ - "modules/libpref", - "netwerk/protocol", - "netwerk", - "build", - "content/base", - "content", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "34ee950622aa5c2f92b3143421fee9eef6952c5a", - "author": "Andreas Gal ", - "bug_id": 24968, - "desc": "Back out a2b6a4c57a05 (bug 24968). Cross-platform orange.", - "pushdate": "2009-02-25 09:05:38", - "backsout": [ - "a2b6a4c57a05" - ], - "backedoutby": "", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 20553260.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jstracer.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "939103e7a4abcecf6035ba8ff205410c958e4ec1", - "author": "Dave Camp ", - "bug_id": 479393, - "desc": "Backed out changeset 209a7cc3150e (Bug 479393)", - "pushdate": "2009-02-26 05:51:42", - "backsout": [ - "209a7cc3150e" - ], - "backedoutby": "", - "author_email": "dcamp@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 21180440.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "security/manager/ssl/src/nsNSSComponent.cpp" - ], - "components": [], - "directories": [ - "security/manager", - "security" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "c395bb2cf30ab1144bc0e41da4e3accd44209589", - "author": "Johnathan Nightingale ", - "bug_id": 479499, - "desc": "Backed out changeset fdbe218cdcc7 - Causing crashtest hangs on linux. Tracked by bug 479499.", - "pushdate": "2009-03-03 14:47:16", - "backsout": [ - "fdbe218cdcc7" - ], - "backedoutby": "", - "author_email": "johnath@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 16886130.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "parser/htmlparser/tests/crashtests/crashtests.list" - ], - "components": [ - "Core::XML" - ], - "directories": [ - "parser/htmlparser", - "parser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "f8b100b574f316c48f77427708315ac7921e00a4", - "author": "Igor Bukanov ", - "bug_id": 480700, - "desc": "Backed out changeset 5befb6301e9b for bug 480700 - the patch broke 32-bit linux build.", - "pushdate": "2009-03-09 18:47:08", - "backsout": [ - "5befb6301e9b" - ], - "backedoutby": "", - "author_email": "igor@mir2.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 22799529.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsbit.h", - "js/src/jslog2.cpp", - "js/src/jsprvtd.h", - "js/src/jstypes.h", - "js/src/jsutil.cpp" - ], - "components": [ - "Core::JavaScript Engine" - ], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "14bc4dbf10cb18b41e6a7e2f79039e6cd0eb71ea", - "author": "Joe Drew ", - "bug_id": 480267, - "desc": "Backed out changeset 635b1c8783a6 - bug 480267 - because it seems to have\ncaused a reftest failure.", - "pushdate": "2009-03-10 16:26:18", - "backsout": [ - "635b1c8783a6" - ], - "backedoutby": "", - "author_email": "joe@drew.ca", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 17568506.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "gfx/thebes/public/gfxFontUtils.h", - "gfx/thebes/src/gfxFontUtils.cpp", - "gfx/thebes/src/gfxQuartzFontCache.mm", - "gfx/thebes/src/gfxWindowsFonts.cpp", - "layout/reftests/font-face/reftest.list", - "layout/reftests/font-face/synthetic-weight-style-ref.html", - "layout/reftests/font-face/synthetic-weight-style.html" - ], - "components": [ - "Core::CSS Parsing and Computation" - ], - "directories": [ - "layout/reftests", - "gfx/thebes", - "gfx", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "44cd744842422ca215443df7c86c7490686773ef", - "author": "Karl Tomlinson ", - "bug_id": 481881, - "desc": "backout dac7c3176b33 from bug 481881", - "pushdate": "2009-03-11 04:09:25", - "backsout": [ - "dac7c3176b33" - ], - "backedoutby": "", - "author_email": "karlt+@karlt.net", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 21344141.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/generic/nsFrame.cpp", - "layout/generic/nsTextFrameThebes.cpp", - "layout/inspector/src/inDeepTreeWalker.cpp", - "layout/inspector/src/inDeepTreeWalker.h", - "layout/tables/nsCellMap.cpp", - "layout/tables/nsCellMap.h", - "layout/tables/nsTableFrame.cpp" - ], - "components": [ - "Core::Layout: Tables" - ], - "directories": [ - "layout/inspector", - "layout/generic", - "layout/tables", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "ad96e3d1ab56c30857baab534d1b353d121dc61f", - "author": "Ehsan Akhgari ", - "bug_id": 463256, - "desc": "Backed out changeset 113bda3be8df (bug 463256) due to test failures on Mac", - "pushdate": "2009-03-12 10:10:39", - "backsout": [ - "113bda3be8df" - ], - "backedoutby": "", - "author_email": "ehsan.akhgari@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 21044305.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/components/privatebrowsing/src/nsPrivateBrowsingService.js", - "browser/components/privatebrowsing/test/browser/Makefile.in", - "browser/components/privatebrowsing/test/browser/browser_privatebrowsing_sslsite_transition.js", - "toolkit/components/downloads/test/unit/test_privatebrowsing.js" - ], - "components": [], - "directories": [ - "toolkit/components", - "browser/components", - "toolkit", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "73379b9ca6ce67e1c061de3b7f450f3f613f2915", - "author": "Ehsan Akhgari ", - "bug_id": 464800, - "desc": "Backed out changeset 69322c1764ff (bug 464800) due to test failures on Mac", - "pushdate": "2009-03-12 10:10:39", - "backsout": [ - "69322c1764ff" - ], - "backedoutby": "", - "author_email": "ehsan.akhgari@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 21044305.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/mozapps/downloads/content/downloads.js", - "toolkit/mozapps/downloads/tests/chrome/Makefile.in", - "toolkit/mozapps/downloads/tests/chrome/test_privatebrowsing_title.xul" - ], - "components": [], - "directories": [ - "toolkit/mozapps", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "fbd0299ee9becb64574199c7c2ba727bf1a0055f", - "author": "Graydon Hoare ", - "bug_id": 482800, - "desc": "Backout changeset 5e0cc374593c for bug 482800.", - "pushdate": "2009-03-13 01:56:58", - "backsout": [ - "5e0cc374593c" - ], - "backedoutby": "", - "author_email": "graydon@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 21285817.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jstracer.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "6ed065a2a0d82c1ecf4d7e15b8fbbca18075bb0d", - "author": "Igor Bukanov ", - "bug_id": 437325, - "desc": "Backed out changeset 57de81309176 - bug 437325 - due to mochitest leaks on tinderbox", - "pushdate": "2009-03-13 20:34:49", - "backsout": [ - "57de81309176" - ], - "backedoutby": "", - "author_email": "igor@mir2.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 23151590.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsapi.cpp", - "js/src/jscntxt.cpp", - "js/src/jscntxt.h", - "js/src/jsdbgapi.cpp", - "js/src/jsfun.cpp", - "js/src/jsgc.cpp", - "js/src/jsgc.h", - "js/src/jsinterp.cpp", - "js/src/jsinterp.h", - "js/src/jsprvtd.h", - "js/src/jsscript.cpp", - "js/src/jstracer.cpp", - "js/src/jstracer.h", - "js/src/xpconnect/src/xpcjsruntime.cpp" - ], - "components": [ - "Core::JavaScript Engine" - ], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "96fb69f98cc2c3ad734d89428918adfcf945a885", - "author": "Andreas Gal ", - "bug_id": 457065, - "desc": "Backed out changeset 10b781704400 (bug 457065).", - "pushdate": "2009-03-16 22:50:44", - "backsout": [ - "10b781704400" - ], - "backedoutby": "", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 22244366.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jstracer.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "33c68c49af9dc25355f3855452fc043c2c84b4d2", - "author": "Dave Townsend ", - "bug_id": 482659, - "desc": "Backed out changeset 55d159b75f41 from bug 482659.", - "pushdate": "2009-03-17 11:09:29", - "backsout": [ - "55d159b75f41" - ], - "backedoutby": "", - "author_email": "dtownsend@oxymoronical.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 24798327.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/base/src/nsFrameLoader.cpp", - "content/html/document/test/Makefile.in", - "content/html/document/test/test_bug482659.html", - "layout/reftests/bugs/482659-1-ref.html", - "layout/reftests/bugs/482659-1a.html", - "layout/reftests/bugs/482659-1b.html", - "layout/reftests/bugs/482659-1c.html", - "layout/reftests/bugs/482659-1d.html", - "layout/reftests/bugs/reftest.list", - "netwerk/build/nsNetCID.h", - "netwerk/build/nsNetModule.cpp", - "netwerk/protocol/about/src/nsAboutProtocolHandler.cpp", - "netwerk/protocol/about/src/nsAboutProtocolHandler.h", - "netwerk/test/unit/test_aboutblank.js" - ], - "components": [ - "Core::Layout", - "Core::Networking" - ], - "directories": [ - "netwerk/protocol", - "netwerk", - "netwerk/test", - "netwerk/build", - "content/base", - "content", - "content/html", - "layout", - "layout/reftests" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "830772ae7bf41b96b9ad77c2ce55215d2f1d93cf", - "author": "Andreas Gal ", - "bug_id": 479110, - "desc": "Backed out changeset e71cb3993380 (bug 479110).", - "pushdate": "2009-03-18 06:58:56", - "backsout": [ - "e71cb3993380" - ], - "backedoutby": "", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 22360058.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jstracer.cpp", - "js/src/jstracer.h", - "js/src/math-trace-tests.js" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "0424abce8965b1c95c1a6ff6a893bf21b43d6253", - "author": "Gavin Sharp ", - "bug_id": 483634, - "desc": "Back out changeset 699fc684188c from bug 483634 due to unit test failures", - "pushdate": "2009-03-19 04:56:56", - "backsout": [ - "699fc684188c" - ], - "backedoutby": "", - "author_email": "gavin@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 23859563.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "dom/base/nsDOMWindowUtils.cpp", - "dom/interfaces/base/nsIDOMWindowUtils.idl", - "dom/tests/mochitest/general/Makefile.in", - "dom/tests/mochitest/general/test_domWindowUtils_scrollXY.html" - ], - "components": [ - "Core::DOM: Core & HTML" - ], - "directories": [ - "dom", - "dom/interfaces", - "dom/tests", - "dom/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "100e73c6c9e8b3315fb8b9eaec85dbb9b8b3040a", - "author": "Peter Van der Beken ", - "bug_id": 484764, - "desc": "Backed out changeset 83944488fbe6 (Preparation for fix for bug 484764 (Set up DOM prototype chains from PostCreateProto instead of PostCreate)).", - "pushdate": "2009-03-24 13:47:26", - "backsout": [ - "83944488fbe6" - ], - "backedoutby": "", - "author_email": "peterv@propagandism.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 23838273.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "dom/base/nsDOMClassInfo.cpp", - "dom/base/nsDOMClassInfo.h" - ], - "components": [], - "directories": [ - "dom", - "dom/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "124a3d626d1e059fc0c13ff7549df8e2a69e6b34", - "author": "Igor Bukanov ", - "bug_id": 437325, - "desc": "Backed out changeset e117c22cc1d1 - the landed patch for bug 437325 has a shutdown leak.", - "pushdate": "2009-03-24 17:50:03", - "backsout": [ - "e117c22cc1d1" - ], - "backedoutby": "", - "author_email": "igor@mir2.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 24092104.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsapi.cpp", - "js/src/jscntxt.cpp", - "js/src/jscntxt.h", - "js/src/jsdbgapi.cpp", - "js/src/jsfun.cpp", - "js/src/jsgc.cpp", - "js/src/jsgc.h", - "js/src/jsinterp.cpp", - "js/src/jsinterp.h", - "js/src/jsprvtd.h", - "js/src/jsscript.cpp", - "js/src/jstracer.cpp", - "js/src/jstracer.h", - "js/src/xpconnect/src/xpcjsruntime.cpp" - ], - "components": [ - "Core::JavaScript Engine" - ], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "a43288e59420590e1df46280dace88f4db30dbbe", - "author": "Dave Townsend ", - "bug_id": 484764, - "desc": "Backed out changeset 94673272aeab from bug 484764: Set up DOM prototype chain\nfrom nsDOMClassInfo::PostCreateProto.", - "pushdate": "2009-03-26 14:54:57", - "backsout": [ - "94673272aeab" - ], - "backedoutby": "", - "author_email": "dtownsend@oxymoronical.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 25589455.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "dom/base/nsDOMClassInfo.cpp", - "dom/base/nsDOMClassInfo.h" - ], - "components": [], - "directories": [ - "dom", - "dom/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "cc7213e51266945396c0f03f6bdff7e804e087b6", - "author": "Shawn Wilsher ", - "bug_id": 483980, - "desc": "Backed out changeset 2d1f7c7c7a2b (bug 483980)", - "pushdate": "2009-03-27 22:34:53", - "backsout": [ - "2d1f7c7c7a2b" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 25598862.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/components/places/src/nsNavBookmarks.cpp", - "toolkit/components/places/src/nsNavBookmarks.h", - "toolkit/components/places/src/nsNavHistory.cpp", - "toolkit/components/places/src/nsNavHistory.h", - "toolkit/components/places/src/nsNavHistoryExpire.cpp", - "toolkit/components/places/src/nsPlacesDBFlush.js", - "toolkit/components/places/src/nsPlacesMacros.h", - "toolkit/components/places/tests/unit/nsDummyObserver.js", - "toolkit/components/places/tests/unit/test_bookmark_catobs.js", - "toolkit/components/places/tests/unit/test_history_catobs.js" - ], - "components": [], - "directories": [ - "toolkit/components", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "711c24ec63bd94e0c7d1c7993cc341ab60ec5b7e", - "author": "Igor Bukanov ", - "bug_id": 485178, - "desc": "Backed out changeset 0b36bddcefe4 for bug 485178 to fix compiletaion errors on some platforms.", - "pushdate": "2009-03-29 20:42:33", - "backsout": [ - "0b36bddcefe4" - ], - "backedoutby": "", - "author_email": "igor@mir2.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 24534454.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/shell/js.cpp" - ], - "components": [ - "Core::JavaScript Engine" - ], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "b39c0c0674fb5f8f3cab177d0f25dae8096fcde3", - "author": "Marco Bonardo ", - "bug_id": 427633, - "desc": "backout changeset 459c8e138144 \u2013 test for Bug 427633, due to failures on OS X", - "pushdate": "2009-03-30 22:59:52", - "backsout": [ - "459c8e138144" - ], - "backedoutby": "", - "author_email": "mbonardo@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 4702237.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/components/places/tests/chrome/Makefile.in", - "browser/components/places/tests/chrome/test_editBookmarkOverlay.xul" - ], - "components": [], - "directories": [ - "browser/components", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "70cd538fd48aa091def4ad7c5df003283988b487", - "author": "Benjamin Smedberg ", - "bug_id": 485390, - "desc": "Backed out changeset f66fabdbc090 (bug 485390) - the problem is not in utils.lockFile, and you shouldn't really need to hold the file descriptor", - "pushdate": "2009-03-31 14:39:36", - "backsout": [ - "f66fabdbc090" - ], - "backedoutby": "", - "author_email": "benjamin@smedbergs.us", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 32478612.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "config/utils.py" - ], - "components": [], - "directories": [ - "config" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "54dda9955a7fdc7f5dd468ce8ea06c3fa004f617", - "author": "L. David Baron ", - "bug_id": 395668, - "desc": "Backed out changeset 5263468b1d60 (bug 395668) due to unit test timeouts in test_tooltip.xul and test_tooltip_noautohide.xul", - "pushdate": "2009-04-02 18:06:14", - "backsout": [ - "5263468b1d60" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 27904095.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/xul/base/src/nsXULTooltipListener.cpp", - "layout/xul/base/src/nsXULTooltipListener.h" - ], - "components": [], - "directories": [ - "layout/xul", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "b025b0c6e3806754edac056176b8132b80b37c08", - "author": "Joe Drew ", - "bug_id": 481926, - "desc": "Backed out changeset 6f3c2171bbb2:\nBug 481926 - Rewrite color management component. r=joe,ted sr=vlad", - "pushdate": "2009-04-03 20:29:59", - "backsout": [ - "6f3c2171bbb2" - ], - "backedoutby": "", - "author_email": "joe@drew.ca", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 19656727.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "config/autoconf.mk.in", - "config/static-config.mk", - "configure.in", - "content/canvas/src/Makefile.in", - "gfx/Makefile.in", - "gfx/qcms/Makefile.in", - "gfx/qcms/iccread.c", - "gfx/qcms/qcms.h", - "gfx/qcms/qcmsint.h", - "gfx/qcms/qcmstypes.h", - "gfx/qcms/transform.c", - "gfx/src/thebes/Makefile.in", - "gfx/thebes/public/gfxPlatform.h", - "gfx/thebes/public/gfxPlatformGtk.h", - "gfx/thebes/public/gfxPlatformMac.h", - "gfx/thebes/public/gfxQtPlatform.h", - "gfx/thebes/public/gfxWindowsPlatform.h", - "gfx/thebes/src/Makefile.in", - "gfx/thebes/src/gfxContext.cpp", - "gfx/thebes/src/gfxPattern.cpp", - "gfx/thebes/src/gfxPlatform.cpp", - "gfx/thebes/src/gfxPlatformGtk.cpp", - "gfx/thebes/src/gfxPlatformMac.cpp", - "gfx/thebes/src/gfxQtPlatform.cpp", - "gfx/thebes/src/gfxWindowsPlatform.cpp", - "gfx/thebes/test/Makefile.in", - "layout/base/Makefile.in", - "layout/mathml/Makefile.in", - "layout/svg/base/src/Makefile.in", - "modules/libpr0n/build/Makefile.in", - "modules/libpr0n/decoders/gif/Makefile.in", - "modules/libpr0n/decoders/gif/nsGIFDecoder2.cpp", - "modules/libpr0n/decoders/jpeg/Makefile.in", - "modules/libpr0n/decoders/jpeg/nsJPEGDecoder.cpp", - "modules/libpr0n/decoders/jpeg/nsJPEGDecoder.h", - "modules/libpr0n/decoders/png/Makefile.in", - "modules/libpr0n/decoders/png/nsPNGDecoder.cpp", - "modules/libpr0n/decoders/png/nsPNGDecoder.h", - "modules/libpr0n/test/reftest/pngsuite-ancillary/ccwn2c08.html", - "modules/libpr0n/test/reftest/pngsuite-ancillary/ccwn3p08.html", - "toolkit/library/libxul-rules.mk", - "toolkit/toolkit-makefiles.sh", - "toolkit/toolkit-tiers.mk", - "widget/src/build/Makefile.in", - "widget/src/cocoa/Makefile.in", - "widget/src/cocoa/nsCocoaWindow.mm", - "widget/src/gtk2/Makefile.in", - "widget/src/os2/Makefile.in", - "widget/src/qt/Makefile.in", - "widget/src/windows/Makefile.in", - "widget/src/xpwidgets/Makefile.in", - "widget/src/xpwidgets/nsXPLookAndFeel.cpp" - ], - "components": [ - "Core::Graphics", - "Firefox Build System::General" - ], - "directories": [ - "content/canvas", - "widget", - "toolkit", - "modules/libpr0n", - "config", - "gfx/thebes", - "layout/mathml", - "layout/svg", - "gfx/qcms", - "content", - "widget/src", - "toolkit/library", - "gfx/src", - "gfx", - "layout", - "layout/base", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "a55a5e3c4276ff60142187e0e6c230032323337c", - "author": "Andreas Gal ", - "bug_id": 484693, - "desc": "Backed out changeset b512be855093 (bug 484693). See bug for details.", - "pushdate": "2009-04-06 01:25:14", - "backsout": [ - "b512be855093" - ], - "backedoutby": "", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 23981636.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jscntxt.h", - "js/src/jstracer.cpp", - "js/src/jstracer.h" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "6eca563de031cb584b8a86fdd74238c3357fd198", - "author": "Jason Orendorff ", - "bug_id": 484693, - "desc": "Backout changeset 143e997c858e (bug 484693) because it caused crashes on Mac tinderboxen.", - "pushdate": "2009-04-08 04:43:16", - "backsout": [ - "143e997c858e" - ], - "backedoutby": "", - "author_email": "jorendorff@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 27070325.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jscntxt.h", - "js/src/jstracer.cpp", - "js/src/jstracer.h", - "js/src/trace-test.js" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "3c7cd3a8f785ec9a09fb4b5244f1c095f26c6fc1", - "author": "Boris Zbarsky ", - "bug_id": 484448, - "desc": "Backed out changeset 0ea22856b5d9 (bug 484448).", - "pushdate": "2009-04-08 19:58:02", - "backsout": [ - "0ea22856b5d9" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 23665990.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/base/src/nsGenericDOMDataNode.cpp", - "content/base/src/nsGenericDOMDataNode.h", - "layout/base/nsCSSFrameConstructor.cpp", - "layout/base/nsCSSFrameConstructor.h", - "layout/generic/nsTextFrameThebes.cpp", - "layout/mathml/nsMathMLmtableFrame.h", - "layout/reftests/table-anonymous-boxes/3-blocks-ref.html", - "layout/reftests/table-anonymous-boxes/3-tables-ref.html", - "layout/reftests/table-anonymous-boxes/372641-1-ref.xhtml", - "layout/reftests/table-anonymous-boxes/372641-1a.xhtml", - "layout/reftests/table-anonymous-boxes/372641-1b.xhtml", - "layout/reftests/table-anonymous-boxes/372641-1c.xhtml", - "layout/reftests/table-anonymous-boxes/3x3-cols-ref.html", - "layout/reftests/table-anonymous-boxes/3x3-ref.html", - "layout/reftests/table-anonymous-boxes/dynamic-removal-14.html", - "layout/reftests/table-anonymous-boxes/infer-cells-1.html", - "layout/reftests/table-anonymous-boxes/reftest.list", - "layout/reftests/table-anonymous-boxes/white-space-1-ref.html", - "layout/reftests/table-anonymous-boxes/white-space-1.html", - "layout/reftests/table-anonymous-boxes/white-space-10.html", - "layout/reftests/table-anonymous-boxes/white-space-11.html", - "layout/reftests/table-anonymous-boxes/white-space-12.html", - "layout/reftests/table-anonymous-boxes/white-space-13.html", - "layout/reftests/table-anonymous-boxes/white-space-14.html", - "layout/reftests/table-anonymous-boxes/white-space-15.html", - "layout/reftests/table-anonymous-boxes/white-space-16.html", - "layout/reftests/table-anonymous-boxes/white-space-17.html", - "layout/reftests/table-anonymous-boxes/white-space-18.html", - "layout/reftests/table-anonymous-boxes/white-space-19.html", - "layout/reftests/table-anonymous-boxes/white-space-2.html", - "layout/reftests/table-anonymous-boxes/white-space-20.html", - "layout/reftests/table-anonymous-boxes/white-space-21.html", - "layout/reftests/table-anonymous-boxes/white-space-22.html", - "layout/reftests/table-anonymous-boxes/white-space-23.html", - "layout/reftests/table-anonymous-boxes/white-space-24.html", - "layout/reftests/table-anonymous-boxes/white-space-25.html", - "layout/reftests/table-anonymous-boxes/white-space-26.html", - "layout/reftests/table-anonymous-boxes/white-space-3.html", - "layout/reftests/table-anonymous-boxes/white-space-4.html", - "layout/reftests/table-anonymous-boxes/white-space-5.html", - "layout/reftests/table-anonymous-boxes/white-space-6.html", - "layout/reftests/table-anonymous-boxes/white-space-7.html", - "layout/reftests/table-anonymous-boxes/white-space-8.html", - "layout/reftests/table-anonymous-boxes/white-space-9.html", - "layout/reftests/table-anonymous-boxes/white-space-pre-1.html", - "layout/reftests/table-anonymous-boxes/white-space-pre-ref.html", - "layout/reftests/table-anonymous-boxes/white-space-ref.html", - "layout/tables/nsTableColFrame.h", - "layout/tables/nsTableColGroupFrame.h", - "layout/tables/nsTableFrame.h", - "layout/tables/nsTableOuterFrame.h", - "layout/tables/nsTableRowFrame.h", - "layout/tables/nsTableRowGroupFrame.h" - ], - "components": [ - "Core::Layout", - "Core::Layout: Tables", - "Core::MathML" - ], - "directories": [ - "layout/generic", - "layout/tables", - "layout/mathml", - "content/base", - "content", - "layout/reftests", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "f12b13dbd0530765cb71c97e5c80a1da2af14038", - "author": "Boris Zbarsky ", - "bug_id": 483552, - "desc": "Backed out changeset 510bd328a29d (bug 483552) due to landing on orange tree.", - "pushdate": "2009-04-09 16:04:18", - "backsout": [ - "510bd328a29d" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 23738366.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/content/widgets/scrollbox.xml" - ], - "components": [], - "directories": [ - "toolkit/content", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "781e16e5112d9d75ea5c5045c35d27ed20c462ba", - "author": "Boris Zbarsky ", - "bug_id": 486933, - "desc": "Backed out changeset 86c8e18f20eb (bug 486933) due to landing on orange tree.", - "pushdate": "2009-04-09 16:04:18", - "backsout": [ - "86c8e18f20eb" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 23738366.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/base/nsCSSRendering.cpp", - "layout/base/nsCSSRendering.h", - "layout/base/nsLayoutUtils.cpp", - "layout/reftests/image/reftest.list" - ], - "components": [ - "Core::Layout", - "Core::Layout: Images, Video, and HTML Frames" - ], - "directories": [ - "layout/reftests", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "a3185147886829944da575f05300b2f5599db234", - "author": "Boris Zbarsky ", - "bug_id": 485563, - "desc": "Backed out changeset 0233d2bb8a07 (bug 485563) on suspicion of causing intermittent leak orange.", - "pushdate": "2009-04-09 16:04:18", - "backsout": [ - "0233d2bb8a07" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 23738366.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/components/sessionstore/src/nsSessionStore.js", - "browser/components/sessionstore/test/browser/Makefile.in", - "browser/components/sessionstore/test/browser/browser_485563.js" - ], - "components": [], - "directories": [ - "browser/components", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "2d6fa1ee649a41e608968c51ff46c2a002ef1d23", - "author": "Boris Zbarsky ", - "bug_id": 419612, - "desc": "Backed out changeset 17abd3beeabf (bug 419612) on suspicion of causing intermittent leak orange.", - "pushdate": "2009-04-09 16:04:18", - "backsout": [ - "17abd3beeabf" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 23738366.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/base/content/test/Makefile.in", - "browser/base/content/test/browser_bug419612.js" - ], - "components": [], - "directories": [ - "browser/base", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "1a29fad0c1bbab453c89bf79dec70018e96eff0a", - "author": "Boris Zbarsky ", - "bug_id": 481598, - "desc": "Backed out changeset b1237eca3670 (bug 481598) on suspicion of causing intermittent leak orange.", - "pushdate": "2009-04-09 16:04:18", - "backsout": [ - "b1237eca3670" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 23738366.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/components/privatebrowsing/src/nsPrivateBrowsingService.js" - ], - "components": [], - "directories": [ - "browser/components", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "fca91e13946daba978e4a7f5d394abbfac8aeec3", - "author": "Boris Zbarsky ", - "bug_id": 486821, - "desc": "Backed out changeset 716fc2e4f7d3 (bug 486821) on suspicion of causing intermittent leak orange.", - "pushdate": "2009-04-09 16:04:18", - "backsout": [ - "716fc2e4f7d3" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 23738366.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/content/widgets/autocomplete.xml", - "toolkit/content/widgets/richlistbox.xml" - ], - "components": [], - "directories": [ - "toolkit/content", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "686e89bbc76494c130f48b5fb11cbabd9b6c3ae4", - "author": "Boris Zbarsky ", - "bug_id": 473732, - "desc": "Backed out changeset 50940a1eb1e9 (bug 473732) because it causes Linux unit\ntest orange.", - "pushdate": "2009-04-09 18:48:24", - "backsout": [ - "50940a1eb1e9" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 23748212.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "accessible/src/base/nsARIAMap.cpp", - "accessible/src/base/nsARIAMap.h", - "accessible/src/base/nsAccUtils.cpp", - "accessible/src/base/nsAccessible.cpp", - "accessible/tests/mochitest/Makefile.in", - "accessible/tests/mochitest/test_actions_aria.html", - "accessible/tests/mochitest/test_actions_doc.html", - "accessible/tests/mochitest/test_nsIAccessibleDocument.html" - ], - "components": [ - "Core::Disability Access APIs" - ], - "directories": [ - "accessible/src", - "accessible", - "accessible/tests" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "c0542ed38b98aebddcfdc1ee39bbd6774cfeb04e", - "author": "Justin Dolske ", - "bug_id": 487719, - "desc": "Backed out changeset dde29bfff639 (bug 487719)", - "pushdate": "2009-04-13 08:30:54", - "backsout": [ - "dde29bfff639" - ], - "backedoutby": "", - "author_email": "dolske@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 25967098.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/content/widgets/videocontrols.xml" - ], - "components": [], - "directories": [ - "toolkit/content", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "86fdfc20dccb81d978f338c850e5a028aad4e850", - "author": "Justin Dolske ", - "bug_id": 475317, - "desc": "Backed out changeset dddef115ddd2 (bug 475317)", - "pushdate": "2009-04-13 08:30:54", - "backsout": [ - "dddef115ddd2" - ], - "backedoutby": "", - "author_email": "dolske@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 25967098.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/content/widgets/videocontrols.css", - "toolkit/content/widgets/videocontrols.xml", - "toolkit/themes/pinstripe/global/jar.mn", - "toolkit/themes/pinstripe/global/media/videocontrols.css", - "toolkit/themes/pinstripe/global/media/volumeThumb.png", - "toolkit/themes/winstripe/global/jar.mn", - "toolkit/themes/winstripe/global/media/videocontrols.css", - "toolkit/themes/winstripe/global/media/volumeThumb.png" - ], - "components": [], - "directories": [ - "toolkit/content", - "toolkit", - "toolkit/themes" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "f82e3ab11e63ed737b47fcdc7ec9369931e4cb10", - "author": "Justin Dolske ", - "bug_id": 475318, - "desc": "Backed out changeset 1e38c7369a3d (bug 475318)", - "pushdate": "2009-04-13 08:30:54", - "backsout": [ - "1e38c7369a3d" - ], - "backedoutby": "", - "author_email": "dolske@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 25967098.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/content/tests/widgets/test_videocontrols.html", - "toolkit/content/widgets/videocontrols.css", - "toolkit/content/widgets/videocontrols.xml", - "toolkit/themes/pinstripe/global/jar.mn", - "toolkit/themes/pinstripe/global/media/scrubberThumb.png", - "toolkit/themes/pinstripe/global/media/scrubberThumbWide.png", - "toolkit/themes/pinstripe/global/media/videocontrols.css", - "toolkit/themes/winstripe/global/jar.mn", - "toolkit/themes/winstripe/global/media/scrubberThumb.png", - "toolkit/themes/winstripe/global/media/scrubberThumbWide.png", - "toolkit/themes/winstripe/global/media/videocontrols.css" - ], - "components": [ - "Toolkit::Video/Audio Controls" - ], - "directories": [ - "toolkit/content", - "toolkit", - "toolkit/themes" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "e9a0a746f0fa37a354e71dc69d4810d49e736b1f", - "author": "Boris Zbarsky ", - "bug_id": 477014, - "desc": "Backed out changeset 524ab31ef073 (bug 477014) in an attempt to fix the unit test orange on Mac.", - "pushdate": "2009-04-13 19:35:35", - "backsout": [ - "524ab31ef073" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 24096643.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/base/content/tabbrowser.xml", - "browser/base/content/test/Makefile.in", - "browser/base/content/test/browser_bug477014.js", - "toolkit/content/widgets/browser.xml" - ], - "components": [], - "directories": [ - "browser/base", - "toolkit", - "browser", - "toolkit/content" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "d7567548bc8f4af71f62079afafb1e00f20c5405", - "author": "Boris Zbarsky ", - "bug_id": 487631, - "desc": "Backed out changeset 05fd6a9c8ff7 (bug 487631) on suspicion of causing Windows unit test orange in CLOSED TREE.", - "pushdate": "2009-04-13 21:50:07", - "backsout": [ - "05fd6a9c8ff7" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 24104715.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/content/tests/chrome/Makefile.in", - "toolkit/content/tests/chrome/window_largemenu.xul", - "toolkit/content/tests/widgets/Makefile.in", - "toolkit/content/tests/widgets/test_contextmenu_list.xul", - "toolkit/content/tests/widgets/test_popupincontent.xul" - ], - "components": [], - "directories": [ - "toolkit/content", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "1e9079e22c18aadb40ebe1eba26c2cbf531bcfc2", - "author": "Andreas Gal ", - "bug_id": 487845, - "desc": "Backed out changeset 4c157cfe2289 (bug 487845).", - "pushdate": "2009-04-15 21:40:40", - "backsout": [ - "4c157cfe2289" - ], - "backedoutby": "", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 24832162.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jscntxt.h", - "js/src/jstracer.cpp", - "js/src/jstracer.h", - "js/src/trace-test.js" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "c221393049dcc32dfa4a15f763372da262a6f888", - "author": "Igor Bukanov ", - "bug_id": 480301, - "desc": "Backed out changeset f97f196dcb58 - bug 480301 needs more work", - "pushdate": "2009-04-16 00:13:30", - "backsout": [ - "f97f196dcb58" - ], - "backedoutby": "", - "author_email": "igor@mir2.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 26015911.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsapi.cpp", - "js/src/jsgc.cpp", - "js/src/jslock.cpp" - ], - "components": [ - "Core::JavaScript Engine" - ], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "64d7df1fe160a1e8f595e1d936c179699eba21ce", - "author": "Andreas Gal ", - "bug_id": 488203, - "desc": "Backed out changeset e8c23c42db7f (bug 488203) to see whether it causes the leak.", - "pushdate": "2009-04-18 15:37:12", - "backsout": [ - "e8c23c42db7f" - ], - "backedoutby": "062ea62f9bda22be55d94c71dc98e780d91342e6", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 25069554.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsinterp.cpp", - "js/src/jsinterp.h", - "js/src/jstracer.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "062ea62f9bda22be55d94c71dc98e780d91342e6", - "author": "Andreas Gal ", - "bug_id": 488203, - "desc": "Backed out changeset 64d7df1fe160 (re-landing 488203).", - "pushdate": "2009-04-18 15:37:12", - "backsout": [ - "64d7df1fe160" - ], - "backedoutby": "4273c0708552544e8a0317e84c02e515b0a02476", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 25069554.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsinterp.cpp", - "js/src/jsinterp.h", - "js/src/jstracer.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "4273c0708552544e8a0317e84c02e515b0a02476", - "author": "Andreas Gal ", - "bug_id": 488203, - "desc": "Backed out changeset 062ea62f9bda (backed out bug 488203 again).", - "pushdate": "2009-04-18 15:37:12", - "backsout": [ - "062ea62f9bda" - ], - "backedoutby": "", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 25069554.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsinterp.cpp", - "js/src/jsinterp.h", - "js/src/jstracer.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "5bd1161481752fa00ec6154dddf36fa239dd0dcc", - "author": "Andreas Gal ", - "bug_id": 487204, - "desc": "Backed out changeset d1a4ee3d0c59 (bug 487204, due to possible leak).", - "pushdate": "2009-04-18 15:37:12", - "backsout": [ - "d1a4ee3d0c59" - ], - "backedoutby": "324bb9dc8372bc9353711fffa97ecaa9c61eef31", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 25069554.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsarray.cpp", - "js/src/jsbuiltins.cpp", - "js/src/jsinterp.cpp", - "js/src/jsinterp.h", - "js/src/jsobj.cpp", - "js/src/jsobj.h", - "js/src/jsscope.cpp", - "js/src/jsscope.h", - "js/src/jstracer.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "324bb9dc8372bc9353711fffa97ecaa9c61eef31", - "author": "Andreas Gal ", - "bug_id": 487204, - "desc": "Backed out changeset 5bd116148175 (attempting to re-land bug 487204).", - "pushdate": "2009-04-18 15:37:12", - "backsout": [ - "5bd116148175" - ], - "backedoutby": "9c63c15b92b5b606f14fc7b07f51d9edf91cd6bd", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 25069554.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsarray.cpp", - "js/src/jsbuiltins.cpp", - "js/src/jsinterp.cpp", - "js/src/jsinterp.h", - "js/src/jsobj.cpp", - "js/src/jsobj.h", - "js/src/jsscope.cpp", - "js/src/jsscope.h", - "js/src/jstracer.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "9c63c15b92b5b606f14fc7b07f51d9edf91cd6bd", - "author": "Andreas Gal ", - "bug_id": 487204, - "desc": "Backed out changeset 324bb9dc8372 (bug 487204 is implicated in top site failures).", - "pushdate": "2009-04-18 15:37:12", - "backsout": [ - "324bb9dc8372" - ], - "backedoutby": "", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 25069554.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsarray.cpp", - "js/src/jsbuiltins.cpp", - "js/src/jsinterp.cpp", - "js/src/jsinterp.h", - "js/src/jsobj.cpp", - "js/src/jsobj.h", - "js/src/jsscope.cpp", - "js/src/jsscope.h", - "js/src/jstracer.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "c0a409243f7b5262a069d05a91a70f160c4e55c8", - "author": "Igor Bukanov ", - "bug_id": 488414, - "desc": "Backed out changeset f4662701526b (bug 488414) to fix !JS_THREADSAFE compilation errors", - "pushdate": "2009-04-20 18:44:02", - "backsout": [ - "f4662701526b" - ], - "backedoutby": "", - "author_email": "igor@mir2.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 26428143.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsapi.cpp", - "js/src/jsbuiltins.cpp", - "js/src/jscntxt.cpp", - "js/src/jscntxt.h", - "js/src/jsgc.cpp", - "js/src/jsgc.h", - "js/src/jsinterp.cpp", - "js/src/jsinterp.h", - "js/src/jsobj.cpp", - "js/src/jsscope.cpp", - "js/src/jsscope.h" - ], - "components": [ - "Core::JavaScript Engine" - ], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "f58de2414f51ac92548b9b52e2ee85abc9b35456", - "author": "Joe Drew ", - "bug_id": 67752, - "desc": "Backed out changeset 6a452e522e07 - Boris Zbarsky \u2013 Bug 67752. Implement interruptible reflow. r=roc,dbaron - because of apparent Tp hangs.", - "pushdate": "2009-04-22 03:13:36", - "backsout": [ - "6a452e522e07" - ], - "backedoutby": "", - "author_email": "joe@drew.ca", - "reviewers": [ - "dbaron", - "roc" - ], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 21236144.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/base/public/mozFlushType.h", - "content/base/src/nsDocument.cpp", - "content/events/src/nsEventStateManager.cpp", - "content/html/content/src/nsGenericHTMLElement.cpp", - "content/html/document/src/nsHTMLContentSink.cpp", - "content/xml/document/src/nsXMLContentSink.cpp", - "layout/base/nsIPresShell.h", - "layout/base/nsPresContext.cpp", - "layout/base/nsPresContext.h", - "layout/base/nsPresShell.cpp", - "layout/generic/nsAbsoluteContainingBlock.cpp", - "layout/generic/nsAbsoluteContainingBlock.h", - "layout/generic/nsBlockFrame.cpp", - "layout/generic/nsBlockFrame.h", - "layout/generic/nsColumnSetFrame.cpp", - "layout/generic/nsGfxScrollFrame.cpp", - "layout/generic/nsLineLayout.cpp", - "layout/reftests/bugs/67752-1-ref.html", - "layout/reftests/bugs/67752-1.html", - "layout/reftests/bugs/67752-2-ref.html", - "layout/reftests/bugs/67752-2.html", - "layout/reftests/bugs/reftest.list", - "layout/svg/base/src/nsSVGForeignObjectFrame.cpp", - "widget/public/nsIWidget.h", - "widget/src/cocoa/nsAppShell.mm", - "widget/src/cocoa/nsChildView.h", - "widget/src/cocoa/nsChildView.mm", - "widget/src/cocoa/nsCocoaWindow.h", - "widget/src/cocoa/nsCocoaWindow.mm", - "widget/src/gtk2/nsWindow.cpp", - "widget/src/gtk2/nsWindow.h", - "widget/src/os2/nsWindow.cpp", - "widget/src/os2/nsWindow.h", - "widget/src/windows/nsWindow.cpp", - "widget/src/windows/nsWindow.h", - "widget/src/xpwidgets/nsBaseWidget.cpp", - "widget/src/xpwidgets/nsBaseWidget.h" - ], - "components": [ - "Core::Layout: Columns", - "Core::Layout: Block and Inline", - "Core::Layout", - "Core::Layout: Scrolling and Overflow", - "Core::Layout: Positioned" - ], - "directories": [ - "widget", - "layout/generic", - "layout/svg", - "content/base", - "content", - "widget/public", - "widget/src", - "content/html", - "content/xml", - "layout", - "layout/base", - "content/events", - "layout/reftests" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "1a1611bb10630cda771042ef8089b7b6060c3f55", - "author": "Ehsan Akhgari ", - "bug_id": 489585, - "desc": "Backed out changeset 88f76db49467 (bug 489585) due to test failures on OS X", - "pushdate": "2009-04-23 07:16:09", - "backsout": [ - "88f76db49467" - ], - "backedoutby": "", - "author_email": "ehsan.akhgari@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 24662635.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "netwerk/test/unit/test_bug248970_cache.js" - ], - "components": [ - "Core::Networking" - ], - "directories": [ - "netwerk/test", - "netwerk" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "a0e5385d86c43e251b192f74e88de4b35753172f", - "author": "D\u00e3o Gottwald ", - "bug_id": 487250, - "desc": "Backed out changeset 69f84bd26700 (bug 487250) to fix browser_privatebrowsing_searchbar.js failure", - "pushdate": "2009-04-23 09:48:27", - "backsout": [ - "69f84bd26700" - ], - "backedoutby": "", - "author_email": "dao@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 27286570.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/base/content/browser.css", - "browser/themes/pinstripe/browser/browser.css", - "browser/themes/pinstripe/browser/searchbar.css", - "toolkit/content/tests/widgets/test_textbox_emptytext.xul", - "toolkit/content/textbox.css", - "toolkit/content/widgets/textbox.xml", - "toolkit/themes/gnomestripe/global/textbox.css", - "toolkit/themes/pinstripe/global/textbox.css", - "toolkit/themes/winstripe/global/textbox-aero.css", - "toolkit/themes/winstripe/global/textbox.css" - ], - "components": [ - "Firefox::General" - ], - "directories": [ - "browser/base", - "toolkit/content", - "toolkit", - "browser/themes", - "browser", - "toolkit/themes" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "0cb354f894d1ca1c72edf04893250e2d2513021c", - "author": "Ehsan Akhgari ", - "bug_id": 490879, - "desc": "Backout revision 12536e9936b2 (bug 490879) because of unknown potential problems for Thunderbird 3.next", - "pushdate": "2009-05-03 18:02:56", - "backsout": [ - "12536e9936b2" - ], - "backedoutby": "", - "author_email": "ehsan.akhgari@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 25565442.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "editor/libeditor/html/nsHTMLDataTransfer.cpp", - "editor/libeditor/html/tests/Makefile.in", - "editor/libeditor/html/tests/green.png", - "editor/libeditor/html/tests/test_bug490879.xul" - ], - "components": [], - "directories": [ - "editor/libeditor", - "editor" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "38512deaca7e5ca4fcd39ca9c60f2640fa3ad773", - "author": "Andreas Gal ", - "bug_id": 491013, - "desc": "Backed out changeset 6534f8b9aa74 (bug 491013, assert on startup).", - "pushdate": "2009-05-05 18:41:02", - "backsout": [ - "6534f8b9aa74" - ], - "backedoutby": "", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 26549384.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsapi.cpp", - "js/src/jsfun.cpp", - "js/src/jsfun.h", - "js/src/jsinterp.cpp", - "js/src/jsobj.cpp", - "js/src/jsobj.h", - "js/src/jsproto.tbl", - "js/src/jsregexp.cpp", - "js/src/jsregexp.h", - "js/src/jsscope.cpp", - "js/src/jsscript.cpp", - "js/src/jsxdrapi.h", - "js/src/jsxml.cpp", - "js/src/jsxml.h" - ], - "components": [ - "Core::JavaScript Engine" - ], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "f2151b06463e21d8546b27ffaf382a68c6314251", - "author": "Josh Aas ", - "bug_id": 491834, - "desc": "Backed out changeset 7df4317278f5, bug 491834.", - "pushdate": "2009-05-07 13:25:33", - "backsout": [ - "7df4317278f5" - ], - "backedoutby": "", - "author_email": "joshmoz@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 27162294.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "modules/plugin/base/src/nsPluginDirServiceProvider.cpp", - "modules/plugin/base/src/nsPluginHostImpl.cpp", - "modules/plugin/base/src/nsPluginHostImpl.h" - ], - "components": [], - "directories": [ - "modules/plugin", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "d525ab89ac0229543a0c14d0cfe1bd1ead465090", - "author": "Josh Aas ", - "bug_id": 480080, - "desc": "Backed out changeset 9f9b05760fff, bug 480080, to see if it fixes orange", - "pushdate": "2009-05-08 17:43:16", - "backsout": [ - "9f9b05760fff" - ], - "backedoutby": "", - "author_email": "joshmoz@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 27264157.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/components/viewsource/content/viewSource.js" - ], - "components": [], - "directories": [ - "toolkit/components", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "c60c37d487cae83cbcbb7db59b1b867d6eba27e2", - "author": "Shawn Wilsher ", - "bug_id": 490833, - "desc": "Backed out changeset b6f09258a505 (bug 490833).", - "pushdate": "2009-05-09 02:58:20", - "backsout": [ - "b6f09258a505" - ], - "backedoutby": "", - "author_email": "me@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 14017201.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "storage/public/mozIStorageStatement.idl", - "storage/src/mozStorageStatement.cpp", - "storage/src/mozStorageStatementParams.cpp", - "storage/test/unit/test_storage_statement.js" - ], - "components": [ - "Toolkit::Storage" - ], - "directories": [ - "storage/src", - "storage", - "storage/test", - "storage/public" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "88df6943633f8f75d3df5460ae720d860f4307a1", - "author": "Steven Michaud ", - "bug_id": 489864, - "desc": "Backed out changeset add33a95e3ef to fix talos crashes. b=489864", - "pushdate": "2009-05-11 20:41:08", - "backsout": [ - "add33a95e3ef" - ], - "backedoutby": "", - "author_email": "smichaud@pobox.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 27487690.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "docshell/build/nsDocShellModule.cpp", - "modules/libpr0n/decoders/icon/mac/nsIconChannelCocoa.mm", - "netwerk/mime/public/nsIMIMEInfo.idl", - "uriloader/exthandler/Makefile.in", - "uriloader/exthandler/mac/nsInternetConfig.h", - "uriloader/exthandler/mac/nsInternetConfig.mm", - "uriloader/exthandler/mac/nsInternetConfigService.h", - "uriloader/exthandler/mac/nsInternetConfigService.mm", - "uriloader/exthandler/mac/nsMIMEInfoMac.mm", - "uriloader/exthandler/mac/nsOSHelperAppService.h", - "uriloader/exthandler/mac/nsOSHelperAppService.mm", - "uriloader/exthandler/nsExternalHelperAppService.cpp", - "uriloader/exthandler/nsIInternetConfigService.idl", - "uriloader/exthandler/nsMIMEInfoImpl.cpp", - "uriloader/exthandler/nsMIMEInfoImpl.h", - "widget/src/cocoa/nsLookAndFeel.mm" - ], - "components": [ - "Firefox::File Handling", - "Core::DOM: Navigation" - ], - "directories": [ - "widget", - "netwerk", - "modules/libpr0n", - "docshell", - "netwerk/mime", - "widget/src", - "uriloader", - "uriloader/exthandler", - "docshell/build", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "29692abf4c295b6018f546a3a68e6309bf57cafd", - "author": "Jonas Sicking ", - "bug_id": 492037, - "desc": "Backed out changeset 888aff8f57d2. Bug 492037", - "pushdate": "2009-05-13 00:05:00", - "backsout": [ - "888aff8f57d2" - ], - "backedoutby": "", - "author_email": "jonas@sicking.cc", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 24283315.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/xul/templates/src/crashtests/441785-1.xul", - "content/xul/templates/src/nsXULTreeBuilder.cpp" - ], - "components": [], - "directories": [ - "content/xul", - "content" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "9a308a1a5a9436005c74d7209fbe1e84dc836283", - "author": "Andreas Gal ", - "bug_id": 492664, - "desc": "Backed out changeset c8a74fe0f9af (bug 492664).", - "pushdate": "2009-05-13 03:21:33", - "backsout": [ - "c8a74fe0f9af" - ], - "backedoutby": "", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 27185415.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jstracer.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "3415a6e08696e5c501a8dc98e69cae825c33247d", - "author": "Peter Van der Beken ", - "bug_id": 492483, - "desc": "Backed out changeset 3e3d2d8cc70f (bug 492483 - fixing !JS_THREADSAFE build failure.) to try to fix Tshutdown regression.", - "pushdate": "2009-05-15 14:40:55", - "backsout": [ - "3e3d2d8cc70f" - ], - "backedoutby": "", - "author_email": "peterv@propagandism.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 28334282.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jscntxt.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "0f55d91d7724eccced6bc37570f08ec59c6c7ec0", - "author": "Peter Van der Beken ", - "bug_id": 490592, - "desc": "Backed out changeset 5e867032abe5 (Fix for bug 490592 (Possible to GC way too much during shutdown due to XUL and XBL prototypes).) to try to fix Tshutdown regression.", - "pushdate": "2009-05-15 14:40:55", - "backsout": [ - "5e867032abe5" - ], - "backedoutby": "", - "author_email": "peterv@propagandism.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 28334282.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/xbl/src/nsXBLDocumentInfo.cpp", - "content/xul/document/src/nsXULPrototypeDocument.cpp", - "dom/base/nsDOMScriptObjectFactory.cpp", - "js/src/xpconnect/loader/mozJSComponentLoader.cpp" - ], - "components": [], - "directories": [ - "js/src", - "dom/base", - "dom", - "content/xul", - "content", - "content/xbl", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "e720085bf9ba7617e54c9e64888e6fa91830268d", - "author": "Josh Aas ", - "bug_id": 488042, - "desc": "Backed out changeset 7ff6eeaad3d1, bug 488042", - "pushdate": "2009-05-16 06:06:11", - "backsout": [ - "7ff6eeaad3d1" - ], - "backedoutby": "", - "author_email": "joshmoz@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 27913532.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "modules/plugin/base/src/nsPluginDirServiceProvider.cpp", - "modules/plugin/base/src/nsPluginHostImpl.cpp", - "modules/plugin/base/src/nsPluginHostImpl.h", - "modules/plugin/base/src/nsPluginsDirWin.cpp" - ], - "components": [], - "directories": [ - "modules/plugin", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "fb7f8956aff514c965cbe93b858369fe02d48cc9", - "author": "Peter Van der Beken ", - "bug_id": 475737, - "desc": "Backed out changeset 0c8d4f846be8 (Fix for bug 475737 (Windows stay alive too long because nsJSContext doesn't unlink correctly).) to try to fix Tshutdown regression.", - "pushdate": "2009-05-16 14:18:37", - "backsout": [ - "0c8d4f846be8" - ], - "backedoutby": "", - "author_email": "peterv@propagandism.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 28419344.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "dom/base/nsJSEnvironment.cpp", - "dom/base/nsJSEnvironment.h", - "js/src/jscntxt.cpp", - "js/src/xpconnect/src/xpcjsruntime.cpp", - "xpcom/base/nsAgg.h", - "xpcom/glue/nsCycleCollectionParticipant.h" - ], - "components": [ - "Core::DOM: Core & HTML" - ], - "directories": [ - "xpcom/glue", - "js/src", - "xpcom/base", - "dom/base", - "dom", - "xpcom", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "6e86393b03ad1e2e801dfc1b26d81f39a3087f4e", - "author": "Josh Aas ", - "bug_id": 488181, - "desc": "Backed out changeset accd95d7ba9d. [OS/2] fix build break following bug 488181", - "pushdate": "2009-05-17 01:11:47", - "backsout": [ - "accd95d7ba9d" - ], - "backedoutby": "", - "author_email": "joshmoz@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 27982268.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "modules/plugin/base/src/nsPluginsDirOS2.cpp" - ], - "components": [], - "directories": [ - "modules/plugin", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "687daa472dd409cc7a175a7cf8fbe5b056296734", - "author": "Josh Aas ", - "bug_id": 488181, - "desc": "Backed out changeset 7cd22106e8d9. Simplify code for exposing plugin file names vs. full path. b=488181", - "pushdate": "2009-05-17 01:11:47", - "backsout": [ - "7cd22106e8d9" - ], - "backedoutby": "", - "author_email": "joshmoz@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 27982268.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "dom/locales/en-US/chrome/plugins.properties", - "modules/plugin/base/src/nsPluginHostImpl.cpp", - "modules/plugin/base/src/nsPluginsDirBeOS.cpp", - "modules/plugin/base/src/nsPluginsDirOS2.cpp", - "modules/plugin/base/src/nsPluginsDirUnix.cpp", - "modules/plugin/base/src/nsPluginsDirWin.cpp", - "toolkit/content/plugins.html" - ], - "components": [], - "directories": [ - "toolkit/content", - "toolkit", - "modules/plugin", - "dom/locales", - "dom", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "e3b0b664e5ddfc425fd84409b6dc8678508a4487", - "author": "Shawn Wilsher ", - "bug_id": 486974, - "desc": "Backed out changeset d88e6b8fab83 (bug 486974) due to reftest parsing issues.", - "pushdate": "2009-05-18 16:32:46", - "backsout": [ - "d88e6b8fab83" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 30069935.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "gfx/thebes/crashtests/486974-1.html", - "gfx/thebes/crashtests/crashtests.list" - ], - "components": [], - "directories": [ - "gfx/thebes", - "gfx" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "6fecf8267e038e5e6709c46c8c37035539e1c220", - "author": "Shawn Wilsher ", - "bug_id": 493560, - "desc": "Backed out changeset 4480c18255f2 (bug 493560)", - "pushdate": "2009-05-19 20:47:31", - "backsout": [ - "4480c18255f2" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 30171620.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "db/sqlite3/src/sqlite3.c", - "db/sqlite3/src/sqlite3.h" - ], - "components": [], - "directories": [ - "db/sqlite3", - "db" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "e54a1c608d8cb0e3a801b9928c6b8bb7b7080cca", - "author": "Shawn Wilsher ", - "bug_id": 493560, - "desc": "Backed out changeset dd3d70e5849e (bug 493560)", - "pushdate": "2009-05-19 20:47:31", - "backsout": [ - "dd3d70e5849e" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 30171620.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "configure.in", - "db/sqlite3/README.MOZILLA" - ], - "components": [], - "directories": [ - "db/sqlite3", - "db" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "c4cea7365f4e9199f0da846b74fee206d42b4c91", - "author": "Andreas Gal ", - "bug_id": 493657, - "desc": "Backed out changeset cec8ee353407 (bug 493657).", - "pushdate": "2009-05-20 16:22:49", - "backsout": [ - "cec8ee353407" - ], - "backedoutby": "8f6c242a75ffee31f467c7d81fea114d226a4fd8", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 27837091.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jstracer.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "8f6c242a75ffee31f467c7d81fea114d226a4fd8", - "author": "Andreas Gal ", - "bug_id": 493657, - "desc": "Backed out changeset c4cea7365f4e (re-landing 493657).", - "pushdate": "2009-05-20 16:22:49", - "backsout": [ - "c4cea7365f4e" - ], - "backedoutby": "a18035c7c3d2016c4b347d5a6e4109f402125b80", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 27837091.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jstracer.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "a18035c7c3d2016c4b347d5a6e4109f402125b80", - "author": "Andreas Gal ", - "bug_id": 493657, - "desc": "Backed out changeset 8f6c242a75ff (backing out bug 493657 again).", - "pushdate": "2009-05-20 16:22:49", - "backsout": [ - "8f6c242a75ff" - ], - "backedoutby": "", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 27837091.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jstracer.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "288e71bdc98a83a5b891129aa9ef4bf329f53866", - "author": "L. David Baron ", - "bug_id": 480205, - "desc": "Backed out changeset 1abeb6c87131 (Bug 480205 - Implement a wrapper for exposing chrome objects to content (aka COWs)) due to mochitest failures and leaks.", - "pushdate": "2009-05-21 10:58:20", - "backsout": [ - "1abeb6c87131" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 32112021.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/components/feeds/src/FeedWriter.js", - "dom/base/nsDOMClassInfo.cpp", - "dom/base/nsDOMClassInfo.h", - "js/src/xpconnect/idl/nsIXPConnect.idl", - "js/src/xpconnect/src/Makefile.in", - "js/src/xpconnect/src/XPCChromeObjectWrapper.cpp", - "js/src/xpconnect/src/XPCWrapper.h", - "js/src/xpconnect/src/nsXPConnect.cpp", - "js/src/xpconnect/src/xpcconvert.cpp", - "js/src/xpconnect/src/xpcjsruntime.cpp", - "js/src/xpconnect/src/xpcprivate.h", - "js/src/xpconnect/src/xpcwrappednative.cpp" - ], - "components": [], - "directories": [ - "js/src", - "dom/base", - "browser/components", - "dom", - "browser", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "10908cb7ea5b38e13b19eb0f1d71cdc713054d4d", - "author": "Benjamin Smedberg ", - "bug_id": 326628, - "desc": "Backed out changeset eea9639048b8, bug 326628 main patch, due to regression bug 494899", - "pushdate": "2009-05-27 13:28:12", - "backsout": [ - "eea9639048b8" - ], - "backedoutby": "", - "author_email": "benjamin@smedbergs.us", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 37399128.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "dom/base/nsDOMClassInfo.cpp", - "dom/base/nsDOMClassInfoID.h", - "dom/base/nsGlobalWindow.cpp", - "dom/base/nsGlobalWindow.h", - "dom/interfaces/base/Makefile.in", - "dom/interfaces/base/nsIDOMPkcs11.idl", - "security/manager/ssl/public/Makefile.in", - "security/manager/ssl/public/nsIPKCS11.idl", - "security/manager/ssl/src/nsCrypto.cpp", - "security/manager/ssl/src/nsCrypto.h" - ], - "components": [], - "directories": [ - "dom/interfaces", - "security", - "dom/base", - "dom", - "security/manager" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "4156a420a7325be68b97f67bf1d7b3fdb07bdc07", - "author": "Benjamin Smedberg ", - "bug_id": 326628, - "desc": "Backed out changeset 1aaacee9b2d0, bug 326628 string removal due to regression bug 494899", - "pushdate": "2009-05-27 13:28:12", - "backsout": [ - "1aaacee9b2d0" - ], - "backedoutby": "", - "author_email": "benjamin@smedbergs.us", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 37399128.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "security/manager/locales/en-US/chrome/pipnss/pipnss.properties" - ], - "components": [ - "Core::Security: PSM" - ], - "directories": [ - "security/manager", - "security" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "a0154ac712c96a49c13a43bae52c8fa00dc75aa4", - "author": "Benjamin Smedberg ", - "bug_id": 487980, - "desc": "Backed out changeset c41b9f3a9d83 - bug 487980 due to backing out 326628, due to regression bug 494899", - "pushdate": "2009-05-27 13:28:12", - "backsout": [ - "c41b9f3a9d83" - ], - "backedoutby": "", - "author_email": "benjamin@smedbergs.us", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 37399128.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "dom/base/nsGlobalWindow.cpp", - "dom/interfaces/base/domstubs.idl", - "dom/interfaces/base/nsIDOMWindowInternal.idl" - ], - "components": [ - "Core::DOM: Core & HTML" - ], - "directories": [ - "dom", - "dom/interfaces", - "dom/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "30aa3539cedca522384c7a574ecfab59902cb40b", - "author": "Dave Townsend ", - "bug_id": 481406, - "desc": "Backed out changeset ddd616e58309 from bug 481406 due to tinderbox shortlog\nspam", - "pushdate": "2009-05-28 11:20:17", - "backsout": [ - "ddd616e58309" - ], - "backedoutby": "", - "author_email": "dtownsend@oxymoronical.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 31019775.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "testing/mochitest/browser-harness.xul", - "testing/mochitest/browser-test.js", - "testing/mochitest/tests/browser/browser_pass.js" - ], - "components": [ - "Testing::Mochitest" - ], - "directories": [ - "testing/mochitest", - "testing" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "f5e133f0c13282882e632df0129993dbeb36b51b", - "author": "Andreas Gal ", - "bug_id": 496482, - "desc": "Backed out changeset 17664f5cab40 (bug 496482, also backing out the bug that introduced this bug).", - "pushdate": "2009-06-05 08:41:32", - "backsout": [ - "17664f5cab40" - ], - "backedoutby": "", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 29191814.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jstracer.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "47ae3c6dcf9ee2b9783fa4e2f9642965b035294a", - "author": "Andreas Gal ", - "bug_id": 495958, - "desc": "Backed out changeset 2ad658e9f42a (bug 495958, re-opened).", - "pushdate": "2009-06-05 08:41:32", - "backsout": [ - "2ad658e9f42a" - ], - "backedoutby": "", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 29191814.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jstracer.cpp", - "js/src/jstracer.h" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "6bced1a34c8f04226e23cc7021fe4fe6ebf68c92", - "author": "Markus Stange ", - "bug_id": 482681, - "desc": "Backed out changeset 04f5a3303ebf, bug 482681 due to test failures", - "pushdate": "2009-06-11 11:15:19", - "backsout": [ - "04f5a3303ebf" - ], - "backedoutby": "", - "author_email": "mstange@themasta.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 29929415.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/themes/pinstripe/global/button.css", - "toolkit/themes/pinstripe/global/global.css" - ], - "components": [], - "directories": [ - "toolkit/themes", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "97e7f0da28d6c7c4e311a49eefd8c218ca563b7d", - "author": "Shawn Wilsher ", - "bug_id": 483980, - "desc": "Backed out changeset d891a7418d95 (bug 483980)", - "pushdate": "2009-06-11 23:08:59", - "backsout": [ - "d891a7418d95" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 32167308.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/components/places/tests/unit/head_bookmarks.js", - "browser/components/places/tests/unit/tail_bookmarks.js", - "toolkit/components/places/src/nsNavBookmarks.cpp", - "toolkit/components/places/src/nsNavBookmarks.h", - "toolkit/components/places/src/nsNavHistory.cpp", - "toolkit/components/places/src/nsNavHistory.h", - "toolkit/components/places/src/nsNavHistoryExpire.cpp", - "toolkit/components/places/src/nsPlacesDBFlush.js", - "toolkit/components/places/src/nsPlacesMacros.h", - "toolkit/components/places/tests/autocomplete/head_000.js", - "toolkit/components/places/tests/autocomplete/tail_autocomplete.js", - "toolkit/components/places/tests/bookmarks/head_bookmarks.js", - "toolkit/components/places/tests/bookmarks/tail_bookmarks.js", - "toolkit/components/places/tests/bookmarks/test_384228.js", - "toolkit/components/places/tests/bookmarks/test_448584.js", - "toolkit/components/places/tests/queries/head_queries.js", - "toolkit/components/places/tests/queries/tail_queries.js", - "toolkit/components/places/tests/sync/head_sync.js", - "toolkit/components/places/tests/sync/tail_sync.js", - "toolkit/components/places/tests/unit/head_bookmarks.js", - "toolkit/components/places/tests/unit/nsDummyObserver.js", - "toolkit/components/places/tests/unit/tail_bookmarks.js", - "toolkit/components/places/tests/unit/test_000_frecency.js", - "toolkit/components/places/tests/unit/test_421180.js", - "toolkit/components/places/tests/unit/test_454977.js", - "toolkit/components/places/tests/unit/test_bookmark_catobs.js", - "toolkit/components/places/tests/unit/test_history.js", - "toolkit/components/places/tests/unit/test_history_catobs.js", - "toolkit/components/places/tests/unit/test_migrateFrecency.js" - ], - "components": [ - "Firefox::Bookmarks & History", - "Toolkit::Places" - ], - "directories": [ - "toolkit/components", - "browser/components", - "toolkit", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "06027b3d50d99bb1d03ed761fb8c6e99597b718f", - "author": "Shawn Wilsher ", - "bug_id": 119061, - "desc": "Backed out changeset f3fcd36fcbd1 (bug 119061) for linux orange.", - "pushdate": "2009-06-11 23:58:06", - "backsout": [ - "f3fcd36fcbd1" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 32170255.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/svg/content/test/Makefile.in", - "content/svg/content/test/test_moveUnderMouse.xhtml", - "layout/reftests/svg/dynamic-move-under-mouse.svg", - "layout/reftests/svg/reftest.list", - "layout/svg/base/src/nsSVGOuterSVGFrame.cpp" - ], - "components": [ - "Core::SVG" - ], - "directories": [ - "layout/svg", - "content", - "content/svg", - "layout/reftests", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "f0b1b5b7ae6269b70c953d939a9231beb7c53472", - "author": "Marco Zehe ", - "bug_id": 493723, - "desc": "Backed out changeset 2928cc356e14 of bug 493723 to fix screen reader bustage", - "pushdate": "2009-06-12 14:32:48", - "backsout": [ - "2928cc356e14" - ], - "backedoutby": "", - "author_email": "marco.zehe@googlemail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 32146482.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "accessible/src/atk/Makefile.in", - "accessible/src/atk/nsARIAGridAccessibleWrap.h", - "accessible/src/base/nsAccessibilityService.cpp", - "accessible/src/mac/Makefile.in", - "accessible/src/mac/nsARIAGridAccessibleWrap.h", - "accessible/src/msaa/Makefile.in", - "accessible/src/msaa/nsARIAGridAccessibleWrap.cpp", - "accessible/src/msaa/nsARIAGridAccessibleWrap.h", - "accessible/src/other/Makefile.in", - "accessible/src/other/nsARIAGridAccessibleWrap.h" - ], - "components": [], - "directories": [ - "accessible/src", - "accessible" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "be99fcdb6addb56c5bd73d9b18fda04490ac7eda", - "author": "Karl Tomlinson ", - "bug_id": 450930, - "desc": "backout 06a7d2def034 and 58c89ce9719d as possible cause of failure in test_bug450930.xhtml", - "pushdate": "2009-06-15 06:41:26", - "backsout": [ - "06a7d2def034" - ], - "backedoutby": "", - "author_email": "karlt+@karlt.net", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 29647662.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "gfx/thebes/public/gfxAtsuiFonts.h", - "gfx/thebes/public/gfxCoreTextFonts.h", - "gfx/thebes/src/gfxAtsuiFonts.cpp", - "gfx/thebes/src/gfxCoreTextFonts.cpp", - "gfx/thebes/src/gfxWindowsFonts.cpp", - "layout/reftests/bugs/308406-1-ref.html", - "layout/reftests/bugs/308406-1.html", - "layout/reftests/bugs/308406-2-ref.html", - "layout/reftests/bugs/308406-2.html", - "layout/reftests/bugs/363858-5-ref.html", - "layout/reftests/bugs/363858-5a.html", - "layout/reftests/bugs/363858-5b.html", - "layout/reftests/bugs/363858-6-ref.html", - "layout/reftests/bugs/363858-6a.html", - "layout/reftests/bugs/363858-6b.html", - "layout/reftests/bugs/387876-1-ref.html", - "layout/reftests/bugs/387876-1.html", - "layout/reftests/bugs/reftest.list" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "layout/reftests", - "gfx/thebes", - "gfx", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "72f6372d784a147d2335c0371aca0602ae0678d7", - "author": "Arpad Borsos ", - "bug_id": 493701, - "desc": "Back out 7d502207183d (Bug 493701), it really did cause the windows dhtml regression", - "pushdate": "2009-06-16 12:44:37", - "backsout": [ - "7d502207183d" - ], - "backedoutby": "", - "author_email": "arpad.borsos@googlemail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 31847699.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "uriloader/base/nsDocLoader.cpp", - "xpcom/tests/TestObserverArray.cpp" - ], - "components": [ - "Core::DOM: Navigation" - ], - "directories": [ - "uriloader/base", - "xpcom/tests", - "xpcom", - "uriloader" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "f9c14b122aa2ead4b62b6c3329c28d014cf711a3", - "author": "Arpad Borsos ", - "bug_id": 474369, - "desc": "Back out b8e531a6c961 (Bug 474369), it really did cause the windows dhtml regression", - "pushdate": "2009-06-16 12:44:37", - "backsout": [ - "b8e531a6c961" - ], - "backedoutby": "", - "author_email": "arpad.borsos@googlemail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 31847699.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "caps/include/nsPrincipal.h", - "caps/src/nsPrincipal.cpp", - "chrome/src/nsChromeRegistry.cpp", - "chrome/src/nsChromeRegistry.h", - "db/morkreader/nsMorkReader.cpp", - "docshell/base/nsDocShell.cpp", - "dom/base/nsIDOMClassInfo.h", - "dom/src/storage/nsDOMStorage.h", - "editor/libeditor/base/nsSelectionState.cpp", - "editor/txmgr/src/nsTransactionManager.cpp", - "embedding/components/commandhandler/src/nsCommandGroup.h", - "extensions/java/xpcom/src/nsJavaXPTCStub.cpp", - "extensions/java/xpcom/src/nsJavaXPTCStub.h", - "extensions/layout-debug/src/nsRegressionTester.cpp", - "extensions/pref/system-pref/src/gconf/nsSystemPrefService.cpp", - "extensions/pref/system-pref/src/gconf/nsSystemPrefService.h", - "extensions/spellcheck/src/mozPersonalDictionary.h", - "extensions/spellcheck/src/mozSpellChecker.h", - "intl/locale/src/nsLocale.cpp", - "layout/inspector/src/inCSSValueSearch.cpp", - "layout/style/nsCSSRuleProcessor.cpp", - "modules/libpref/src/nsPrefBranch.cpp", - "modules/libpref/src/nsPrefBranch.h", - "netwerk/cache/src/nsCacheService.cpp", - "security/manager/ssl/src/nsKeygenHandler.cpp", - "security/manager/ssl/src/nsKeygenHandler.h", - "tools/trace-malloc/leaksoup.cpp", - "uriloader/base/nsDocLoader.cpp", - "uriloader/base/nsDocLoader.h", - "view/src/nsViewManager.cpp", - "view/src/nsViewManager.h", - "xpcom/glue/nsTObserverArray.h", - "xpinstall/src/nsXPITriggerInfo.h" - ], - "components": [ - "Core::Spelling checker", - "Core::DOM: Navigation" - ], - "directories": [ - "xpcom/glue", - "modules/libpref", - "docshell/base", - "extensions/java", - "extensions/layout-debug", - "dom/base", - "editor", - "view", - "uriloader", - "caps/include", - "db", - "modules", - "embedding/components", - "netwerk", - "uriloader/base", - "caps/src", - "dom", - "extensions", - "layout/inspector", - "chrome/src", - "layout/style", - "layout", - "xpinstall", - "tools/trace-malloc", - "dom/src", - "extensions/spellcheck", - "netwerk/cache", - "docshell", - "caps", - "view/src", - "editor/txmgr", - "security/manager", - "xpcom", - "db/morkreader", - "intl/locale", - "xpinstall/src", - "editor/libeditor", - "embedding", - "extensions/pref", - "security", - "intl", - "tools", - "chrome" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "83ba7296195e738749ce695f89d242ea98d4bcc6", - "author": "Shawn Wilsher ", - "bug_id": 490085, - "desc": "Backed out changeset d546bd2c46a4 (bug 490085) because it's broken (and thunderbird's test caught it)", - "pushdate": "2009-06-17 20:45:30", - "backsout": [ - "d546bd2c46a4" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 32677099.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "storage/public/Makefile.in", - "storage/public/mozIStorageBindingParams.idl", - "storage/public/mozIStorageBindingParamsArray.idl", - "storage/public/mozIStorageStatement.idl", - "storage/src/Makefile.in", - "storage/src/mozStorageAsyncStatementExecution.cpp", - "storage/src/mozStorageAsyncStatementExecution.h", - "storage/src/mozStorageBindingParams.cpp", - "storage/src/mozStorageBindingParams.h", - "storage/src/mozStorageBindingParamsArray.cpp", - "storage/src/mozStorageBindingParamsArray.h", - "storage/src/mozStorageConnection.cpp", - "storage/src/mozStorageStatement.cpp", - "storage/src/mozStorageStatement.h", - "storage/src/mozStorageStatementData.h", - "storage/test/unit/test_connection_executeAsync.js", - "storage/test/unit/test_statement_executeAsync.js", - "storage/test/unit/test_storage_statement_executeAsync.js" - ], - "components": [ - "Toolkit::Storage" - ], - "directories": [ - "storage/src", - "storage", - "storage/test", - "storage/public" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "78f649cdd7f81ab9a45d60a6daecb16f44aa4d26", - "author": "Igor Bukanov ", - "bug_id": 498899, - "desc": "Backed out changeset 7ab1be136cfa - that patch for bug 498899 has a bug.", - "pushdate": "2009-06-19 13:23:15", - "backsout": [ - "7ab1be136cfa" - ], - "backedoutby": "", - "author_email": "igor@mir2.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 31592896.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsinterp.cpp", - "js/src/jsinterp.h", - "js/src/jslock.cpp", - "js/src/jslock.h" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "1e873ec2be87523bc8b5a77e581859eef40a6151", - "author": "Shawn Wilsher ", - "bug_id": 488148, - "desc": "Backed out changeset 0997bcc75daf (bug 488148). Silly me - this patch is wrong!", - "pushdate": "2009-06-19 19:22:34", - "backsout": [ - "0997bcc75daf" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 32844923.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "storage/src/mozStorageAsyncStatementExecution.cpp", - "storage/src/mozStorageAsyncStatementExecution.h", - "storage/src/mozStorageConnection.cpp", - "storage/src/mozStorageConnection.h" - ], - "components": [], - "directories": [ - "storage/src", - "storage" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "3ffbe0634669f82d3b3b6a3f81b3080058575301", - "author": "Peter Van der Beken ", - "bug_id": 499777, - "desc": "Backed out c8297c309ab3 (Fix for bug 499777 (Cannot convert WrappedNative to function (NS_ERROR_XPC_CANT_CONVERT_WN_TO_FUN)). r/sr=mrbkap.) to fix orange.", - "pushdate": "2009-06-23 14:47:03", - "backsout": [ - "c8297c309ab3" - ], - "backedoutby": "", - "author_email": "peterv@propagandism.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 31704250.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "dom/base/nsDOMClassInfo.cpp" - ], - "components": [], - "directories": [ - "dom", - "dom/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "a8fafd6b563eefb05f2c5bbef81312a075343ccb", - "author": "Andreas Gal ", - "bug_id": 499664, - "desc": "Backed out changeset 55a8910d8436 (no consensus whether patch should be applied, bug 499664).", - "pushdate": "2009-06-30 19:21:13", - "backsout": [ - "55a8910d8436" - ], - "backedoutby": "", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 31390195.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/nanojit/Assembler.cpp", - "js/src/nanojit/LIR.cpp", - "js/src/nanojit/LIRopcode.tbl" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "dd5b7ac3f7d3e1ed9ae4410dcf0ece1ec6b4ca85", - "author": "Karl Tomlinson ", - "bug_id": 498143, - "desc": "backout a2d8f3384b3c due to mochitest failures b=498143", - "pushdate": "2009-07-09 03:36:29", - "backsout": [ - "a2d8f3384b3c" - ], - "backedoutby": "", - "author_email": "karlt+@karlt.net", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 31710165.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "widget/src/gtk2/nsWindow.cpp" - ], - "components": [], - "directories": [ - "widget", - "widget/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "9d7f4b459a18e821fa66f17d8d61f94a69ab748e", - "author": "Peter Van der Beken ", - "bug_id": 503990, - "desc": "Backed out changeset c5433450795f (Bug 503990: make isStmt() table-driven).", - "pushdate": "2009-07-14 09:23:52", - "backsout": [ - "c5433450795f" - ], - "backedoutby": "", - "author_email": "peterv@propagandism.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 33499259.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/lirasm/lirasm.cpp", - "js/src/nanojit/Fragmento.cpp", - "js/src/nanojit/LIR.cpp", - "js/src/nanojit/LIR.h", - "js/src/nanojit/LIRopcode.tbl" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "6b7b67ed41b913e9871c41dd956ad81e97783155", - "author": "Peter Van der Beken ", - "bug_id": 503463, - "desc": "Backed out changeset 2073d5aae8b6 (Avoid integer math for GC trigger factor calculation in allocation path (bug 503463)).", - "pushdate": "2009-07-14 09:50:08", - "backsout": [ - "2073d5aae8b6" - ], - "backedoutby": "", - "author_email": "peterv@propagandism.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 33500835.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsapi.cpp", - "js/src/jscntxt.h", - "js/src/jsgc.cpp" - ], - "components": [ - "Core::JavaScript Engine" - ], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "17a10b614f99d9486cc5e3f14585a49216ef1f45", - "author": "Jonathan Kew ", - "bug_id": 503718, - "desc": "Backed out changeset 705ef05105e8 for causing bug 503718 on OS X", - "pushdate": "2009-07-15 11:14:22", - "backsout": [ - "705ef05105e8" - ], - "backedoutby": "", - "author_email": "jfkthame@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 19932958.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "gfx/thebes/public/gfxAtsuiFonts.h", - "gfx/thebes/public/gfxCoreTextFonts.h", - "gfx/thebes/src/gfxAtsuiFonts.cpp", - "gfx/thebes/src/gfxCoreTextFonts.cpp", - "layout/reftests/bugs/363858-5-ref.html", - "layout/reftests/bugs/363858-5a.html", - "layout/reftests/bugs/363858-5b.html", - "layout/reftests/bugs/363858-6-ref.html", - "layout/reftests/bugs/363858-6a.html", - "layout/reftests/bugs/363858-6b.html", - "layout/reftests/bugs/387876-1-ref.html", - "layout/reftests/bugs/387876-1.html", - "layout/reftests/bugs/reftest.list" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "layout/reftests", - "gfx/thebes", - "gfx", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "980e61b2e20b207ff3d0e2c63b1c6953d5be9a84", - "author": "Jonathan Kew ", - "bug_id": 503718, - "desc": "Backed out changeset b6d407af386f for causing bug 503718 on Windows", - "pushdate": "2009-07-15 11:14:22", - "backsout": [ - "b6d407af386f" - ], - "backedoutby": "", - "author_email": "jfkthame@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 19932958.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "gfx/thebes/src/gfxWindowsFonts.cpp", - "layout/reftests/bugs/308406-1-ref.html", - "layout/reftests/bugs/308406-1.html", - "layout/reftests/bugs/308406-2-ref.html", - "layout/reftests/bugs/308406-2.html" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "layout/reftests", - "gfx/thebes", - "gfx", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "191ef763e892a81b56685717adad3788fad266fd", - "author": "L. David Baron ", - "bug_id": 503942, - "desc": "Backed out changeset ebea850caba8 (Bug 503942) for causing timeouts of dom/tests/mochitest/geolocation/test_allowCurrent.html and test_allowWatch.html", - "pushdate": "2009-07-15 23:52:59", - "backsout": [ - "ebea850caba8" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 36910500.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "dom/interfaces/geolocation/Makefile.in", - "dom/interfaces/geolocation/nsIDOMGeoPosition.idl", - "dom/interfaces/geolocation/nsIDOMGeoPositionAddress.idl", - "dom/src/geolocation/NetworkGeolocationProvider.js" - ], - "components": [ - "Core::DOM: Geolocation" - ], - "directories": [ - "dom", - "dom/interfaces", - "dom/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "c0d86da168885b0cd20af7eefacb33c5e330e128", - "author": "L. David Baron ", - "bug_id": 503597, - "desc": "Backed out changeset 6e11834d07c9 (Bug 503597) until x86_64 Linux tinderboxes (bug 505215) and maybe other tinderboxes (bug 505203, bug 505204) are updated.", - "pushdate": "2009-07-20 12:58:59", - "backsout": [ - "6e11834d07c9" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 37303260.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "configure.in" - ], - "components": [], - "directories": [], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "080ff82bff5ed421cc1e4f2c65bda3aab190fcca", - "author": "Andreas Gal ", - "bug_id": 504705, - "desc": "Backed out changeset 692e8a1325f8 (bug 504705). Crashes with TMFLAGS=full on browser startup.", - "pushdate": "2009-07-21 04:58:00", - "backsout": [ - "692e8a1325f8" - ], - "backedoutby": "", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 33152802.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsregexp.cpp", - "js/src/jstracer.cpp", - "js/src/lirasm/lirasm.cpp", - "js/src/nanojit/LIR.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "d75d6cd530413239b644ed14ef8ec76d010ecd56", - "author": "Andreas Gal ", - "bug_id": 501232, - "desc": "Backed out changeset 8877e1f8645b (bug 501232).", - "pushdate": "2009-07-21 04:58:00", - "backsout": [ - "8877e1f8645b" - ], - "backedoutby": "", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 33152802.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/nanojit/LIR.cpp", - "js/src/nanojit/LIR.h", - "js/src/nanojit/LIRopcode.tbl", - "js/src/nanojit/NativeARM.cpp", - "js/src/nanojit/NativeSparc.cpp", - "js/src/nanojit/Nativei386.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "e81b6512fc4ae2668a847bcbd136b81145934aa6", - "author": "Benjamin Smedberg ", - "bug_id": 448375, - "desc": "Backed out changeset 6722800f261e - bug 448375 because it broke at least x86-64... turns out we do actually use DBUS bits from within libxul.so, and the fix for that bug may be quite a bit more complicated.", - "pushdate": "2009-07-23 17:45:58", - "backsout": [ - "6722800f261e" - ], - "backedoutby": "", - "author_email": "benjamin@smedbergs.us", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 42339394.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/library/Makefile.in" - ], - "components": [], - "directories": [ - "toolkit/library", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "2772a410e518ffa9ef8aba6cfcb235f75c92297a", - "author": "Gavin Sharp ", - "bug_id": 506116, - "desc": "Backed out changeset 870f451d8385 from bug 506116", - "pushdate": "2009-07-28 07:41:27", - "backsout": [ - "870f451d8385" - ], - "backedoutby": "", - "author_email": "gavin@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 35187834.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/base/content/browser.js", - "toolkit/content/contentAreaUtils.js" - ], - "components": [ - "Toolkit::General", - "Firefox::General" - ], - "directories": [ - "browser/base", - "toolkit", - "browser", - "toolkit/content" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "069d94d0d7ef237e07669cc9399444bf08a5a5a5", - "author": "Boris Zbarsky ", - "bug_id": 495176, - "desc": "Backed out changeset 9d5e247b5052 to see whether bug 495176 might be causing\nthe WinXP Txul regression.", - "pushdate": "2009-07-28 18:39:06", - "backsout": [ - "9d5e247b5052" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 33251654.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "caps/src/nsScriptSecurityManager.cpp" - ], - "components": [], - "directories": [ - "caps", - "caps/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "78b2c479870c73c5da37cdcf1b012061c60be326", - "author": "Boris Zbarsky ", - "bug_id": 495176, - "desc": "Backed out changeset b55e7e3c0bfb to see whether bug 495176 might be causing the WinXP Txul regression", - "pushdate": "2009-07-28 18:39:06", - "backsout": [ - "b55e7e3c0bfb" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 33251654.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "caps/src/nsScriptSecurityManager.cpp", - "dom/locales/en-US/chrome/security/caps.properties" - ], - "components": [ - "Core::Security" - ], - "directories": [ - "caps", - "dom", - "dom/locales", - "caps/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "0468583f64f4ba451040840369df0dd03ce35e75", - "author": "Boris Zbarsky ", - "bug_id": 496823, - "desc": "Backed out changeset 622a29736f33 to see whether bug 496823 causes the WinXP Txul regression.", - "pushdate": "2009-07-28 18:39:06", - "backsout": [ - "622a29736f33" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 33251654.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/base/nsCSSFrameConstructor.cpp", - "layout/generic/nsBlockFrame.cpp", - "layout/generic/nsBlockFrame.h", - "layout/generic/nsFrame.cpp", - "layout/generic/nsIFrame.h" - ], - "components": [ - "Core::Layout", - "Core::Layout: Block and Inline" - ], - "directories": [ - "layout/generic", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "c1ab8650e0cee5e6e3592bdce8d8103fd16bea1a", - "author": "Boris Zbarsky ", - "bug_id": 505988, - "desc": "Backed out changeset 03c40c5a2d4b (bug 505988) to fix password manager test orange.", - "pushdate": "2009-07-30 15:03:51", - "backsout": [ - "03c40c5a2d4b" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 33411539.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/xpconnect/src/xpcprivate.h", - "js/src/xpconnect/src/xpcvariant.cpp", - "js/src/xpconnect/tests/mochitest/Makefile.in", - "js/src/xpconnect/tests/mochitest/test_bug384632.html" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "60b97c3496c4517e74445b2e741629f9d5373e95", - "author": "Shawn Wilsher ", - "bug_id": 504422, - "desc": "Backed out changeset 06433d3dafd9 (bug 504422) because the patch is wrong.", - "pushdate": "2009-07-30 17:34:32", - "backsout": [ - "06433d3dafd9" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 36380841.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "build/automationutils.py", - "toolkit/components/places/src/SQLFunctions.cpp", - "toolkit/components/places/src/SQLFunctions.h" - ], - "components": [], - "directories": [ - "toolkit/components", - "toolkit", - "build" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "236a7507a0f1e0127782daff0d5cb2d2683e5f69", - "author": "Shawn Wilsher ", - "bug_id": 504384, - "desc": "Backed out changeset 246b44df7dd3 (bug 504384).\nThis fix was wrong.", - "pushdate": "2009-07-30 17:34:32", - "backsout": [ - "246b44df7dd3" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 36380841.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/content/widgets/autocomplete.xml" - ], - "components": [], - "directories": [ - "toolkit/content", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "6fa97a14dde15f0c89160cc15a4e7ba928ea55f2", - "author": "Shawn Wilsher ", - "bug_id": 504311, - "desc": "Backed out changeset 8506b25206cf (bug 504311) because the test added uses enablePrivilege which hangs tinderbox asking for privileges.", - "pushdate": "2009-07-30 20:17:53", - "backsout": [ - "8506b25206cf" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 36390642.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/style/crashtests/504311-1.xul", - "layout/style/crashtests/crashtests.list", - "layout/style/nsStyleStruct.cpp" - ], - "components": [ - "Core::CSS Parsing and Computation" - ], - "directories": [ - "layout/style", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "c6cab4ce7379c19306d34d7e923a59ea538cd62a", - "author": "L. David Baron ", - "bug_id": 499655, - "desc": "Backed out changeset 358af1196dc2 (bug 499655) until we get bug 507487 sorted out.", - "pushdate": "2009-07-31 16:41:01", - "backsout": [ - "358af1196dc2" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 38266982.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/style/nsCSSParser.cpp", - "layout/style/nsCSSRuleProcessor.cpp", - "layout/style/nsCSSStyleRule.cpp", - "layout/style/nsICSSStyleRule.h", - "layout/style/test/Makefile.in", - "layout/style/test/test_bug499655.html", - "layout/style/test/test_bug499655.xhtml", - "layout/xul/base/src/tree/src/nsTreeBodyFrame.cpp" - ], - "components": [ - "Core::CSS Parsing and Computation" - ], - "directories": [ - "layout/xul", - "layout/style", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "d556710b95a87c8f2d69e085c1d399d36886d25c", - "author": "Josh Aas ", - "bug_id": 506812, - "desc": "Backed out changeset ad9a4a3a5409, bug 506812. CLOSED TREE", - "pushdate": "2009-07-31 20:50:50", - "backsout": [ - "ad9a4a3a5409" - ], - "backedoutby": "", - "author_email": "joshmoz@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 34533011.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "xpcom/io/nsLocalFileOSX.h", - "xpcom/io/nsLocalFileOSX.mm" - ], - "components": [], - "directories": [ - "xpcom/io", - "xpcom" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "8e2681f2fcba3a5d56f421d28e6ee0a9a5f4658f", - "author": "Josh Aas ", - "bug_id": 506812, - "desc": "Backed out changeset 4318f781ab87 to investigate Ts changes, b=506812 CLOSED TREE", - "pushdate": "2009-07-31 20:54:50", - "backsout": [ - "4318f781ab87" - ], - "backedoutby": "", - "author_email": "joshmoz@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 34533251.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/xre/nsAppRunner.cpp" - ], - "components": [ - "Toolkit::Startup and Profile System" - ], - "directories": [ - "toolkit", - "toolkit/xre" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "1708ccd0ffe4a65523cadc76d5e94c1f83cbd5ba", - "author": "L. David Baron ", - "bug_id": 501608, - "desc": "Backed out changeset 8cd49a8cbb88 (bug 501608) on suspicion of causing lots of mochitest-browser-chrome timeouts and leaks (bug 507698).", - "pushdate": "2009-07-31 21:54:27", - "backsout": [ - "8cd49a8cbb88" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 38285788.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/content/tests/browser/Makefile.in", - "toolkit/content/tests/browser/browser_keyevents_during_autoscrolling.js", - "toolkit/content/widgets/browser.xml" - ], - "components": [ - "Toolkit::UI Widgets" - ], - "directories": [ - "toolkit/content", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "850b96d836c46b5c3aa67c7b9207e22ffc1f0822", - "author": "L. David Baron ", - "bug_id": 507605, - "desc": "Backed out changeset 6a5f22ccbe0e (no bug) to see if it is the cause of the mozilla-browser-chrome orange (bug 507605 and bug 507698)", - "pushdate": "2009-08-01 02:38:15", - "backsout": [ - "6a5f22ccbe0e" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 38302816.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/components/sessionstore/test/browser/browser_483330.js", - "browser/components/sessionstore/test/browser/browser_491168.js" - ], - "components": [], - "directories": [ - "browser/components", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "94e882183752b48c85bf046e13908bfe26a72ffe", - "author": "Ehsan Akhgari ", - "bug_id": 125282, - "desc": "Backed out changeset 8366e5cc9f57 (bug 125282) because of four windows unit test oranges in a row (all timed out when running mochitest-plain)", - "pushdate": "2009-08-02 10:41:59", - "backsout": [ - "8366e5cc9f57" - ], - "backedoutby": "", - "author_email": "ehsan.akhgari@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 33401385.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/base/content/test/Makefile.in", - "browser/base/content/test/browser_bug125282.js", - "dom/base/nsFocusManager.cpp" - ], - "components": [ - "Core::DOM: Core & HTML" - ], - "directories": [ - "browser/base", - "dom/base", - "dom", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "7fb86c108ae7981111030e5520593c10859d3562", - "author": "Boris Zbarsky ", - "bug_id": 502288, - "desc": "Backed out changeset 25462849adcc (bug 502288) to get some talos cycles for the tracemonkey merge without this patch in.", - "pushdate": "2009-08-03 19:12:58", - "backsout": [ - "25462849adcc" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 33772086.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/base/nsCSSFrameConstructor.cpp", - "layout/base/nsCSSFrameConstructor.h", - "layout/base/nsChangeHint.h", - "layout/base/nsFrameManager.cpp", - "layout/style/nsStyleStruct.cpp" - ], - "components": [ - "Core::Layout", - "Core::CSS Parsing and Computation" - ], - "directories": [ - "layout/style", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "c29765db7521970a25767c46a0876f12ef39e1ee", - "author": "Ted Mielczarek ", - "bug_id": 459114, - "desc": "Backed out changeset 9ddc25fb2246 - bug 459114 - helper function to provide a clean profile directory for xpcshell tests. r=sdwilsh - for test failures", - "pushdate": "2009-08-05 19:36:30", - "backsout": [ - "9ddc25fb2246" - ], - "backedoutby": "", - "author_email": "ted.mielczarek@gmail.com", - "reviewers": [ - "sdwilsh" - ], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 43469226.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/components/places/tests/unit/head_bookmarks.js", - "extensions/cookie/test/unit/test_permmanager_removeall.js", - "modules/plugin/test/unit/head_plugins.js", - "modules/plugin/test/unit/test_bug455213.js", - "netwerk/test/unit/test_bug248970_cache.js", - "testing/xpcshell/example/unit/test_get_file.js", - "testing/xpcshell/example/unit/test_profile.js", - "testing/xpcshell/head.js", - "testing/xpcshell/runxpcshelltests.py", - "toolkit/components/downloads/test/schema_migration/head_migration.js", - "toolkit/components/downloads/test/unit/head_download_manager.js", - "toolkit/components/downloads/test/unit/test_bug_382825.js", - "toolkit/components/downloads/test/unit/test_bug_395092.js", - "toolkit/components/downloads/test/unit/test_bug_401430.js", - "toolkit/components/downloads/test/unit/test_bug_401582.js", - "toolkit/components/downloads/test/unit/test_bug_409179.js", - "toolkit/components/downloads/test/unit/test_bug_420230.js", - "toolkit/components/downloads/test/unit/test_download_manager.js", - "toolkit/components/downloads/test/unit/test_privatebrowsing.js", - "toolkit/components/passwordmgr/test/unit/head_storage_legacy_1.js", - "toolkit/components/places/tests/autocomplete/head_000.js", - "toolkit/components/places/tests/bookmarks/head_bookmarks.js", - "toolkit/components/places/tests/queries/head_queries.js", - "toolkit/components/places/tests/unit/head_bookmarks.js", - "toolkit/components/satchel/test/unit/head_satchel.js", - "toolkit/components/url-classifier/tests/unit/head_urlclassifier.js", - "toolkit/mozapps/extensions/test/unit/head_extensionmanager.js", - "toolkit/mozapps/extensions/test/unit/tail_extensionmanager.js" - ], - "components": [ - "Core::Networking", - "Toolkit::Form Manager", - "Testing::XPCShell Harness", - "Toolkit::Safe Browsing", - "Firefox::Bookmarks & History", - "Toolkit::Places" - ], - "directories": [ - "testing/xpcshell", - "toolkit", - "netwerk", - "toolkit/components", - "modules/plugin", - "netwerk/test", - "extensions/cookie", - "browser/components", - "toolkit/mozapps", - "extensions", - "browser", - "testing", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "227c1358d161e4ec2745b8cb9f777d6ad9695d92", - "author": "L. David Baron ", - "bug_id": 505718, - "desc": "Backed out changeset bae405b94b96 (testing to see if it affected bug 505718, bug 508767) to re-enable leaked url dump for unit test boxes.", - "pushdate": "2009-08-07 15:23:53", - "backsout": [ - "bae405b94b96" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 38867154.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "netwerk/base/src/nsStandardURL.h" - ], - "components": [], - "directories": [ - "netwerk/base", - "netwerk" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "b3631e1453f29a5020a393b960b1eb851a770279", - "author": "Markus Stange ", - "bug_id": 429954, - "desc": "Backed out changeset b52fa2372a3a, bug 429954 because of test_popup_preventdefault_chrome.xul orange.", - "pushdate": "2009-08-12 23:44:06", - "backsout": [ - "b52fa2372a3a" - ], - "backedoutby": "", - "author_email": "mstange@themasta.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 35331142.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "widget/src/cocoa/nsCocoaWindow.h", - "widget/src/cocoa/nsCocoaWindow.mm" - ], - "components": [], - "directories": [ - "widget", - "widget/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "157b3aa1100f993e37b419c048e30c9d2b61b26f", - "author": "Jason Orendorff ", - "bug_id": 510193, - "desc": "Backed out changeset a17cbb14793f (bug 510193) which caused trace-test.js to fail (spuriously) on x86.", - "pushdate": "2009-08-13 21:38:45", - "backsout": [ - "a17cbb14793f" - ], - "backedoutby": "", - "author_email": "jorendorff@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 38104054.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jitstats.tbl", - "js/src/jstracer.cpp", - "js/src/trace-test.js" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "6c04c1cdedcb5489ee4e2ea3871e574efbfefb65", - "author": "Markus Stange ", - "bug_id": 494927, - "desc": "Backed out changeset 43fdf17e10a3, bug 494927, because of a 2.5% Mac Txul regression", - "pushdate": "2009-08-14 04:53:30", - "backsout": [ - "43fdf17e10a3" - ], - "backedoutby": "", - "author_email": "mstange@themasta.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 35436106.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/themes/pinstripe/browser/Toolbar.png", - "browser/themes/pinstripe/browser/browser.css" - ], - "components": [], - "directories": [ - "browser/themes", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "a6fa91f76877b834d4e7db0d5b847a9353156e3e", - "author": "Ted Mielczarek ", - "bug_id": 378528, - "desc": "Backed out changeset 21ad4f1ce214 - Ted Mielczarek \u2013 bug 378528 - crash reporter should allow resubmission of pending reports, due to leaks", - "pushdate": "2009-08-17 18:45:00", - "backsout": [ - "21ad4f1ce214" - ], - "backedoutby": "", - "author_email": "ted.mielczarek@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 44502936.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/crashreporter/content/crash-submit-form.xhtml", - "toolkit/crashreporter/content/crashes.js", - "toolkit/crashreporter/content/crashes.xhtml", - "toolkit/crashreporter/jar.mn", - "toolkit/crashreporter/test/Makefile.in", - "toolkit/crashreporter/test/browser/aboutcrashes_utils.js", - "toolkit/crashreporter/test/browser/browser_aboutCrashes.js", - "toolkit/crashreporter/test/browser/browser_aboutCrashesResubmit.js", - "toolkit/crashreporter/test/browser/crashreport.sjs" - ], - "components": [ - "Toolkit::Crash Reporting" - ], - "directories": [ - "toolkit", - "toolkit/crashreporter" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "ae162a38f56ed5090f6b3b3ebf92d0ff13cff9b1", - "author": "Dave Townsend ", - "bug_id": 502307, - "desc": "Backed out changeset 405a715a4d81 from bug 502307 due to test failures", - "pushdate": "2009-08-19 09:38:41", - "backsout": [ - "405a715a4d81" - ], - "backedoutby": "", - "author_email": "dtownsend@oxymoronical.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 38184879.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/base/content/browser.js", - "toolkit/content/globalOverlay.js" - ], - "components": [ - "Toolkit::General", - "Firefox::General" - ], - "directories": [ - "browser/base", - "toolkit", - "browser", - "toolkit/content" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "36d3597620c7b8392cfb99cc056dcbd2caea2de4", - "author": "L. David Baron ", - "bug_id": 482935, - "desc": "Backed out changeset 3a829715fd39 (Bug 482935) on suspicion of causing mochitest-plain leaks.", - "pushdate": "2009-08-20 19:23:10", - "backsout": [ - "3a829715fd39" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 40004711.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/base/test/Makefile.in", - "content/base/test/bug482935.sjs", - "content/base/test/test_bug482935.html", - "netwerk/protocol/http/src/nsHttpChannel.cpp" - ], - "components": [], - "directories": [ - "content/base", - "content", - "netwerk/protocol", - "netwerk" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "85899e12310f9eb9be0db8ec7fd421c238c40a26", - "author": "L. David Baron ", - "bug_id": 445765, - "desc": "Backed out changeset 6b686281f9ac (Bug 445765) for causing a 3% Txul (Twinopen) regression on Linux.", - "pushdate": "2009-08-23 15:07:40", - "backsout": [ - "6b686281f9ac" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 40248581.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/base/nsLayoutUtils.cpp" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "201784b33fc94a3a55139cc7dc8684e66aee803c", - "author": "Boris Zbarsky ", - "bug_id": 488249, - "desc": "Backed out changeset eb32cbfba7f5 (bug 488249 followup) to fix test orange.", - "pushdate": "2009-08-25 00:52:50", - "backsout": [ - "eb32cbfba7f5" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 35606878.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "accessible/src/base/nsAccessible.cpp" - ], - "components": [], - "directories": [ - "accessible/src", - "accessible" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "7687616b2a35d841691da03b55eb482965eb1548", - "author": "Boris Zbarsky ", - "bug_id": 488249, - "desc": "Backed out changeset 59ae87416f96 (bug 488249 followup) to fix test orange.", - "pushdate": "2009-08-25 00:52:50", - "backsout": [ - "59ae87416f96" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 35606878.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/base/nsCSSFrameConstructor.cpp", - "widget/src/cocoa/nsMenuBarX.mm", - "widget/src/cocoa/nsNativeThemeCocoa.mm" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "widget", - "layout", - "layout/base", - "widget/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "2e8b6f1bf670fc64652d0f82cd140fc339b96daf", - "author": "Boris Zbarsky ", - "bug_id": 488249, - "desc": "Backed out changeset 4aa19414e651 (bug 488249) to fix test orange.", - "pushdate": "2009-08-25 00:52:50", - "backsout": [ - "4aa19414e651" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 35606878.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "accessible/src/base/nsAccessibilityService.cpp", - "accessible/src/base/nsAccessible.cpp", - "accessible/src/base/nsAccessibleTreeWalker.cpp", - "accessible/src/base/nsCoreUtils.cpp", - "accessible/src/base/nsTextEquivUtils.cpp", - "accessible/src/html/nsHTMLSelectAccessible.cpp", - "accessible/src/html/nsHyperTextAccessible.cpp", - "content/base/public/nsIContent.h", - "content/base/public/nsINode.h", - "content/base/src/mozSanitizingSerializer.cpp", - "content/base/src/nsContentUtils.cpp", - "content/base/src/nsCopySupport.cpp", - "content/base/src/nsDOMAttributeMap.cpp", - "content/base/src/nsDocument.cpp", - "content/base/src/nsFrameLoader.cpp", - "content/base/src/nsGenericElement.cpp", - "content/base/src/nsNodeUtils.cpp", - "content/base/src/nsObjectLoadingContent.cpp", - "content/base/src/nsPlainTextSerializer.cpp", - "content/base/src/nsScriptElement.cpp", - "content/base/src/nsXHTMLContentSerializer.cpp", - "content/base/src/nsXMLContentSerializer.cpp", - "content/events/src/nsContentEventHandler.cpp", - "content/events/src/nsEventStateManager.cpp", - "content/html/content/src/nsGenericHTMLElement.cpp", - "content/html/content/src/nsGenericHTMLElement.h", - "content/html/content/src/nsHTMLMediaElement.cpp", - "content/html/content/src/nsHTMLOptGroupElement.cpp", - "content/html/content/src/nsHTMLOptionElement.cpp", - "content/html/content/src/nsHTMLSelectElement.cpp", - "content/html/content/src/nsHTMLTableCellElement.cpp", - "content/html/content/src/nsHTMLTableRowElement.cpp", - "content/html/document/src/nsHTMLDocument.cpp", - "content/mathml/content/src/nsMathMLElement.cpp", - "content/svg/content/src/nsSVGElement.cpp", - "content/svg/content/src/nsSVGLength2.cpp", - "content/xbl/src/nsXBLContentSink.cpp", - "content/xbl/src/nsXBLPrototypeHandler.cpp", - "content/xbl/src/nsXBLService.cpp", - "content/xslt/src/xpath/txMozillaXPathTreeWalker.cpp", - "content/xslt/src/xpath/txXPathTreeWalker.h", - "content/xslt/src/xslt/txMozillaXMLOutput.cpp", - "content/xul/content/src/nsXULElement.cpp", - "content/xul/content/src/nsXULElement.h", - "content/xul/templates/src/nsXULContentBuilder.cpp", - "content/xul/templates/src/nsXULSortService.cpp", - "content/xul/templates/src/nsXULTemplateBuilder.cpp", - "docshell/base/nsDocShell.cpp", - "dom/base/nsDOMClassInfo.cpp", - "dom/base/nsFocusManager.cpp", - "embedding/components/find/src/nsFind.cpp", - "layout/base/nsCSSFrameConstructor.cpp", - "layout/base/nsPresShell.cpp", - "layout/forms/nsListControlFrame.cpp", - "layout/forms/nsTextControlFrame.cpp", - "layout/generic/nsBlockFrame.cpp", - "layout/generic/nsContainerFrame.cpp", - "layout/generic/nsFrame.cpp", - "layout/generic/nsFrameFrame.cpp", - "layout/generic/nsFrameSetFrame.cpp", - "layout/generic/nsImageMap.cpp", - "layout/generic/nsInlineFrame.cpp", - "layout/generic/nsObjectFrame.cpp", - "layout/generic/nsSelection.cpp", - "layout/mathml/nsMathMLContainerFrame.cpp", - "layout/printing/nsPrintEngine.cpp", - "layout/printing/nsPrintPreviewListener.cpp", - "layout/style/nsCSSRuleProcessor.cpp", - "layout/style/nsHTMLStyleSheet.cpp", - "layout/style/nsStyleUtil.cpp", - "layout/svg/base/src/nsSVGContainerFrame.cpp", - "layout/svg/base/src/nsSVGSwitchFrame.cpp", - "layout/xul/base/src/nsBox.cpp", - "layout/xul/base/src/nsListBoxBodyFrame.cpp", - "layout/xul/base/src/tree/src/nsTreeBodyFrame.cpp", - "layout/xul/base/src/tree/src/nsTreeContentView.cpp", - "toolkit/components/typeaheadfind/src/nsTypeAheadFind.cpp", - "widget/src/gtk2/nsNativeThemeGTK.cpp", - "widget/src/windows/nsNativeThemeWin.cpp", - "widget/src/xpwidgets/nsNativeTheme.cpp" - ], - "components": [ - "Core::DOM: Core & HTML", - "Core::CSS Parsing and Computation", - "Core::DOM: Navigation", - "Core::Layout: Block and Inline", - "Core::Layout: Form Controls", - "Core::Layout: Images, Video, and HTML Frames", - "Core::MathML", - "Core::Layout" - ], - "directories": [ - "accessible/src", - "accessible", - "docshell/base", - "layout/mathml", - "dom/base", - "content/xul", - "content/base", - "content", - "content/html", - "embedding/components", - "layout/generic", - "toolkit", - "dom", - "content/xslt", - "layout/style", - "layout", - "toolkit/components", - "layout/xul", - "docshell", - "layout/forms", - "layout/base", - "widget", - "embedding", - "content/mathml", - "layout/printing", - "layout/svg", - "content/svg", - "content/xbl", - "widget/src", - "content/events" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "b5c5bf855c53870a43f0681f68012ce2bf362366", - "author": "Boris Zbarsky ", - "bug_id": 474536, - "desc": "Backed out changeset 6ee269c6c118 (test for bug 474536) because it hangs on Tinderbox", - "pushdate": "2009-09-02 17:35:49", - "backsout": [ - "6ee269c6c118" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 36358257.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "netwerk/test/unit/data/bug474536/foo.jar", - "netwerk/test/unit/data/bug474536/foo.jar^headers^", - "netwerk/test/unit/test_bug474536.js" - ], - "components": [], - "directories": [ - "netwerk/test", - "netwerk" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "941346617e4fa0946dea86a611917d7362765d10", - "author": "Josh Aas ", - "bug_id": 510920, - "desc": "Backed out changeset e8c01867056a, breakpad update b=510920", - "pushdate": "2009-09-04 04:02:57", - "backsout": [ - "e8c01867056a" - ], - "backedoutby": "", - "author_email": "joshmoz@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 37496538.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/crashreporter/google-breakpad/Makefile.am", - "toolkit/crashreporter/google-breakpad/Makefile.in", - "toolkit/crashreporter/google-breakpad/aclocal.m4", - "toolkit/crashreporter/google-breakpad/src/breakpad_googletest_includes.h", - "toolkit/crashreporter/google-breakpad/src/client/linux/handler/exception_handler.cc", - "toolkit/crashreporter/google-breakpad/src/client/linux/handler/exception_handler.h", - "toolkit/crashreporter/google-breakpad/src/client/linux/handler/minidump_generator.cc", - "toolkit/crashreporter/google-breakpad/src/client/mac/Breakpad.xcodeproj/project.pbxproj", - "toolkit/crashreporter/google-breakpad/src/client/mac/Framework/Breakpad.h", - "toolkit/crashreporter/google-breakpad/src/client/mac/Framework/Breakpad.mm", - "toolkit/crashreporter/google-breakpad/src/client/mac/Framework/Breakpad_Prefix.pch", - "toolkit/crashreporter/google-breakpad/src/client/mac/Framework/Info.plist", - "toolkit/crashreporter/google-breakpad/src/client/mac/Framework/OnDemandServer.h", - "toolkit/crashreporter/google-breakpad/src/client/mac/Framework/OnDemandServer.mm", - "toolkit/crashreporter/google-breakpad/src/client/mac/UnitTests-Info.plist", - "toolkit/crashreporter/google-breakpad/src/client/mac/crash_generation/Inspector.h", - "toolkit/crashreporter/google-breakpad/src/client/mac/crash_generation/Inspector.mm", - "toolkit/crashreporter/google-breakpad/src/client/mac/crash_generation/InspectorMain.mm", - "toolkit/crashreporter/google-breakpad/src/client/mac/gcov/libgcov.a", - "toolkit/crashreporter/google-breakpad/src/client/mac/handler/exception_handler.cc", - "toolkit/crashreporter/google-breakpad/src/client/mac/handler/exception_handler.h", - "toolkit/crashreporter/google-breakpad/src/client/mac/handler/exception_handler_test.cc", - "toolkit/crashreporter/google-breakpad/src/client/mac/handler/minidump_generator.cc", - "toolkit/crashreporter/google-breakpad/src/client/mac/handler/minidump_generator.h", - "toolkit/crashreporter/google-breakpad/src/client/mac/handler/minidump_generator_test.cc", - "toolkit/crashreporter/google-breakpad/src/client/mac/handler/testcases/testdata/dump_syms_i386_breakpad.sym", - "toolkit/crashreporter/google-breakpad/src/client/mac/sender/Breakpad.nib/classes.nib", - "toolkit/crashreporter/google-breakpad/src/client/mac/sender/Breakpad.nib/info.nib", - "toolkit/crashreporter/google-breakpad/src/client/mac/sender/Breakpad.nib/keyedobjects.nib", - "toolkit/crashreporter/google-breakpad/src/client/mac/sender/English.lproj/InfoPlist.strings", - "toolkit/crashreporter/google-breakpad/src/client/mac/sender/English.lproj/Localizable.strings", - "toolkit/crashreporter/google-breakpad/src/client/mac/sender/ReporterIcon.graffle", - "toolkit/crashreporter/google-breakpad/src/client/mac/sender/crash_report_sender-Info.plist", - "toolkit/crashreporter/google-breakpad/src/client/mac/sender/crash_report_sender.h", - "toolkit/crashreporter/google-breakpad/src/client/mac/sender/crash_report_sender.icns", - "toolkit/crashreporter/google-breakpad/src/client/mac/sender/crash_report_sender.m", - "toolkit/crashreporter/google-breakpad/src/client/mac/testapp/Controller.h", - "toolkit/crashreporter/google-breakpad/src/client/mac/testapp/Controller.m", - "toolkit/crashreporter/google-breakpad/src/client/mac/testapp/English.lproj/InfoPlist.strings", - "toolkit/crashreporter/google-breakpad/src/client/mac/testapp/English.lproj/MainMenu.nib/classes.nib", - "toolkit/crashreporter/google-breakpad/src/client/mac/testapp/English.lproj/MainMenu.nib/info.nib", - "toolkit/crashreporter/google-breakpad/src/client/mac/testapp/English.lproj/MainMenu.nib/keyedobjects.nib", - "toolkit/crashreporter/google-breakpad/src/client/mac/testapp/Info.plist", - "toolkit/crashreporter/google-breakpad/src/client/mac/testapp/TestClass.h", - "toolkit/crashreporter/google-breakpad/src/client/mac/testapp/TestClass.mm", - "toolkit/crashreporter/google-breakpad/src/client/mac/testapp/bomb.icns", - "toolkit/crashreporter/google-breakpad/src/client/mac/testapp/crashInMain", - "toolkit/crashreporter/google-breakpad/src/client/mac/testapp/crashduringload", - "toolkit/crashreporter/google-breakpad/src/client/mac/testapp/main.m", - "toolkit/crashreporter/google-breakpad/src/client/mac/tests/BreakpadFramework_Test.mm", - "toolkit/crashreporter/google-breakpad/src/client/mac/tests/SimpleStringDictionaryTest.h", - "toolkit/crashreporter/google-breakpad/src/client/mac/tests/SimpleStringDictionaryTest.mm", - "toolkit/crashreporter/google-breakpad/src/client/minidump_file_writer_unittest.cc", - "toolkit/crashreporter/google-breakpad/src/client/windows/crash_generation/crash_generation_server.cc", - "toolkit/crashreporter/google-breakpad/src/client/windows/crash_generation/crash_generation_server.h", - "toolkit/crashreporter/google-breakpad/src/client/windows/handler/exception_handler.cc", - "toolkit/crashreporter/google-breakpad/src/client/windows/handler/exception_handler.h", - "toolkit/crashreporter/google-breakpad/src/client/windows/sender/crash_report_sender.cc", - "toolkit/crashreporter/google-breakpad/src/client/windows/sender/crash_report_sender.vcproj", - "toolkit/crashreporter/google-breakpad/src/common/linux/dump_symbols.cc", - "toolkit/crashreporter/google-breakpad/src/common/linux/dump_symbols.h", - "toolkit/crashreporter/google-breakpad/src/common/linux/file_id.cc", - "toolkit/crashreporter/google-breakpad/src/common/mac/GTMDefines.h", - "toolkit/crashreporter/google-breakpad/src/common/mac/GTMGarbageCollection.h", - "toolkit/crashreporter/google-breakpad/src/common/mac/GTMLogger.h", - "toolkit/crashreporter/google-breakpad/src/common/mac/GTMLogger.m", - "toolkit/crashreporter/google-breakpad/src/common/mac/MachIPC.h", - "toolkit/crashreporter/google-breakpad/src/common/mac/MachIPC.mm", - "toolkit/crashreporter/google-breakpad/src/common/mac/SimpleStringDictionary.h", - "toolkit/crashreporter/google-breakpad/src/common/mac/SimpleStringDictionary.mm", - "toolkit/crashreporter/google-breakpad/src/common/mac/testing/GTMSenTestCase.h", - "toolkit/crashreporter/google-breakpad/src/common/mac/testing/GTMSenTestCase.m", - "toolkit/crashreporter/google-breakpad/src/common/solaris/dump_symbols.cc", - "toolkit/crashreporter/google-breakpad/src/common/solaris/file_id.cc", - "toolkit/crashreporter/google-breakpad/src/common/windows/http_upload.cc", - "toolkit/crashreporter/google-breakpad/src/common/windows/http_upload.h", - "toolkit/crashreporter/google-breakpad/src/google_breakpad/common/minidump_cpu_ppc.h", - "toolkit/crashreporter/google-breakpad/src/google_breakpad/processor/basic_source_line_resolver.h", - "toolkit/crashreporter/google-breakpad/src/google_breakpad/processor/minidump.h", - "toolkit/crashreporter/google-breakpad/src/google_breakpad/processor/minidump_processor.h", - "toolkit/crashreporter/google-breakpad/src/google_breakpad/processor/source_line_resolver_interface.h", - "toolkit/crashreporter/google-breakpad/src/google_breakpad/processor/symbol_supplier.h", - "toolkit/crashreporter/google-breakpad/src/processor/basic_source_line_resolver.cc", - "toolkit/crashreporter/google-breakpad/src/processor/basic_source_line_resolver_unittest.cc", - "toolkit/crashreporter/google-breakpad/src/processor/contained_range_map-inl.h", - "toolkit/crashreporter/google-breakpad/src/processor/minidump_processor.cc", - "toolkit/crashreporter/google-breakpad/src/processor/minidump_processor_unittest.cc", - "toolkit/crashreporter/google-breakpad/src/processor/minidump_stackwalk.cc", - "toolkit/crashreporter/google-breakpad/src/processor/simple_symbol_supplier.cc", - "toolkit/crashreporter/google-breakpad/src/processor/simple_symbol_supplier.h", - "toolkit/crashreporter/google-breakpad/src/processor/stackwalker.cc", - "toolkit/crashreporter/google-breakpad/src/tools/linux/dump_syms/dump_syms.cc", - "toolkit/crashreporter/google-breakpad/src/tools/mac/crash_report/crash_report.mm", - "toolkit/crashreporter/google-breakpad/src/tools/mac/crash_report/on_demand_symbol_supplier.h", - "toolkit/crashreporter/google-breakpad/src/tools/mac/crash_report/on_demand_symbol_supplier.mm", - "toolkit/crashreporter/google-breakpad/src/tools/windows/symupload/symupload.cc" - ], - "components": [ - "Toolkit::Crash Reporting", - "Firefox Build System::General" - ], - "directories": [ - "toolkit", - "toolkit/crashreporter" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "845b66a2eb91290ec6ef4a5cf2c2ec587b5c8ca3", - "author": "D\u00e3o Gottwald ", - "bug_id": 514891, - "desc": "Backed out changeset b652e12fc7e3 because of bug 514891", - "pushdate": "2009-09-07 12:18:27", - "backsout": [ - "b652e12fc7e3" - ], - "backedoutby": "", - "author_email": "dao@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 39132370.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/base/content/browser-tabPreviews.js" - ], - "components": [], - "directories": [ - "browser/base", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "ce62745a7c9c72cd51034b9f9710af3d2e45d038", - "author": "D\u00e3o Gottwald ", - "bug_id": 514891, - "desc": "Backed out changeset 83ba2c6e25eb because of bug 514891", - "pushdate": "2009-09-07 12:18:27", - "backsout": [ - "83ba2c6e25eb" - ], - "backedoutby": "", - "author_email": "dao@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 39132370.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/xul/base/src/nsMenuPopupFrame.cpp" - ], - "components": [], - "directories": [ - "layout/xul", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "c1e5dcec20dd02e3de3d6f785408840aaa91b48d", - "author": "Josh Aas ", - "bug_id": 506812, - "desc": "Back out changeset 845b625b5eb5. b=506812", - "pushdate": "2009-09-09 13:59:18", - "backsout": [ - "845b625b5eb5" - ], - "backedoutby": "", - "author_email": "joshmoz@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 37964319.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/xre/nsAppRunner.cpp" - ], - "components": [ - "Toolkit::Startup and Profile System" - ], - "directories": [ - "toolkit", - "toolkit/xre" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "6119349e864e7d27faf80076cb7ceb790a846fc5", - "author": "Jeff Muizelaar ", - "bug_id": 514803, - "desc": "Backout ffcfaed61bed: Taras Glek \u2013 Bug 514803 - Fix for new Date().toLocaleString() triggers \"An error occured throwing an exception\". Moved more charset files to jar r=bsmedberg\n\nThis caused an unexplained Ts improvement and obj-c exceptions during Ts.", - "pushdate": "2009-09-14 20:55:06", - "backsout": [ - "ffcfaed61bed" - ], - "backedoutby": "", - "author_email": "jmuizelaar@mozilla.com", - "reviewers": [ - "bsmedberg" - ], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 30589658.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/installer/package-manifest.in", - "browser/installer/removed-files.in", - "intl/uconv/src/Makefile.in", - "intl/uconv/src/jar.mn" - ], - "components": [ - "Firefox::Installer" - ], - "directories": [ - "browser/installer", - "intl", - "browser", - "intl/uconv" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "71e1c4bdc3c8c9be8e849c871e294dc8a11c8be7", - "author": "Justin Dolske ", - "bug_id": 497495, - "desc": "Backed out changeset a3f33def2dca (bug 497495 part 4)", - "pushdate": "2009-09-15 00:27:03", - "backsout": [ - "a3f33def2dca" - ], - "backedoutby": "", - "author_email": "dolske@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 39330067.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/base/nsIPresShell.h", - "layout/base/nsPresArena.cpp", - "layout/base/nsPresArena.h", - "layout/base/nsPresShell.cpp", - "layout/generic/nsFrame.cpp", - "layout/generic/nsFrame.h", - "layout/generic/nsQueryFrame.h" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "layout/generic", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "dc2598d08078bade237e66b83bf0b29ebc6b7db7", - "author": "Andreas Gal ", - "bug_id": 504516, - "desc": "Backed out changeset 48c039f7ac4f (bug 504516).", - "pushdate": "2009-09-16 23:16:27", - "backsout": [ - "48c039f7ac4f" - ], - "backedoutby": "3a8acec844913490ca457c9daa16663cbaf5a411", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 38143509.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jstracer.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "0ae65841fcf88595e023f93b86451f5fd341824e", - "author": "Brendan Eich ", - "bug_id": 471214, - "desc": "Back out changeset aff171a8c4f0 (bug 471214).", - "pushdate": "2009-09-16 23:16:27", - "backsout": [ - "aff171a8c4f0" - ], - "backedoutby": "", - "author_email": "brendan@mozilla.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 40358494.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/imacros.c.out", - "js/src/jsapi.cpp", - "js/src/jsarray.cpp", - "js/src/jsemit.cpp", - "js/src/jsinterp.cpp", - "js/src/jsiter.cpp", - "js/src/jsobj.cpp", - "js/src/jsobj.h", - "js/src/jsopcode.cpp", - "js/src/jsopcode.tbl", - "js/src/jsops.cpp", - "js/src/jsparse.cpp", - "js/src/jsscope.cpp", - "js/src/jsscope.h", - "js/src/jstracer.cpp", - "js/src/jstypes.h", - "js/src/jsxdrapi.h" - ], - "components": [ - "Core::JavaScript Engine" - ], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "3a8acec844913490ca457c9daa16663cbaf5a411", - "author": "Andreas Gal ", - "bug_id": 504516, - "desc": "Backed out changeset dc2598d08078 (re-landing bug 504516).", - "pushdate": "2009-09-16 23:16:27", - "backsout": [ - "dc2598d08078" - ], - "backedoutby": "", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 38143509.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jstracer.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "cda3d0eefedd79d3741d474678ab396d56c56ba1", - "author": "Andreas Gal ", - "bug_id": 515290, - "desc": "Backed out changeset 5c7fbeed8f96 (bug 515290, accidentally committed unrelated changes with the bug).", - "pushdate": "2009-09-16 23:16:27", - "backsout": [ - "5c7fbeed8f96" - ], - "backedoutby": "", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 38143509.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/nanojit/NativeARM.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "68b5e9772b4cd613caad675815d949a7528526a8", - "author": "Ted Mielczarek ", - "bug_id": 494165, - "desc": "Backed out changeset e5f6affc4c88 for breaking Mochitest\nBug 494165 - Support --total-chunks, --this-chunk, --chunk-by-dir, and --shuffle arguments to runtests.py. r=ted", - "pushdate": "2009-09-21 13:10:14", - "backsout": [ - "e5f6affc4c88" - ], - "backedoutby": "", - "author_email": "ted.mielczarek@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 47506850.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "testing/mochitest/runtests.py.in", - "testing/mochitest/tests/SimpleTest/setup.js" - ], - "components": [ - "Testing::Mochitest" - ], - "directories": [ - "testing/mochitest", - "testing" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "80f8fb6eb86e72f39cd3f6ff0f6af48329e8b380", - "author": "Markus Stange ", - "bug_id": 517804, - "desc": "Backed out changeset 7799cfb99362 (Bug 517804 - Flush reflows and invalidations during viewWillDraw) because it caused a ts_shutdown regression.", - "pushdate": "2009-09-22 20:54:29", - "backsout": [ - "7799cfb99362" - ], - "backedoutby": "", - "author_email": "mstange@themasta.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 38863365.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "view/src/nsViewManager.cpp", - "widget/public/nsGUIEvent.h", - "widget/src/cocoa/nsChildView.mm" - ], - "components": [], - "directories": [ - "widget", - "widget/public", - "view/src", - "view", - "widget/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "75a5fcf1a393cfccab3141f4774307d4b05c31fd", - "author": "Jeff Muizelaar ", - "bug_id": 512865, - "desc": "Backed out changeset cb4f078cc8cb (bug 512865)\n\nWas causing crashes on the leak test box.", - "pushdate": "2009-09-25 03:36:19", - "backsout": [ - "cb4f078cc8cb" - ], - "backedoutby": "", - "author_email": "jmuizelaar@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 31477731.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "gfx/qcms/Makefile.in", - "gfx/qcms/qcmsint.h", - "gfx/qcms/transform-sse1.c", - "gfx/qcms/transform-sse2.c", - "gfx/qcms/transform.c" - ], - "components": [ - "Core::Graphics" - ], - "directories": [ - "gfx/qcms", - "gfx" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "687f2a1f5ad278bbc52e6e4ff3ef829d18339ef0", - "author": "Jason Orendorff ", - "bug_id": 500431, - "desc": "Backed out changeset eafee0100926 (bug 500431) due to Tinderbox orangeness", - "pushdate": "2009-09-26 03:38:06", - "backsout": [ - "eafee0100926" - ], - "backedoutby": "", - "author_email": "jorendorff@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 41840815.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jspropcache.h" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "873dd3e379db6061c9f0cb4c0c401fb0bc656421", - "author": "Jason Orendorff ", - "bug_id": 500431, - "desc": "Backed out changeset 8abad92fd850 (bug 500431) due to Tinderbox orangeness", - "pushdate": "2009-09-26 03:38:06", - "backsout": [ - "8abad92fd850" - ], - "backedoutby": "", - "author_email": "jorendorff@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 41840815.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsops.cpp", - "js/src/jspropcache.h", - "js/src/jspropcacheinlines.h" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "31b6f6e8a56d0074eb82807a47162054b6fd522d", - "author": "Jason Orendorff ", - "bug_id": 500431, - "desc": "Backed out changeset 3f508cfdfa36 (bug 500431) due to tinderbox orangeness", - "pushdate": "2009-09-26 03:38:06", - "backsout": [ - "3f508cfdfa36" - ], - "backedoutby": "", - "author_email": "jorendorff@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 41840815.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/Makefile.in", - "js/src/jsbuiltins.cpp", - "js/src/jscntxt.cpp", - "js/src/jscntxt.h", - "js/src/jsinterp.cpp", - "js/src/jsobj.cpp", - "js/src/jsops.cpp", - "js/src/jspropcache.cpp", - "js/src/jspropcache.h", - "js/src/jspropcacheinlines.h", - "js/src/jsscript.cpp", - "js/src/jstracer.cpp" - ], - "components": [ - "Firefox Build System::General" - ], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "0f39d12ba50518f25c340f088103ba6f1c607b26", - "author": "Jason Orendorff ", - "bug_id": 500431, - "desc": "Backed out changeset 2fbd2420ef8b (bug 500431) due to Tinderbox orangeness.", - "pushdate": "2009-09-26 03:38:06", - "backsout": [ - "2fbd2420ef8b" - ], - "backedoutby": "", - "author_email": "jorendorff@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 41840815.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/Makefile.in", - "js/src/jsinterp.cpp", - "js/src/jsinterp.h", - "js/src/jspropcache.cpp", - "js/src/jspropcache.h" - ], - "components": [ - "Firefox Build System::General" - ], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "2c67a109e6265c64b3126c111de59482018242f0", - "author": "Robert Sayre ", - "bug_id": 518448, - "desc": "Backed out changeset f5ea964eb493. (Brendan Eich \u2014 High-level CSE for shape guards (518448, r=jorendorff).", - "pushdate": "2009-09-26 15:23:09", - "backsout": [ - "f5ea964eb493" - ], - "backedoutby": "", - "author_email": "sayrer@gmail.com", - "reviewers": [ - "jorendorff" - ], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 40766756.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsscope.cpp", - "js/src/jstracer.cpp", - "js/src/jstracer.h", - "js/src/nanojit/LIR.h", - "js/src/nanojit/LIRopcode.tbl" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "744a11942d04650232e02df7954db4dc5452ef79", - "author": "Josh Aas ", - "bug_id": 506812, - "desc": "Backed out changeset 65aff8912e7c. b=506812", - "pushdate": "2009-09-27 07:10:24", - "backsout": [ - "65aff8912e7c" - ], - "backedoutby": "", - "author_email": "joshmoz@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 39494985.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/xre/nsAppRunner.cpp", - "xpcom/io/nsLocalFileOSX.mm" - ], - "components": [ - "Toolkit::Startup and Profile System" - ], - "directories": [ - "xpcom", - "xpcom/io", - "toolkit", - "toolkit/xre" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "08c4c88536854e24ec9cc9bc14f5d148e39bc661", - "author": "Josh Aas ", - "bug_id": 506812, - "desc": "Backed out changeset 76c570389975. b=506812", - "pushdate": "2009-09-27 09:55:57", - "backsout": [ - "76c570389975" - ], - "backedoutby": "", - "author_email": "joshmoz@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 39504918.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "xpcom/io/nsLocalFileOSX.h", - "xpcom/io/nsLocalFileOSX.mm" - ], - "components": [], - "directories": [ - "xpcom/io", - "xpcom" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "7eab054403ff5dc04f3ce061125a32049476041a", - "author": "Shawn Wilsher ", - "bug_id": 517604, - "desc": "Backed out changeset 467f14a11325 (bug 517604)", - "pushdate": "2009-10-01 00:04:41", - "backsout": [ - "467f14a11325" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 41761050.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "xpcom/tests/TestHarness.h" - ], - "components": [ - "Core::XPCOM" - ], - "directories": [ - "xpcom", - "xpcom/tests" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "2144fdf97e50c3a09502d25f593785a66b237102", - "author": "Boris Zbarsky ", - "bug_id": 518940, - "desc": "Backed out changeset e22b5d4e8ce9 (bug 518940) on suspicion of causing Linux orange.", - "pushdate": "2009-10-01 03:19:04", - "backsout": [ - "e22b5d4e8ce9" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 38812452.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "modules/plugin/test/mochitest/Makefile.in", - "modules/plugin/test/mochitest/test_npruntime_npninvoke.html", - "modules/plugin/test/testplugin/README", - "modules/plugin/test/testplugin/nptest.cpp" - ], - "components": [], - "directories": [ - "modules/plugin", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "fb9d4a6b8330adff5022ccdaeb52285f3d95a693", - "author": "Daniel Holbert ", - "bug_id": 518991, - "desc": "Backed out changeset 58c5864cb9c6 (Bug 518991) due to linux orange (test failure in test_bug408328.html & 9240-byte leak)", - "pushdate": "2009-10-01 06:43:45", - "backsout": [ - "58c5864cb9c6" - ], - "backedoutby": "", - "author_email": "dholbert@cs.stanford.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 43548352.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/xpconnect/src/XPCChromeObjectWrapper.cpp", - "js/src/xpconnect/src/xpcinlines.h", - "js/src/xpconnect/src/xpcjsruntime.cpp", - "js/src/xpconnect/src/xpcprivate.h" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "f0bf246917580c878b38181ad1ed519b2a181934", - "author": "Igor Bukanov ", - "bug_id": 517199, - "desc": "Backed out changeset 31682547b6f1 - bug 517199 has shown persistent failure on Windows tinderboxes.", - "pushdate": "2009-10-07 06:47:58", - "backsout": [ - "31682547b6f1" - ], - "backedoutby": "", - "author_email": "igor@mir2.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 41073179.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsatom.cpp", - "js/src/jscntxt.h", - "js/src/jsgc.cpp", - "js/src/jsgc.h", - "js/src/jsxml.h" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "0416997adea8dea5e38e9ff5ed802fd1d29857b3", - "author": "Igor Bukanov ", - "bug_id": 517199, - "desc": "Backed out changeset 19b4c1cacdb8 - everything related to bug 517199.", - "pushdate": "2009-10-07 06:47:58", - "backsout": [ - "19b4c1cacdb8" - ], - "backedoutby": "", - "author_email": "igor@mir2.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 41073179.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsapi.cpp", - "js/src/jsarray.cpp", - "js/src/jsbuiltins.cpp", - "js/src/jsfun.h", - "js/src/jsgc.cpp", - "js/src/jsgc.h", - "js/src/jsobj.cpp", - "js/src/jsops.cpp", - "js/src/jsstr.cpp", - "js/src/jsxml.cpp" - ], - "components": [ - "Core::JavaScript Engine" - ], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "5f550d67ae78e4db972d23f5132d3d304996cdc3", - "author": "Peter Van der Beken ", - "bug_id": 517196, - "desc": "Backed out changeset 542fa9413bd0, fix for bug 517196 (The JSClass of wrappers shouldn't change when morphing from slim to XPCWrappedNative), to try to fix orange.", - "pushdate": "2009-10-08 20:42:17", - "backsout": [ - "542fa9413bd0" - ], - "backedoutby": "", - "author_email": "peterv@propagandism.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 40970364.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "caps/src/nsScriptSecurityManager.cpp", - "js/src/xpconnect/idl/nsIXPConnect.idl", - "js/src/xpconnect/src/XPCChromeObjectWrapper.cpp", - "js/src/xpconnect/src/nsXPConnect.cpp", - "js/src/xpconnect/src/xpcconvert.cpp", - "js/src/xpconnect/src/xpcjsid.cpp", - "js/src/xpconnect/src/xpcprivate.h", - "js/src/xpconnect/src/xpcquickstubs.cpp", - "js/src/xpconnect/src/xpcwrappednative.cpp", - "js/src/xpconnect/src/xpcwrappednativejsops.cpp", - "js/src/xpconnect/src/xpcwrappednativescope.cpp" - ], - "components": [], - "directories": [ - "caps", - "js/src", - "js", - "caps/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "8d2de8ddfa3b79064d583a93d239153849decef6", - "author": "Markus Stange ", - "bug_id": 456646, - "desc": "Backed out changeset 8c4658f8f0dc, bug 456646 (Cocoa print dialog) - we can do better.", - "pushdate": "2009-10-09 07:14:00", - "backsout": [ - "8c4658f8f0dc" - ], - "backedoutby": "", - "author_email": "mstange@themasta.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 40282936.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/app/Makefile.in", - "config/autoconf.mk.in", - "configure.in", - "dom/locales/en-US/chrome/printdialog.properties", - "dom/locales/jar.mn", - "embedding/components/printingui/src/mac/Makefile.in", - "embedding/components/printingui/src/mac/nsPrintingPromptService.h", - "embedding/components/printingui/src/mac/nsPrintingPromptServiceX.mm", - "embedding/components/printingui/src/win/nsPrintDialogUtil.cpp", - "toolkit/locales/en-US/chrome/global/gnomeprintdialog.properties", - "toolkit/locales/en-US/chrome/global/printdialog.properties", - "toolkit/locales/jar.mn", - "widget/public/Makefile.in", - "widget/src/cocoa/Makefile.in", - "widget/src/cocoa/nsDeviceContextSpecX.h", - "widget/src/cocoa/nsDeviceContextSpecX.mm", - "widget/src/cocoa/nsPrintDialogX.h", - "widget/src/cocoa/nsPrintDialogX.mm", - "widget/src/cocoa/nsPrintOptionsX.h", - "widget/src/cocoa/nsPrintOptionsX.mm", - "widget/src/cocoa/nsPrintSettingsX.h", - "widget/src/cocoa/nsPrintSettingsX.mm", - "widget/src/cocoa/nsWidgetFactory.mm", - "widget/src/gtk2/nsPrintDialogGTK.cpp" - ], - "components": [ - "Core::DOM: Core & HTML", - "Firefox Build System::General" - ], - "directories": [ - "embedding/components", - "widget", - "embedding", - "toolkit", - "browser/app", - "toolkit/locales", - "config", - "dom/locales", - "dom", - "widget/public", - "browser", - "widget/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "505a2a075e1125d4e22bd39de319aba6b75fd275", - "author": "L. David Baron ", - "bug_id": 516013, - "desc": "Backed out changeset 5f03363ae12d (Bug 516013) due to xpcshell test failure (test_LightweightThemeManager) caused by exception thrown from the code added in that changeset.", - "pushdate": "2009-10-09 20:32:36", - "backsout": [ - "5f03363ae12d" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 44328877.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/mozapps/extensions/src/LightweightThemeManager.jsm" - ], - "components": [], - "directories": [ - "toolkit/mozapps", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "b40bf2ef14a7abd4780f5e27b3f1b6a6eeaf2040", - "author": "Boris Zbarsky ", - "bug_id": 489925, - "desc": "Backed out changeset c5fe17b1caa9 (bug 489925)", - "pushdate": "2009-10-13 20:51:31", - "backsout": [ - "c5fe17b1caa9" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 39912399.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/base/src/nsDocument.cpp", - "content/base/test/Makefile.in", - "content/base/test/test_bug489925.xhtml" - ], - "components": [], - "directories": [ - "content/base", - "content" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "86a6cd7011186bb5f48d02df639989627ce159bc", - "author": "Paul O\u2019Shannessy ", - "bug_id": 511761, - "desc": "Backed out changeset 89f53914ecd9 (bug 511761)", - "pushdate": "2009-10-14 19:44:25", - "backsout": [ - "89f53914ecd9" - ], - "backedoutby": "", - "author_email": "paul@oshannessy.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 17373629.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/app/Makefile.in", - "toolkit/mozapps/extensions/src/nsExtensionManager.js.in", - "toolkit/xre/nsAppRunner.cpp", - "xpcom/build/nsXPComInit.cpp", - "xpcom/components/nsComponentManager.cpp", - "xpcom/io/nsFastLoadFile.cpp", - "xpcom/system/nsIXULRuntime.idl", - "xulrunner/app/Makefile.in" - ], - "components": [ - "Core::XPCOM", - "Firefox Build System::General", - "Toolkit::Startup and Profile System" - ], - "directories": [ - "toolkit", - "browser/app", - "xulrunner/app", - "xpcom/io", - "toolkit/xre", - "toolkit/mozapps", - "xpcom/build", - "xpcom/system", - "browser", - "xpcom", - "xpcom/components", - "xulrunner" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "c0af5f72e7a8c6ad41dfa35b404487eb98bde2a8", - "author": "Andreas Gal ", - "bug_id": 521880, - "desc": "Backed out changeset 1a747dd43904 (bug 521880).", - "pushdate": "2009-10-16 17:35:08", - "backsout": [ - "1a747dd43904" - ], - "backedoutby": "", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 40715030.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jstl.h", - "js/src/jstracer.cpp", - "js/src/jstracer.h", - "js/src/jsvector.h" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "39b3dbc393bf8996d58e6b2289d6d15622c5175c", - "author": "Igor Bukanov ", - "bug_id": 505315, - "desc": "Backed out changeset 487b81c753c0 - landing of bug 505315 caused talos crashes across platforms.", - "pushdate": "2009-10-16 17:35:08", - "backsout": [ - "487b81c753c0" - ], - "backedoutby": "", - "author_email": "igor@mir2.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 41889609.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsapi.cpp", - "js/src/jsarray.cpp", - "js/src/jscntxt.cpp", - "js/src/jscntxt.h", - "js/src/jsgc.cpp", - "js/src/jsgc.h", - "js/src/jsobj.cpp", - "js/src/jsops.cpp", - "js/src/jstracer.cpp" - ], - "components": [ - "Core::JavaScript Engine" - ], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "ef149d6975fba3847d8fa31a0913b8669e39bfd7", - "author": "Brian Crowder ", - "bug_id": 519843, - "desc": "Backed out changeset 9992a4a638e2 due to Tp regression (was bug 519843)", - "pushdate": "2009-10-21 14:58:16", - "backsout": [ - "9992a4a638e2" - ], - "backedoutby": "", - "author_email": "crowder@fiverocks.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 41181104.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/shell/js.cpp" - ], - "components": [ - "Core::JavaScript Engine" - ], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "f702deeb07be290c488489585cb969ee202ff537", - "author": "Brian Crowder ", - "bug_id": 517109, - "desc": "Backed out changeset 899023a9fbb0 due to Ts regression (was bug 517109)", - "pushdate": "2009-10-21 14:59:50", - "backsout": [ - "899023a9fbb0" - ], - "backedoutby": "", - "author_email": "crowder@fiverocks.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 41181198.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/components/faststart/FastStartup.js" - ], - "components": [], - "directories": [ - "toolkit/components", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "e3f00dd9617b2918b6ee116026914972eef95a61", - "author": "Markus Stange ", - "bug_id": 300904, - "desc": "Backed out changeset 3ee95c194798, bug 300904 (tracking rects) in order to investigate the Mac DHTML performance regression.", - "pushdate": "2009-10-21 15:10:31", - "backsout": [ - "3ee95c194798" - ], - "backedoutby": "", - "author_email": "mstange@themasta.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 41348327.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "widget/src/cocoa/nsChildView.h", - "widget/src/cocoa/nsChildView.mm", - "widget/src/cocoa/nsCocoaWindow.mm", - "widget/tests/native_mouse_mac_window.xul" - ], - "components": [], - "directories": [ - "widget/tests", - "widget", - "widget/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "9e086fa7728869c161e37deefacb75ddcda34f65", - "author": "L. David Baron ", - "bug_id": 523934, - "desc": "Backed out changeset 1aea70ef6f63 (temporary debugging code for bug 523934).", - "pushdate": "2009-10-23 14:47:50", - "backsout": [ - "1aea70ef6f63" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 45517791.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/base/crashtests/500467-1.html", - "layout/forms/crashtests/366537-1.xhtml", - "layout/tools/reftest/reftest.js" - ], - "components": [ - "Core::Layout", - "Core::Layout: Form Controls" - ], - "directories": [ - "layout/tools", - "layout/forms", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "2909091fb254aa31b11cdfb4f4e9a25ab4253d85", - "author": "Igor Bukanov ", - "bug_id": 524346, - "desc": "Backed out changeset 14c76164f4c2 - patch for bug 524346 caused test fails", - "pushdate": "2009-10-29 21:11:42", - "backsout": [ - "14c76164f4c2" - ], - "backedoutby": "", - "author_email": "igor@mir2.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 43025803.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsapi.cpp", - "js/src/jsarray.cpp", - "js/src/jsbuiltins.cpp", - "js/src/jscntxt.h", - "js/src/jsdate.cpp", - "js/src/jsmath.cpp", - "js/src/jsnum.cpp", - "js/src/jsnum.h", - "js/src/jsops.cpp", - "js/src/jsparse.cpp", - "js/src/jsstr.cpp", - "js/src/jstracer.cpp", - "js/src/jsxml.cpp" - ], - "components": [ - "Core::JavaScript: Standard Library", - "Core::JavaScript Engine" - ], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "fdc781e5774d92e5cd542b878ef2d33eceb00f4f", - "author": "David Mandelin ", - "bug_id": 515211, - "desc": "Backed out changeset 109b74e8e902 due to tinderbox bustage (was bug 515211)", - "pushdate": "2009-10-30 18:15:48", - "backsout": [ - "109b74e8e902" - ], - "backedoutby": "", - "author_email": "dmandelin@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 47851757.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "build/wince/shunt/mozce_shunt.def.in", - "memory/jemalloc/Makefile.in", - "memory/jemalloc/jemalloc.c", - "memory/jemalloc/jemalloc.h" - ], - "components": [], - "directories": [ - "build/wince", - "memory", - "memory/jemalloc", - "build" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "6258b513a554c5098972f89716461dd5460f09c2", - "author": "Boris Zbarsky ", - "bug_id": 526178, - "desc": "Backed out changeset 2fa27d8cd3d2 (bug 526178) to fix browser-chrome orange.", - "pushdate": "2009-11-05 01:42:46", - "backsout": [ - "2fa27d8cd3d2" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 41830674.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/xbl/test/Makefile.in", - "content/xbl/test/test_bug526178.xhtml", - "layout/base/nsCSSFrameConstructor.cpp", - "layout/base/nsCSSFrameConstructor.h" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "content", - "layout", - "layout/base", - "content/xbl" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "811e1602f0ab7f1c533ad8e1e54f756b9b8eab08", - "author": "Phil Ringnalda ", - "bug_id": 526789, - "desc": "Backed out changeset a696d331ebf7 (bug 526789) for test failures", - "pushdate": "2009-11-10 03:48:53", - "backsout": [ - "a696d331ebf7" - ], - "backedoutby": "", - "author_email": "philringnalda@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 44332543.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "extensions/cookie/test/unit/test_bug481775.js", - "extensions/cookie/test/unit/test_bug526789.js", - "netwerk/cookie/public/nsICookieManager.idl", - "netwerk/cookie/src/nsCookieService.cpp" - ], - "components": [], - "directories": [ - "netwerk/cookie", - "extensions", - "netwerk", - "extensions/cookie" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "e8f791a62494b867be1757d44fe4e045afd406d6", - "author": "Benjamin Smedberg ", - "bug_id": 525221, - "desc": "Backed out changeset 3e1290bba902 - Bug 525221 which was committed accidentally.", - "pushdate": "2009-11-10 14:54:29", - "backsout": [ - "3e1290bba902" - ], - "backedoutby": "", - "author_email": "benjamin@smedbergs.us", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 51833105.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "nsprpub/config/rules.mk" - ], - "components": [ - "NSPR::NSPR" - ], - "directories": [ - "nsprpub/config", - "nsprpub" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "eb6ad91709a7d298f32e70dbee18e9babc4a420a", - "author": "D\u00e3o Gottwald ", - "bug_id": 528776, - "desc": "Backed out changeset fa212b6a9d72 to see if it caused bug 528776", - "pushdate": "2009-11-18 08:23:36", - "backsout": [ - "fa212b6a9d72" - ], - "backedoutby": "", - "author_email": "dao@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 45339079.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/components/sessionstore/test/browser/browser_394759.js" - ], - "components": [], - "directories": [ - "browser/components", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "ac278013c79942a704e998304c58067803d41e2d", - "author": "Jeff Walden ", - "bug_id": 478047, - "desc": "Backed out changeset 975b36c50d33; bug 478047's fix was misguided and contra ES5, and moving to ES5 semantics at this late date in the release cycle seems unwise. We'll move from old and busted directly to ES5 shortly after 3.6 so as to provide maximum time for ironing out incompatibilities in the wild. r=gal", - "pushdate": "2009-11-19 10:58:47", - "backsout": [ - "975b36c50d33" - ], - "backedoutby": "", - "author_email": "jwalden@mit.edu", - "reviewers": [ - "gal" - ], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 47729464.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsobj.cpp", - "js/src/tests/ecma_3_1/extensions/jstests.list", - "js/src/tests/ecma_3_1/extensions/regress-478047.js", - "js/src/tests/js1_5/extensions/regress-452178.js", - "js/src/tests/js1_6/extensions/regress-414098.js" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "6432560e430e1db22fe038e4450a4912221837f4", - "author": "Mark Banner ", - "bug_id": 495392, - "desc": "Back out changeset c9c35333436b / Bug 495392 due to build bustage", - "pushdate": "2009-11-24 22:31:04", - "backsout": [ - "c9c35333436b" - ], - "backedoutby": "", - "author_email": "bugzilla@standard8.plus.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 46617168.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "widget/src/gtk2/nsClipboard.cpp", - "widget/src/gtk2/nsDragService.cpp" - ], - "components": [], - "directories": [ - "widget", - "widget/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "e101dddbc4324f9ef356207c1bcf8a65b184f5ff", - "author": "Igor Bukanov ", - "bug_id": 424558, - "desc": "Backed out changeset b774250f04d3 - the landed patch for bug 424558 has regressed.", - "pushdate": "2009-12-01 18:15:12", - "backsout": [ - "b774250f04d3" - ], - "backedoutby": "", - "author_email": "igor@mir2.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 45866413.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsopcode.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "fb34a7163a43fbf79f8d1a460804452df4cf86c7", - "author": "Robert Sayre ", - "bug_id": 530507, - "desc": "Backed out changeset c696751593d6. Tolerate race condition or broken resolve hook (530507, r=jorendorff).", - "pushdate": "2009-12-01 18:15:12", - "backsout": [ - "c696751593d6" - ], - "backedoutby": "", - "author_email": "sayrer@gmail.com", - "reviewers": [ - "jorendorff" - ], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 46479479.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsobj.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "ee7bfc1923adbc60e9223103e88b3d14286137d7", - "author": "Robert Sayre ", - "bug_id": 473228, - "desc": "Backed out changeset c03ebf340688. Bye-bye middle-deletes and their O(n^2) worst case complexity; hello dictionary-mode scopes (473228, r=jorendorff).", - "pushdate": "2009-12-01 18:15:12", - "backsout": [ - "c03ebf340688" - ], - "backedoutby": "", - "author_email": "sayrer@gmail.com", - "reviewers": [ - "jorendorff" - ], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 46479479.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsapi.cpp", - "js/src/jsarray.cpp", - "js/src/jsbuiltins.cpp", - "js/src/jscntxt.h", - "js/src/jsdbgapi.cpp", - "js/src/jsinterp.cpp", - "js/src/jsobj.cpp", - "js/src/jsopcode.cpp", - "js/src/jsops.cpp", - "js/src/jsparse.cpp", - "js/src/jsscope.cpp", - "js/src/jsscope.h", - "js/src/jsscopeinlines.h", - "js/src/jsstr.cpp", - "js/src/jstracer.cpp" - ], - "components": [ - "Core::JavaScript Engine" - ], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "1da324b951822655298a68e7ed122531ce36d59d", - "author": "Shawn Wilsher ", - "bug_id": 525356, - "desc": "Backed out changeset a93d705bb969 (bug 525356).", - "pushdate": "2009-12-01 23:07:52", - "backsout": [ - "a93d705bb969" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 47114441.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "storage/src/mozStorageConnection.cpp", - "storage/src/mozStorageConnection.h", - "storage/src/mozStorageStatement.cpp" - ], - "components": [], - "directories": [ - "storage/src", - "storage" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "8e986811ab388f741166aa7b34e2caa0f8088cd4", - "author": "Shawn Wilsher ", - "bug_id": 526601, - "desc": "Backed out changeset e9f64cd044f3 (bug 526601)", - "pushdate": "2009-12-01 23:07:52", - "backsout": [ - "e9f64cd044f3" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 47114441.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/components/places/src/nsPlacesDBFlush.js", - "toolkit/components/places/tests/sync/test_database_sync_after_shutdown_with_removeAllPages.js" - ], - "components": [], - "directories": [ - "toolkit/components", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "78faeda5e9702c28f7ac40bdd2ec5bc2cce13c85", - "author": "Shawn Wilsher ", - "bug_id": 496019, - "desc": "Backed out changeset f91a016416d1 (bug 496019)", - "pushdate": "2009-12-01 23:07:52", - "backsout": [ - "f91a016416d1" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 47114441.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "storage/public/Makefile.in", - "storage/public/mozIStorageConnection.idl", - "storage/src/mozStorageAsyncStatementExecution.cpp", - "storage/src/mozStorageConnection.cpp", - "storage/src/mozStorageConnection.h", - "storage/src/mozStoragePrivateHelpers.cpp", - "storage/src/mozStoragePrivateHelpers.h", - "storage/test/unit/test_connection_executeAsync.js", - "storage/test/unit/test_storage_connection.js" - ], - "components": [ - "Toolkit::Storage" - ], - "directories": [ - "storage/src", - "storage", - "storage/test", - "storage/public" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "0af1f99d2cb05b4412464758b7f3b16ca0586ceb", - "author": "Peter Van der Beken ", - "bug_id": 524745, - "desc": "Back out 7856366bcd76 (Bug 524745 - \"Session restore sets focus to minimized windows\") to fix orange, also doesn't have approval yet.", - "pushdate": "2009-12-03 11:27:44", - "backsout": [ - "7856366bcd76" - ], - "backedoutby": "", - "author_email": "peterv@propagandism.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 45775491.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/components/sessionstore/src/nsSessionStore.js", - "browser/components/sessionstore/test/browser/Makefile.in", - "browser/components/sessionstore/test/browser/browser_524745.js" - ], - "components": [], - "directories": [ - "browser/components", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "4bbe26190c7dc6dad0c1c3440a9064b92a2a8bd7", - "author": "Gavin Sharp ", - "bug_id": 525047, - "desc": "Back out revision dbdbe3ad0234 from bug 525047 - every leak test box that's clobbered since it landed has failed, not finding the first thing it tries to import from automationutils", - "pushdate": "2009-12-16 04:36:11", - "backsout": [ - "dbdbe3ad0234" - ], - "backedoutby": "", - "author_email": "gavin@gavinsharp.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 4575651.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "build/Makefile.in", - "build/automation-build.mk", - "build/pgo/Makefile.in", - "layout/tools/reftest/Makefile.in", - "testing/mochitest/Makefile.in" - ], - "components": [], - "directories": [ - "layout/tools", - "build", - "testing/mochitest", - "testing", - "build/pgo", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "31067e0bf8bf4d1f532db455e07e710b4a1ac657", - "author": "Dietrich Ayala ", - "bug_id": 532542, - "desc": "Backed out changeset a6d5fda15815 for bug 532542 due to a test failure.", - "pushdate": "2009-12-16 08:22:45", - "backsout": [ - "a6d5fda15815" - ], - "backedoutby": "", - "author_email": "dietrich@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 45915462.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/components/nsBrowserGlue.js" - ], - "components": [], - "directories": [ - "browser/components", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "ada564e50e86a6285a5a6773cadf7b2f5bc16885", - "author": "Benjamin Smedberg ", - "bug_id": 533688, - "desc": "Backed out changeset 08e208698ef0: Bug 533688 (Firefox 3.6 failed to start with AT-SPI2 0.1.3) because of consistent orange on Mac/Linux:\n\n1001 ERROR TEST-UNEXPECTED-FAIL | chrome://mochikit/content/a11y/accessible/test_events_doc.html | Test timed out.\n1011 ERROR TEST-UNEXPECTED-FAIL | chrome://mochikit/content/a11y/accessible/test_events_draganddrop.html | [SimpleTest/SimpleTest.js, window.onerror] An error occurred - nsIAccessibleEvent is not defined at chrome://mochikit/content/a11y/accessible/events.js:766\nand subsequent errors and leaks", - "pushdate": "2009-12-16 15:33:14", - "backsout": [ - "08e208698ef0" - ], - "backedoutby": "", - "author_email": "benjamin@smedbergs.us", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 54945830.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "accessible/src/atk/nsAccessibleWrap.cpp", - "accessible/src/base/nsRootAccessible.cpp" - ], - "components": [], - "directories": [ - "accessible/src", - "accessible" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "382b527f32a5a15af9d5387b5061a67e03b40145", - "author": "Benjamin Smedberg ", - "bug_id": 474500, - "desc": "Backed out changeset 94561cb0f0bd, bug 474500 because of static-analysis bustage.", - "pushdate": "2009-12-21 15:00:07", - "backsout": [ - "94561cb0f0bd" - ], - "backedoutby": "", - "author_email": "benjamin@smedbergs.us", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 55375843.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsapi.cpp", - "js/src/jsapi.h", - "js/src/jsregexp.cpp", - "js/src/jstracer.cpp", - "js/src/jstracer.h" - ], - "components": [ - "Core::JavaScript Engine" - ], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "f32e7f33b01530d2dba7594c3899a1922da92f3c", - "author": "L. David Baron ", - "bug_id": 531585, - "desc": "Backout revisions fa5326c011b8, 8b22441911b0, and cfa10b01b1f6 (bug 531585) on suspicion of causing random orange bug 536382.", - "pushdate": "2009-12-22 20:49:25", - "backsout": [ - "fa5326c011b8", - "cfa10b01b1f6", - "8b22441911b0" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 50723486.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/base/nsPresContext.cpp", - "layout/base/nsPresContext.h", - "layout/base/nsRefreshDriver.cpp", - "layout/base/nsRefreshDriver.h", - "layout/style/nsTransitionManager.cpp", - "layout/style/nsTransitionManager.h" - ], - "components": [ - "Core::Layout", - "Core::CSS Transitions and Animations" - ], - "directories": [ - "layout/style", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "03bec0d8715431e0ce811be9d7fe98e37c970978", - "author": "L. David Baron ", - "bug_id": 535004, - "desc": "Backed out changeset 2752efeb2fdd (Bug 535004: Check if we've fired an unload event before calling OnPageShow, in DocumentViewerImpl::LoadComplete) because the NS_ABORT_IF_FALSE that it added is firing in reftest and crashtest, at least on Linux.", - "pushdate": "2009-12-24 04:06:14", - "backsout": [ - "2752efeb2fdd" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 50836095.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/base/src/nsDocument.cpp", - "layout/base/nsDocumentViewer.cpp" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "content/base", - "content", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "a7e65c58693ee91a2756dcf0f5effd79237b5297", - "author": "D\u00e3o Gottwald ", - "bug_id": 529597, - "desc": "Backed out changeset 06e4ea15db72 (bug 529597) because of test_bug_405924.html failure", - "pushdate": "2009-12-29 12:35:10", - "backsout": [ - "06e4ea15db72" - ], - "backedoutby": "", - "author_email": "dao@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 48896573.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/components/places/src/Makefile.in", - "browser/components/places/src/PlacesProtocolHandler.js", - "browser/installer/package-manifest.in" - ], - "components": [ - "Firefox::Installer" - ], - "directories": [ - "browser/installer", - "browser/components", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "ba2968f7fe46a45b9805a3c133aa1a052d18c964", - "author": "Nochum Sossonko ", - "bug_id": 530374, - "desc": "backout changeset dfc79d02e945, bug 530374 due to build failure", - "pushdate": "2009-12-31 00:07:12", - "backsout": [ - "dfc79d02e945" - ], - "backedoutby": "", - "author_email": "highmind63@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 27112703.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/xslt/src/base/txDouble.cpp", - "content/xslt/src/base/txStringUtils.cpp", - "content/xslt/src/xpath/txMozillaXPathTreeWalker.cpp", - "content/xslt/src/xpath/txNodeSet.cpp", - "content/xslt/src/xslt/txMozillaXMLOutput.cpp", - "content/xul/content/src/nsXULElement.cpp" - ], - "components": [], - "directories": [ - "content/xul", - "content", - "content/xslt" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "387da540301942dae8f4385322ff1a611f4449e8", - "author": "Timothy Nikkel ", - "bug_id": 396367, - "desc": "Backed out changeset 640bf652618a (bug 396367)", - "pushdate": "2010-01-02 02:30:58", - "backsout": [ - "640bf652618a" - ], - "backedoutby": "", - "author_email": "tnikkel@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 20041892.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/base/tests/chrome/test_bug396367-1.html", - "layout/base/tests/chrome/test_bug396367-2.html" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "35fec83dd2c53414d021c2bbae436f5b4d30b7d7", - "author": "Timothy Nikkel ", - "bug_id": 396367, - "desc": "Backed out changeset 63d4a49fbec1 (bug 396367)", - "pushdate": "2010-01-02 02:30:58", - "backsout": [ - "63d4a49fbec1" - ], - "backedoutby": "", - "author_email": "tnikkel@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 20041892.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/base/nsCSSFrameConstructor.cpp", - "layout/base/nsPresShell.cpp", - "layout/base/tests/chrome/Makefile.in", - "layout/base/tests/chrome/test_bug396367-1.html", - "layout/base/tests/chrome/test_bug396367-2.html" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "ee9b5d13cbaf7f63bf6d757629d4f745f1e84350", - "author": "Jason Orendorff ", - "bug_id": 324278, - "desc": "Backed out changeset 3862a7e48e79 due to tinderbox failures on js1_5/GC/regress-324278.js.", - "pushdate": "2010-01-11 16:41:31", - "backsout": [ - "3862a7e48e79" - ], - "backedoutby": "", - "author_email": "jorendorff@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 51132620.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsemit.cpp", - "js/src/jsfun.cpp", - "js/src/jsinterp.h", - "js/src/jsobj.cpp", - "js/src/jsops.cpp", - "js/src/jsparse.cpp", - "js/src/jsscript.cpp", - "js/src/tests/ecma_5/RegExp/7.8.5-1.js", - "js/src/tests/ecma_5/RegExp/jstests.list" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "2332266baf4de6387cd6572e5de9ff391e9f19d8", - "author": "Dave Townsend ", - "bug_id": 539165, - "desc": "Backed out changeset 4b725bb53baa from bug 539165 due to reftest failure", - "pushdate": "2010-01-13 00:28:11", - "backsout": [ - "4b725bb53baa" - ], - "backedoutby": "", - "author_email": "dtownsend@oxymoronical.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 50852649.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "gfx/cairo/README", - "gfx/cairo/cairo/src/cairo-pattern.c", - "gfx/cairo/premultiply-alpha-solid-gradients.patch", - "layout/reftests/svg/opacity-and-gradient-02-ref.svg", - "layout/reftests/svg/opacity-and-gradient-02.svg", - "layout/reftests/svg/reftest.list" - ], - "components": [ - "Core::Graphics", - "Core::SVG" - ], - "directories": [ - "layout/reftests", - "gfx/cairo", - "gfx", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "974d9ffda7b6ae093fa49de036c60a7780af4e8e", - "author": "Markus Stange ", - "bug_id": 461291, - "desc": "Backed out changeset bde448aad47c, bug 461291, due to SunSpider and DHTML performance regression.", - "pushdate": "2010-01-13 19:56:38", - "backsout": [ - "bde448aad47c" - ], - "backedoutby": "", - "author_email": "mstange@themasta.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 48623094.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "widget/src/cocoa/nsChildView.mm", - "widget/src/cocoa/nsCocoaWindow.h", - "widget/src/cocoa/nsCocoaWindow.mm" - ], - "components": [], - "directories": [ - "widget", - "widget/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "1ef1d73eb050f79d35b528150c425022ee61f0ba", - "author": "Markus Stange ", - "bug_id": 461291, - "desc": "Backed out changeset bde448aad47c, bug 461291, due to SunSpider and DHTML performance regression.", - "pushdate": "2010-01-13 19:56:38", - "backsout": [ - "bde448aad47c" - ], - "backedoutby": "", - "author_email": "mstange@themasta.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 48623094.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [], - "components": [], - "directories": [], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "ffab97de1041b4ef62a31b104dd399033c7c773d", - "author": "Peter Van der Beken ", - "bug_id": 521377, - "desc": "Backout 76cdc8296409 and 9baa220b27c0 (Bug 521377 - 'NPRuntime: Segfault when NPP_GetValue_NPPVpluginScriptableNPObject returns a null actor') to try fo fix orange.", - "pushdate": "2010-01-19 12:01:49", - "backsout": [ - "76cdc8296409" - ], - "backedoutby": "", - "author_email": "peterv@propagandism.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 49838336.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "dom/plugins/Makefile.in", - "dom/plugins/PPluginInstance.ipdl", - "dom/plugins/PPluginScriptableObject.ipdl", - "dom/plugins/PluginInstanceChild.cpp", - "dom/plugins/PluginInstanceChild.h", - "dom/plugins/PluginInstanceParent.cpp", - "dom/plugins/PluginInstanceParent.h", - "dom/plugins/PluginMessageUtils.cpp", - "dom/plugins/PluginMessageUtils.h", - "dom/plugins/PluginModuleChild.cpp", - "dom/plugins/PluginModuleChild.h", - "dom/plugins/PluginModuleParent.cpp", - "dom/plugins/PluginScriptableObjectChild.cpp", - "dom/plugins/PluginScriptableObjectChild.h", - "dom/plugins/PluginScriptableObjectParent.cpp", - "dom/plugins/PluginScriptableObjectParent.h", - "dom/plugins/PluginScriptableObjectUtils-inl.h", - "dom/plugins/PluginScriptableObjectUtils.h", - "modules/plugin/base/src/nsNPAPIPlugin.cpp" - ], - "components": [], - "directories": [ - "dom", - "modules/plugin", - "dom/plugins", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "b7008e0642660abcb74fccec100c3cbd45edc6bb", - "author": "Dave Townsend ", - "bug_id": 541739, - "desc": "Backed out changeset 4d7bde383df5 from bug 541739 due to test failures", - "pushdate": "2010-01-27 03:05:52", - "backsout": [ - "4d7bde383df5" - ], - "backedoutby": "", - "author_email": "dtownsend@oxymoronical.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 52071710.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/components/downloads/src/nsDownloadManager.cpp", - "toolkit/components/downloads/test/unit/test_privatebrowsing_cancel.js" - ], - "components": [], - "directories": [ - "toolkit/components", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "6d50455cabaa3c695ad6e23200782d0790d6d59d", - "author": "Daniel Holbert ", - "bug_id": 543034, - "desc": "Backed out changeset dc7a04be6904 on suspicion of causing bug 543034.", - "pushdate": "2010-01-30 03:08:18", - "backsout": [ - "dc7a04be6904" - ], - "backedoutby": "", - "author_email": "dholbert@cs.stanford.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 53989825.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/components/sessionstore/src/nsSessionStore.js", - "browser/components/sessionstore/test/browser/Makefile.in", - "browser/components/sessionstore/test/browser/browser_500328.js", - "content/base/public/nsIDocument.h", - "content/base/src/nsContentUtils.cpp", - "content/base/src/nsGkAtomList.h", - "content/events/src/Makefile.in", - "content/events/src/nsDOMEvent.cpp", - "content/events/src/nsDOMEvent.h", - "content/events/src/nsDOMPopStateEvent.cpp", - "content/events/src/nsDOMPopStateEvent.h", - "content/events/src/nsEventDispatcher.cpp", - "docshell/base/crashtests/500328-1.html", - "docshell/base/crashtests/crashtests.list", - "docshell/base/nsDocShell.cpp", - "docshell/base/nsDocShell.h", - "docshell/base/nsDocShellLoadTypes.h", - "docshell/base/nsIDocShell.idl", - "docshell/base/nsIDocShellHistory.idl", - "docshell/shistory/public/nsISHEntry.idl", - "docshell/shistory/src/nsSHEntry.cpp", - "docshell/shistory/src/nsSHEntry.h", - "docshell/shistory/src/nsSHistory.cpp", - "docshell/shistory/src/nsSHistory.h", - "dom/base/nsDOMClassInfo.cpp", - "dom/base/nsDOMClassInfo.h", - "dom/base/nsDOMClassInfoID.h", - "dom/base/nsGlobalWindow.cpp", - "dom/base/nsGlobalWindow.h", - "dom/base/nsHistory.cpp", - "dom/base/nsLocation.cpp", - "dom/base/nsPIDOMWindow.h", - "dom/interfaces/base/nsIDOMHistory.idl", - "dom/interfaces/events/Makefile.in", - "dom/interfaces/events/nsIDOMPopStateEvent.idl", - "dom/interfaces/json/nsIJSON.idl", - "dom/src/json/Makefile.in", - "dom/src/json/nsJSON.cpp", - "dom/tests/mochitest/whatwg/Makefile.in", - "dom/tests/mochitest/whatwg/file_bug500328_1.html", - "dom/tests/mochitest/whatwg/file_bug500328_2.html", - "dom/tests/mochitest/whatwg/test_bug500328.html", - "js/src/xpconnect/idl/nsIDispatchSupport.idl", - "js/src/xpconnect/idl/nsIXPConnect.idl", - "js/src/xpconnect/src/nsXPConnect.cpp", - "js/src/xpconnect/src/xpcprivate.h", - "js/src/xpconnect/src/xpcvariant.cpp", - "layout/base/nsDocumentViewer.cpp", - "modules/libpref/src/init/all.js", - "storage/src/Variant_inl.h", - "widget/public/nsGUIEvent.h", - "widget/src/xpwidgets/nsBaseWidget.cpp", - "xpcom/ds/nsIVariant.idl", - "xpcom/ds/nsVariant.cpp" - ], - "components": [ - "Core::DOM: Core & HTML", - "Core::XPCOM", - "Core::DOM: Navigation", - "Firefox::Bookmarks & History", - "Core::Layout" - ], - "directories": [ - "modules/libpref", - "docshell/shistory", - "docshell/base", - "dom/interfaces", - "storage", - "dom/base", - "content/base", - "content", - "modules", - "js/src", - "dom", - "browser", - "js", - "layout", - "xpcom/ds", - "dom/src", - "docshell", - "storage/src", - "browser/components", - "xpcom", - "layout/base", - "widget", - "dom/tests", - "widget/public", - "widget/src", - "content/events" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "aefe5d2d14d87caa20f4ee572888fc01d46e0a2d", - "author": "Karl Tomlinson ", - "bug_id": 540910, - "desc": "backout ebca6061298f as an immediate flush should not be necessary b=540910", - "pushdate": "2010-02-02 06:01:17", - "backsout": [ - "ebca6061298f" - ], - "backedoutby": "", - "author_email": "karlt+@karlt.net", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 49690053.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/generic/test/plugin_clipping_helper2.xhtml" - ], - "components": [], - "directories": [ - "layout/generic", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "a8d05daa31921404c46e258857f0e9c4513382ae", - "author": "Karl Tomlinson ", - "bug_id": 355548, - "desc": "backout 4dc8bdb7af6d due to 355548-2 reftest failure", - "pushdate": "2010-02-02 07:30:20", - "backsout": [ - "4dc8bdb7af6d" - ], - "backedoutby": "", - "author_email": "karlt+@karlt.net", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 49695396.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/base/nsCSSFrameConstructor.cpp", - "layout/mathml/mathml.css", - "layout/reftests/mathml/math-height-1-ref.xhtml", - "layout/reftests/mathml/math-height-1.xhtml", - "layout/reftests/mathml/reftest.list" - ], - "components": [ - "Core::Layout", - "Core::MathML" - ], - "directories": [ - "layout/reftests", - "layout/mathml", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "e03e9d4315d8b99f9135ea3e971c74a6eda8ef30", - "author": "Daniel Holbert ", - "bug_id": 542263, - "desc": "Backed out changeset 8006ad2d0c06 (tests for bug 542263), since its test 'test_GCrace.html' failed on OSX in its first cycle.", - "pushdate": "2010-02-03 02:59:54", - "backsout": [ - "8006ad2d0c06" - ], - "backedoutby": "", - "author_email": "dholbert@cs.stanford.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 54334921.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "build/automation.py.in", - "modules/plugin/test/mochitest/Makefile.in", - "modules/plugin/test/mochitest/test_GCrace.html", - "modules/plugin/test/testplugin/README", - "modules/plugin/test/testplugin/nptest.cpp" - ], - "components": [], - "directories": [ - "modules", - "modules/plugin", - "build" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "29795c58dd72f74e5cde8365503544a8e851a8f8", - "author": "Daniel Holbert ", - "bug_id": 542263, - "desc": "Backed out changeset c502a1a0900a (patch for bug 542263), since its test 'test_GCrace.html' failed on OSX in its first cycle.", - "pushdate": "2010-02-03 02:59:54", - "backsout": [ - "c502a1a0900a" - ], - "backedoutby": "", - "author_email": "dholbert@cs.stanford.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 54334921.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "dom/plugins/PluginScriptableObjectChild.cpp", - "dom/plugins/PluginScriptableObjectParent.cpp" - ], - "components": [], - "directories": [ - "dom", - "dom/plugins" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "56a02566af5364f799d5fb319e26e43d9f2b318c", - "author": "Daniel Holbert ", - "bug_id": 543034, - "desc": "Backed out changeset 0949b169357b (possible workaround for Bug 543034), since it didn't help.", - "pushdate": "2010-02-03 03:33:23", - "backsout": [ - "0949b169357b" - ], - "backedoutby": "", - "author_email": "dholbert@cs.stanford.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 54336930.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/components/places/src/nsAnnotationService.cpp" - ], - "components": [], - "directories": [ - "toolkit/components", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "6b2bbb23d53a0767158a7ebebb8a179e8a612956", - "author": "D\u00e3o Gottwald ", - "bug_id": 398289, - "desc": "Backed out changeset 8c2e7ae5cceb because of test_bug398289.html failure", - "pushdate": "2010-02-04 16:18:05", - "backsout": [ - "8c2e7ae5cceb" - ], - "backedoutby": "", - "author_email": "dao@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 52106748.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/base/src/nsGkAtomList.h", - "content/canvas/src/nsCanvasRenderingContext2D.cpp", - "content/html/content/src/nsHTMLCanvasElement.cpp", - "layout/base/nsLayoutUtils.cpp", - "layout/base/nsLayoutUtils.h", - "layout/base/nsPresContext.cpp", - "layout/base/nsPresShell.cpp", - "layout/generic/nsFrame.cpp", - "layout/generic/nsHTMLReflowState.cpp", - "layout/generic/nsIFrame.h" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "content/canvas", - "layout/generic", - "content/base", - "content", - "content/html", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "609a51758b08110dd0fe738a88c95783d6fea658", - "author": "L. David Baron ", - "bug_id": 544505, - "desc": "Backed out changeset db1f6446efda (flip pref, bug 544505), which is intended only for 1.9.3a1 and not to stay on trunk.", - "pushdate": "2010-02-05 19:37:29", - "backsout": [ - "db1f6446efda" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 54607170.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/app/profile/firefox.js" - ], - "components": [ - "Firefox::General" - ], - "directories": [ - "browser", - "browser/app" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "edbd3823dceb5ddb8cb16722fb98f34d571787e5", - "author": "Boris Zbarsky ", - "bug_id": 543111, - "desc": "Backed out changeset df90f0171ba7 (bug 543111)", - "pushdate": "2010-02-09 19:35:07", - "backsout": [ - "df90f0171ba7" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 50189415.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/crashreporter/Makefile.in", - "toolkit/crashreporter/google-breakpad/src/common/dwarf/functioninfo.cc", - "toolkit/crashreporter/google-breakpad/src/common/mac/Makefile.in" - ], - "components": [ - "Toolkit::Crash Reporting" - ], - "directories": [ - "toolkit", - "toolkit/crashreporter" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "83adba23046790d0de32384c4c12cf5974cb839e", - "author": "L. David Baron ", - "bug_id": 540692, - "desc": "Backed out changeset 0ddf975663a0 (Bug 540692: Blocklist vksaver.dll) to test the theory that it is the cause of number 1 topcrash bug 545195.", - "pushdate": "2010-02-11 05:54:10", - "backsout": [ - "0ddf975663a0" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 55076171.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/xre/nsWindowsDllBlocklist.h" - ], - "components": [], - "directories": [ - "toolkit", - "toolkit/xre" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "9ce73c19f74a239c5deda19cdaed34ce7c627058", - "author": "Benjamin Smedberg ", - "bug_id": 517097, - "desc": "Backed out changeset fe08cc555248 - bug 517097 - make enabling debug symbols more sane because it added -fno-inline to opt builds and a 50% perf regression", - "pushdate": "2010-02-11 22:17:32", - "backsout": [ - "fe08cc555248" - ], - "backedoutby": "", - "author_email": "benjamin@smedbergs.us", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 59894888.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "config/autoconf.mk.in", - "config/config.mk", - "configure.in", - "js/src/config/autoconf.mk.in", - "js/src/config/config.mk", - "js/src/configure.in" - ], - "components": [ - "Firefox Build System::General" - ], - "directories": [ - "js/src", - "config", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "4e883e25a86ca9a2cf9d18294c04e25c2f1830e4", - "author": "Timothy Nikkel ", - "bug_id": 545593, - "desc": "Backed out changeset 93c7b23284b8 (Bug 545593) for causing Md oth failures on linux.", - "pushdate": "2010-02-12 22:36:40", - "backsout": [ - "93c7b23284b8" - ], - "backedoutby": "", - "author_email": "tnikkel@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 23656634.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/base/src/nsContentSink.cpp", - "content/base/src/nsContentSink.h", - "content/html/document/src/nsMediaDocument.cpp", - "content/xul/document/src/nsXULDocument.cpp", - "docshell/base/nsDocShell.cpp", - "docshell/base/nsIContentViewer.idl", - "intl/chardet/src/nsDetectionAdaptor.cpp", - "intl/chardet/src/nsObserverBase.cpp", - "layout/base/nsDocumentViewer.cpp", - "parser/html/nsHtml5TreeOpExecutor.cpp", - "view/public/nsIViewManager.h", - "view/src/nsViewManager.cpp", - "view/src/nsViewManager.h", - "webshell/public/nsIWebShellServices.h" - ], - "components": [ - "Core::Layout", - "Core::DOM: HTML Parser", - "Core::DOM: Navigation" - ], - "directories": [ - "parser/html", - "docshell/base", - "webshell", - "docshell", - "webshell/public", - "content/xul", - "content/base", - "content", - "intl", - "intl/chardet", - "parser", - "view", - "content/html", - "view/public", - "view/src", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "8098e1f09e779ef5234a73446b487a80705598b3", - "author": "Benjamin Smedberg ", - "bug_id": 543764, - "desc": "Backed out changeset 4d8d4fd97c4f - bug 543764, because of deadlocks.", - "pushdate": "2010-02-18 15:27:52", - "backsout": [ - "4d8d4fd97c4f" - ], - "backedoutby": "", - "author_email": "benjamin@smedbergs.us", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 60475108.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "ipc/glue/AsyncChannel.cpp" - ], - "components": [], - "directories": [ - "ipc/glue", - "ipc" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "f17dbc97dae0154c797e0b35e79ed887533efa34", - "author": "Paul O\u2019Shannessy ", - "bug_id": 520659, - "desc": "Backed out changeset 2c60006b6c1f (bug 520659) because of resulting orange.", - "pushdate": "2010-02-22 23:33:54", - "backsout": [ - "2c60006b6c1f" - ], - "backedoutby": "", - "author_email": "paul@oshannessy.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 28705798.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/components/places/content/menu.xml", - "browser/components/places/content/toolbar.xml", - "browser/components/places/content/tree.xml", - "browser/components/places/content/treeView.js", - "toolkit/components/places/public/nsINavHistoryService.idl", - "toolkit/components/places/src/nsNavHistoryResult.cpp", - "toolkit/components/places/src/nsNavHistoryResult.h", - "toolkit/components/places/src/utils.js" - ], - "components": [ - "Firefox::Bookmarks & History" - ], - "directories": [ - "toolkit/components", - "browser/components", - "toolkit", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "639c6e42ee38ee67252f2400fe15d900a936b256", - "author": "Shawn Wilsher ", - "bug_id": 193911, - "desc": "Backed out changeset bb9e847a02c8 (bug 193911) due to performance regressions.", - "pushdate": "2010-02-24 01:11:56", - "backsout": [ - "bb9e847a02c8" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 54379485.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "modules/libpref/src/init/all.js", - "netwerk/cache/src/nsCacheService.cpp" - ], - "components": [], - "directories": [ - "modules/libpref", - "netwerk/cache", - "netwerk", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "1fe0f3ad7b08a85ca25cec112e138b8ff6cf41b9", - "author": "Igor Bukanov ", - "bug_id": 538463, - "desc": "Backed out changeset b9700adc3951 - the landing for the bug 538463 had wrong changes", - "pushdate": "2010-02-24 20:41:25", - "backsout": [ - "b9700adc3951" - ], - "backedoutby": "", - "author_email": "igor@mir2.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 53219186.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsgc.cpp", - "js/src/jsgc.h", - "js/src/jsinterp.cpp", - "js/src/jsinterp.h", - "js/src/jslock.cpp", - "js/src/jslock.h", - "js/src/jsobj.cpp", - "js/src/jsobj.h", - "js/src/jsops.cpp", - "js/src/jsscope.cpp", - "js/src/jsscope.h", - "js/src/jstracer.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "636964f611b3e4f72815f9f9306f26303c816816", - "author": "Nicholas Nethercote ", - "bug_id": 507089, - "desc": "Backed out changeset 3c673457c90b for bug 507089 due to mysterious Windows bustage.", - "pushdate": "2010-02-24 20:41:25", - "backsout": [ - "3c673457c90b" - ], - "backedoutby": "", - "author_email": "nnethercote@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 31491347.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsbuiltins.h", - "js/src/jstracer.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "7594db5d213a7364f6bd375064eacbc3b80a53ad", - "author": "Benjamin Smedberg ", - "bug_id": 532208, - "desc": "Backed out changeset e4a7ea0bb90f bug 532208 - asynchronous stream delivery because write events were being dispatched in odd re-entrant states and NPP_DestroyStream was being delivered before all the stream data was delivered.", - "pushdate": "2010-02-25 11:05:10", - "backsout": [ - "e4a7ea0bb90f" - ], - "backedoutby": "", - "author_email": "benjamin@smedbergs.us", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 61064146.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "dom/plugins/BrowserStreamChild.cpp", - "dom/plugins/BrowserStreamChild.h", - "dom/plugins/BrowserStreamParent.cpp", - "dom/plugins/BrowserStreamParent.h", - "dom/plugins/PBrowserStream.ipdl", - "dom/plugins/PluginInstanceParent.cpp", - "dom/plugins/PluginModuleChild.cpp" - ], - "components": [], - "directories": [ - "dom", - "dom/plugins" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "3fa8aa3c951ce7b1c604cc764ff2f85536a88a6e", - "author": "Benjamin Smedberg ", - "bug_id": 548217, - "desc": "Backed out changeset 77dc38d8196e - bug 548217 because even though this patch is correct, it exposes a bug in the OOPP code which got backed out.", - "pushdate": "2010-02-25 11:59:26", - "backsout": [ - "77dc38d8196e" - ], - "backedoutby": "", - "author_email": "benjamin@smedbergs.us", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 61067402.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "modules/plugin/base/public/nsIPluginInstanceOwner.idl", - "modules/plugin/base/src/nsNPAPIPlugin.cpp", - "modules/plugin/base/src/nsNPAPIPluginInstance.cpp", - "modules/plugin/base/src/nsPluginHost.cpp", - "modules/plugin/test/testplugin/nptest.cpp" - ], - "components": [], - "directories": [ - "modules/plugin", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "840e6ea115dbc3f4fccc1c78101426bc45013a98", - "author": "Benjamin Smedberg ", - "bug_id": 548217, - "desc": "Backed out changeset f829f942873d - bug 548217 because of topcrash bug 549112", - "pushdate": "2010-02-27 22:44:12", - "backsout": [ - "f829f942873d" - ], - "backedoutby": "", - "author_email": "benjamin@smedbergs.us", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 61278888.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "modules/plugin/base/public/nsIPluginInstanceOwner.idl", - "modules/plugin/base/src/nsNPAPIPlugin.cpp", - "modules/plugin/base/src/nsNPAPIPluginInstance.cpp", - "modules/plugin/base/src/nsPluginHost.cpp", - "modules/plugin/test/testplugin/nptest.cpp" - ], - "components": [], - "directories": [ - "modules/plugin", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "81b2e55ea5b454ac88c2894961709a984eaa572c", - "author": "Daniel Holbert ", - "bug_id": 547333, - "desc": "Backed out changeset e9ab6e4d121d (Bug 547333 followup) due to debug mochitest orange.", - "pushdate": "2010-03-02 16:30:18", - "backsout": [ - "e9ab6e4d121d" - ], - "backedoutby": "", - "author_email": "dholbert@cs.stanford.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 56716345.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/smil/crashtests/483584-1.svg", - "content/smil/crashtests/483584-2.svg", - "content/smil/crashtests/crashtests.list", - "content/svg/content/src/nsSVGElement.cpp", - "layout/base/nsPresShell.cpp" - ], - "components": [], - "directories": [ - "content/smil", - "content", - "content/svg", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "44ef1e2129706317a17b29e7ff8bdb04b2424342", - "author": "Boris Zbarsky ", - "bug_id": 503832, - "desc": "Backed out changeset 2da8ac54d264 (followup to bug 503832)", - "pushdate": "2010-03-09 14:37:10", - "backsout": [ - "2da8ac54d264" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 52590738.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "docshell/test/browser/browser_bug503832.js" - ], - "components": [ - "Core::DOM: Navigation" - ], - "directories": [ - "docshell/test", - "docshell" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "d11772a5043cbc951328ba53c188f1c7fcc7e73b", - "author": "Boris Zbarsky ", - "bug_id": 550882, - "desc": "Backed out changeset c7c0db9074c7 (bug 550882) on suspicion of causing a Tsspider regression.", - "pushdate": "2010-03-09 14:37:10", - "backsout": [ - "c7c0db9074c7" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 52590738.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/generic/nsGfxScrollFrame.cpp", - "layout/reftests/bugs/502447-2-ref.html", - "layout/reftests/bugs/502447-2.html", - "layout/reftests/bugs/550882-1-ref.html", - "layout/reftests/bugs/550882-1.html", - "layout/reftests/bugs/550882-2-ref.html", - "layout/reftests/bugs/550882-2.html" - ], - "components": [ - "Core::Layout", - "Core::Layout: Scrolling and Overflow" - ], - "directories": [ - "layout/reftests", - "layout/generic", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "eaf1574b10b627e935444b631df4e9db2e4db496", - "author": "Boris Zbarsky ", - "bug_id": 503832, - "desc": "Backed out changeset dc835fb21c0c (bug 503832) on suspicion of causing a Tsspider regression.", - "pushdate": "2010-03-09 14:37:10", - "backsout": [ - "dc835fb21c0c" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 52590738.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "docshell/base/nsDocShell.cpp", - "docshell/test/browser/Makefile.in", - "docshell/test/browser/browser_bug503832.js", - "docshell/test/browser/file_bug503832.html" - ], - "components": [ - "Core::DOM: Navigation" - ], - "directories": [ - "docshell/test", - "docshell/base", - "docshell" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "76a071c6dfd0e74dd1f672eaa2394a037eb5afec", - "author": "Boris Zbarsky ", - "bug_id": 550882, - "desc": "Backed out changeset f0239b3789d9 (bug 550882) because it causes a Tsspider regression.", - "pushdate": "2010-03-11 06:00:37", - "backsout": [ - "f0239b3789d9" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 52732545.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/generic/nsGfxScrollFrame.cpp", - "layout/reftests/bugs/502447-2-ref.html", - "layout/reftests/bugs/502447-2.html", - "layout/reftests/bugs/550882-1-ref.html", - "layout/reftests/bugs/550882-1.html", - "layout/reftests/bugs/550882-2-ref.html", - "layout/reftests/bugs/550882-2.html" - ], - "components": [ - "Core::Layout", - "Core::Layout: Scrolling and Overflow" - ], - "directories": [ - "layout/reftests", - "layout/generic", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "55f6e18f71cd0906e457317f45f4bdf14f28ec53", - "author": "Markus Stange ", - "bug_id": 538187, - "desc": "Backed out changeset d906e4dd1e49, bug 538187 - CSS changes for :-moz-window-inactive pseudoclass because of test_righttoleft.xul test failures.", - "pushdate": "2010-03-17 19:06:03", - "backsout": [ - "d906e4dd1e49" - ], - "backedoutby": "", - "author_email": "mstange@themasta.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 54063259.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/themes/pinstripe/browser/browser.css", - "browser/themes/pinstripe/browser/places/organizer.css", - "toolkit/themes/pinstripe/global/console/console.css", - "toolkit/themes/pinstripe/global/jar.mn", - "toolkit/themes/pinstripe/global/preferences.css", - "toolkit/themes/pinstripe/global/toolbar/toolbar-background-inactive.png", - "toolkit/themes/pinstripe/global/toolbar/toolbar-background.gif", - "toolkit/themes/pinstripe/global/viewbuttons.css", - "toolkit/themes/pinstripe/mozapps/downloads/downloads.css", - "toolkit/themes/pinstripe/mozapps/update/updates.css", - "toolkit/themes/winstripe/global/global.css", - "toolkit/themes/winstripe/global/jar.mn", - "toolkit/themes/winstripe/global/menu.css" - ], - "components": [], - "directories": [ - "toolkit/themes", - "browser/themes", - "toolkit", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "11d4bebe3514ef47021734d052468df2ed7315ff", - "author": "Markus Stange ", - "bug_id": 508482, - "desc": "Backed out changeset e17c076aceea, bug 508482 (:-moz-window-inactive pseudoclass) because of test_righttoleft.xul test failures.", - "pushdate": "2010-03-17 19:06:03", - "backsout": [ - "e17c076aceea" - ], - "backedoutby": "", - "author_email": "mstange@themasta.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 54063259.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "accessible/src/base/nsDocAccessible.cpp", - "content/base/public/nsIDocument.h", - "content/base/public/nsIDocumentObserver.h", - "content/base/src/nsDocument.cpp", - "content/base/src/nsDocument.h", - "content/xul/document/src/nsXULDocument.cpp", - "dom/base/nsGlobalWindow.cpp", - "dom/base/nsGlobalWindow.h", - "dom/base/nsPIDOMWindow.h", - "dom/tests/mochitest/chrome/Makefile.in", - "dom/tests/mochitest/chrome/test_activation.xul", - "dom/tests/mochitest/chrome/window_activation.xul", - "layout/base/nsPresContext.cpp", - "layout/base/nsPresContext.h", - "layout/base/nsPresShell.cpp", - "layout/style/nsCSSPseudoClassList.h", - "layout/style/nsCSSRuleProcessor.cpp", - "layout/style/nsCSSRuleProcessor.h", - "layout/style/nsHTMLCSSStyleSheet.cpp", - "layout/style/nsHTMLCSSStyleSheet.h", - "layout/style/nsHTMLStyleSheet.cpp", - "layout/style/nsHTMLStyleSheet.h", - "layout/style/nsIStyleRuleProcessor.h", - "layout/style/nsRuleProcessorData.h", - "layout/style/nsStyleSet.cpp", - "layout/style/nsStyleSet.h", - "layout/style/nsTransitionManager.cpp", - "layout/style/nsTransitionManager.h", - "layout/style/test/test_selectors.html" - ], - "components": [ - "Core::Layout", - "Core::DOM: Core & HTML", - "Core::CSS Parsing and Computation", - "Core::CSS Transitions and Animations" - ], - "directories": [ - "dom/tests", - "accessible/src", - "accessible", - "dom/base", - "content/xul", - "content/base", - "content", - "dom", - "layout/style", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "33925fdc28073fc9a47ed32da1a20ee2c2e246b5", - "author": "Daniel Holbert ", - "bug_id": 541588, - "desc": "Backed out changeset 59f507847beb (bug 541588) to see if it was responsible for minor SVG perf regression.", - "pushdate": "2010-03-18 14:58:59", - "backsout": [ - "59f507847beb" - ], - "backedoutby": "", - "author_email": "dholbert@cs.stanford.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 58093266.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/base/public/nsIDocument.h", - "content/smil/nsSMILAnimationController.cpp", - "content/smil/nsSMILAnimationController.h", - "layout/base/nsPresShell.cpp" - ], - "components": [], - "directories": [ - "content/smil", - "content/base", - "content", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "09b395158b415b7f18dbc6c744d7d04f73fb57a5", - "author": "Daniel Holbert ", - "bug_id": 553075, - "desc": "Backed out changeset 665b48fbfd28 (bug 553075) to see if it was responsible for 1% SVG/DHTML regressions on Win7.", - "pushdate": "2010-03-21 05:57:22", - "backsout": [ - "665b48fbfd28" - ], - "backedoutby": "", - "author_email": "dholbert@cs.stanford.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 58319969.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/smil/nsSMILAnimationController.cpp", - "content/smil/nsSMILAnimationController.h" - ], - "components": [], - "directories": [ - "content", - "content/smil" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "f85c2efb4eaf76c06c6a8438e77c5701cb8ba604", - "author": "Markus Stange ", - "bug_id": 538242, - "desc": "Backed out changeset 77e1ae41987e, bug 538242, because of window bounds related test failures.", - "pushdate": "2010-03-25 10:31:30", - "backsout": [ - "77e1ae41987e" - ], - "backedoutby": "", - "author_email": "mstange@themasta.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 54723586.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "widget/src/cocoa/nsCocoaWindow.h", - "widget/src/cocoa/nsCocoaWindow.mm" - ], - "components": [], - "directories": [ - "widget", - "widget/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "670efad709bfa3ba522ba3a2f61b48cde4152f99", - "author": "Daniel Holbert ", - "bug_id": 551298, - "desc": "Backed out changeset 13819d2e9bd8 (Bug 551298) due to Linux debug mochitest-5 orange", - "pushdate": "2010-04-01 16:46:48", - "backsout": [ - "13819d2e9bd8" - ], - "backedoutby": "", - "author_email": "dholbert@cs.stanford.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 59309335.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/smil/nsSMILInstanceTime.h", - "content/xbl/src/nsXBLBinding.h", - "content/xbl/src/nsXBLInsertionPoint.cpp", - "content/xbl/src/nsXBLInsertionPoint.h", - "content/xbl/src/nsXBLPrototypeBinding.cpp", - "content/xslt/src/xslt/txMozillaStylesheetCompiler.cpp", - "content/xslt/src/xslt/txStandaloneStylesheetCompiler.cpp", - "content/xslt/src/xslt/txStylesheet.h", - "content/xslt/src/xslt/txStylesheetCompiler.cpp", - "content/xslt/src/xslt/txStylesheetCompiler.h", - "content/xul/templates/src/nsRDFBinding.h" - ], - "components": [], - "directories": [ - "content/smil", - "content/xbl", - "content/xul", - "content", - "content/xslt" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "d3acd60e4d5361a9e8729f365dc3ba68cee131ba", - "author": "Daniel Holbert ", - "bug_id": 551298, - "desc": "Backed out changeset afcaf3670c21 (Bug 551298) due to Linux debug mochitest-5 orange", - "pushdate": "2010-04-01 16:46:48", - "backsout": [ - "afcaf3670c21" - ], - "backedoutby": "", - "author_email": "dholbert@cs.stanford.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 59309335.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/style/nsCSSValue.cpp", - "layout/style/nsCSSValue.h", - "layout/style/nsStyleStruct.cpp", - "layout/style/nsStyleStruct.h" - ], - "components": [ - "Core::CSS Parsing and Computation" - ], - "directories": [ - "layout/style", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "50731f2bd852892bc11944485f5f93e0c27fce4b", - "author": "Daniel Holbert ", - "bug_id": 551298, - "desc": "Backed out changeset 29bc09de2f77 (Bug 551298) due to Linux debug mochitest-5 orange", - "pushdate": "2010-04-01 16:46:48", - "backsout": [ - "29bc09de2f77" - ], - "backedoutby": "", - "author_email": "dholbert@cs.stanford.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 59309335.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/svg/content/src/nsSVGMatrix.cpp", - "content/svg/content/src/nsSVGMatrix.h", - "gfx/layers/Layers.h", - "gfx/thebes/public/gfxASurface.h", - "gfx/thebes/public/gfxContext.h", - "gfx/thebes/public/gfxFont.h", - "gfx/thebes/public/gfxGdkNativeRenderer.h", - "gfx/thebes/public/gfxPath.h", - "gfx/thebes/public/gfxPattern.h", - "gfx/thebes/public/gfxRect.h", - "gfx/thebes/public/gfxTypes.h", - "gfx/thebes/public/gfxUserFontSet.h", - "gfx/thebes/src/gfxFontconfigUtils.h", - "gfx/thebes/src/gfxPangoFonts.cpp", - "layout/printing/nsPrintData.h" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "gfx/layers", - "gfx/thebes", - "layout/printing", - "content", - "content/svg", - "gfx", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "c0395cad35f39dbcc3d0514c16f468a1a4ae84b9", - "author": "Daniel Holbert ", - "bug_id": 551298, - "desc": "Backed out changeset e94819033c77 (Bug 551298) due to Linux debug mochitest-5 orange", - "pushdate": "2010-04-01 16:46:48", - "backsout": [ - "e94819033c77" - ], - "backedoutby": "", - "author_email": "dholbert@cs.stanford.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 59309335.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "xpcom/glue/nsISupportsImpl.h" - ], - "components": [], - "directories": [ - "xpcom/glue", - "xpcom" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "df2717c37e7f70da06d2e1f46a288743b3414264", - "author": "Daniel Holbert ", - "bug_id": 551298, - "desc": "Backed out changeset fe801c8a2090 (Bug 551298) due to Linux debug mochitest-5 orange", - "pushdate": "2010-04-01 16:46:48", - "backsout": [ - "fe801c8a2090" - ], - "backedoutby": "", - "author_email": "dholbert@cs.stanford.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 59309335.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "gfx/thebes/public/gfxTypes.h", - "xpcom/glue/nsISupportsImpl.h", - "xpcom/glue/nsISupportsUtils.h" - ], - "components": [], - "directories": [ - "xpcom/glue", - "gfx/thebes", - "gfx", - "xpcom" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "f843e0928e1119d1fbafba72e5ed1aea575fbbe5", - "author": "Ted Mielczarek ", - "bug_id": 549427, - "desc": "Backed out changeset 7886dc6ae0c8 - bug 549427 - tests tarball should be zip files (CLOSED TREE)", - "pushdate": "2010-04-07 17:34:08", - "backsout": [ - "7886dc6ae0c8" - ], - "backedoutby": "", - "author_email": "ted.mielczarek@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 64629884.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "testing/testsuite-targets.mk", - "toolkit/mozapps/installer/package-name.mk" - ], - "components": [ - "Firefox::Installer", - "Testing::General" - ], - "directories": [ - "toolkit/mozapps", - "testing", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "85454945336e2c5bac27ff125e2ae27200cb416c", - "author": "Alexander Surkov ", - "bug_id": 557768, - "desc": "backout e88d2327e25d, bug 557768", - "pushdate": "2010-04-08 14:00:43", - "backsout": [ - "e88d2327e25d" - ], - "backedoutby": "", - "author_email": "surkov.alexander@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 56893595.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "accessible/src/base/nsAccessibilityService.cpp" - ], - "components": [], - "directories": [ - "accessible/src", - "accessible" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "47ef6d724773f2eb7157f93c1da8d53a8589f26a", - "author": "Timothy Nikkel ", - "bug_id": 553366, - "desc": "Backout 761790684f3b (Bug 553366) for suspicion of causing tsvg_opacity regression.", - "pushdate": "2010-04-11 02:54:10", - "backsout": [ - "761790684f3b" - ], - "backedoutby": "", - "author_email": "tnikkel@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 28596884.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/base/public/nsIDocument.h", - "content/base/src/nsDocument.cpp", - "content/base/src/nsDocument.h", - "layout/base/nsPresShell.cpp" - ], - "components": [], - "directories": [ - "content/base", - "content", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "a5009861bd1b4c01663aa01a4c219379b85178b8", - "author": "Timothy Nikkel ", - "bug_id": 553359, - "desc": "Backed out changeset b4fcd21cb6e5 (bug 553359) to try to fix tsvg_opacity regression.", - "pushdate": "2010-04-11 05:13:09", - "backsout": [ - "b4fcd21cb6e5" - ], - "backedoutby": "", - "author_email": "tnikkel@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 28605223.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "docshell/base/nsDocShell.cpp", - "layout/base/nsPresContext.cpp", - "layout/base/nsPresContext.h" - ], - "components": [ - "Core::Layout", - "Core::DOM: Navigation" - ], - "directories": [ - "layout/base", - "docshell/base", - "layout", - "docshell" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "e4496c8a44e560c48cb228851239b177c08859a4", - "author": "Timothy Nikkel ", - "bug_id": 553363, - "desc": "Backed out changeset 633cc14c86b8 (bug 553363) to try to fix tsvg_opacity regression.", - "pushdate": "2010-04-11 05:13:09", - "backsout": [ - "633cc14c86b8" - ], - "backedoutby": "", - "author_email": "tnikkel@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 28605223.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "uriloader/base/nsDocLoader.cpp", - "uriloader/base/nsDocLoader.h" - ], - "components": [ - "Core::DOM: Navigation" - ], - "directories": [ - "uriloader/base", - "uriloader" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "df3a1a39837f15a5a51507b6af84deb81a1e9ce6", - "author": "Timothy Nikkel ", - "bug_id": 222436, - "desc": "Backed out changeset 3a27158cbdd6 (bug 222436) to try to fix tsvg_opacity regression.", - "pushdate": "2010-04-11 05:13:09", - "backsout": [ - "3a27158cbdd6" - ], - "backedoutby": "", - "author_email": "tnikkel@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 28605223.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/base/nsPresContext.cpp", - "layout/base/nsPresContext.h" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "e69034463eebbd368322b97559b4ae95b7722aaf", - "author": "Timothy Nikkel ", - "bug_id": 505835, - "desc": "Backed out changeset 02e8391669c3 (Bug 505835) for suspicion of causing tsvg_opacity regression.", - "pushdate": "2010-04-11 07:11:24", - "backsout": [ - "02e8391669c3" - ], - "backedoutby": "", - "author_email": "tnikkel@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 28612318.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/xul/base/src/tree/src/nsTreeBodyFrame.cpp" - ], - "components": [], - "directories": [ - "layout/xul", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "83bf27b04ddc38081b87125daa2468b17089cef5", - "author": "Timothy Nikkel ", - "bug_id": 553359, - "desc": "Backed out changeset ae2093359899 (Bug 553359) for tsvg_opacity regression.", - "pushdate": "2010-04-12 00:28:43", - "backsout": [ - "ae2093359899" - ], - "backedoutby": "", - "author_email": "tnikkel@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 28674557.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "docshell/base/nsDocShell.cpp", - "layout/base/nsPresContext.cpp", - "layout/base/nsPresContext.h" - ], - "components": [ - "Core::Layout", - "Core::DOM: Navigation" - ], - "directories": [ - "layout/base", - "docshell/base", - "layout", - "docshell" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "23e71fa6bd6e058498c18f6f7a9a8875fc245115", - "author": "Andreas Gal ", - "bug_id": 557914, - "desc": "Backed out changeset 687d1e4c213e (bug 557914).", - "pushdate": "2010-04-15 16:08:37", - "backsout": [ - "687d1e4c213e" - ], - "backedoutby": "", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 56348239.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jscntxt.h", - "js/src/jsgc.cpp", - "js/src/jsiter.cpp", - "js/src/jsiter.h" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "0fc19b24294756c136b02ec922c3eba656c2f623", - "author": "Boris Zbarsky ", - "bug_id": 556830, - "desc": "Backed out changeset 698ace1f1027 (bug 556830) for causing jsreftest failures.", - "pushdate": "2010-04-15 16:08:37", - "backsout": [ - "698ace1f1027" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 55793025.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsobj.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "57f8cd34cf6e0ca264e00e73ac9eea979136090c", - "author": "Andreas Gal ", - "bug_id": 558058, - "desc": "Backed out changeset 61de331861af (bug 558058).", - "pushdate": "2010-04-15 16:08:37", - "backsout": [ - "61de331861af" - ], - "backedoutby": "", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 56348239.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jscntxt.cpp", - "js/src/jscntxt.h", - "js/src/jsiter.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "5896d4f94aee0ceb07c2a877b26a498855f4cb77", - "author": "Karl Tomlinson ", - "bug_id": 393760, - "desc": "backout e1e1143be432 due to reftest failure in layout/reftests/bugs/393760-1.xml b=552044", - "pushdate": "2010-04-21 05:21:59", - "backsout": [ - "e1e1143be432" - ], - "backedoutby": "", - "author_email": "karlt+@karlt.net", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 56426895.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/mathml/content/src/nsMathMLElement.cpp", - "layout/reftests/mathml/mathbackground-1-ref.mml", - "layout/reftests/mathml/mathbackground-1.mml", - "layout/reftests/mathml/mathbackground-2-ref.mml", - "layout/reftests/mathml/mathbackground-2.mml", - "layout/reftests/mathml/mathbackground-3-ref.mml", - "layout/reftests/mathml/mathbackground-3.mml", - "layout/reftests/mathml/mathbackground-4-ref.mml", - "layout/reftests/mathml/mathbackground-4.mml", - "layout/reftests/mathml/mathcolor-1-ref.mml", - "layout/reftests/mathml/mathcolor-1.mml", - "layout/reftests/mathml/mathcolor-2-ref.mml", - "layout/reftests/mathml/mathcolor-2.mml", - "layout/reftests/mathml/mathcolor-3-ref.mml", - "layout/reftests/mathml/mathcolor-3.mml", - "layout/reftests/mathml/mathcolor-4-ref.mml", - "layout/reftests/mathml/mathcolor-4.mml", - "layout/reftests/mathml/reftest.list" - ], - "components": [ - "Core::MathML" - ], - "directories": [ - "content/mathml", - "content", - "layout", - "layout/reftests" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "f1bc91ce880e02e519f271f9c9b608961f7a2533", - "author": "Robert Sayre ", - "bug_id": 561011, - "desc": "Backed out changeset 1af19eedbde2 -- Fix sharpSlots vs. with grudge-match (561011, r=mrbkap).", - "pushdate": "2010-04-24 21:50:01", - "backsout": [ - "1af19eedbde2" - ], - "backedoutby": "", - "author_email": "sayrer@gmail.com", - "reviewers": [ - "mrbkap" - ], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 58933968.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsparse.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "9cefbeff6938b64e8b8310dcc804aab85f922222", - "author": "Karl Tomlinson ", - "bug_id": 559492, - "desc": "backout 32502a2c5671 b=559492 due to seg fault in storage/test/test_transaction_helper.cpp possibly in DumpLeakedURLs", - "pushdate": "2010-04-28 22:40:27", - "backsout": [ - "32502a2c5671" - ], - "backedoutby": "", - "author_email": "karlt+@karlt.net", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 57094003.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "netwerk/base/src/nsStandardURL.cpp" - ], - "components": [], - "directories": [ - "netwerk/base", - "netwerk" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "ff9f542d06831528ededff7c28bfeee7168ab45a", - "author": "Timothy Nikkel ", - "bug_id": 222436, - "desc": "Backed out changeset e6134e94c6cb (Bug 222436) for possible Tsvg_opacity regression.", - "pushdate": "2010-05-02 07:02:16", - "backsout": [ - "e6134e94c6cb" - ], - "backedoutby": "", - "author_email": "tnikkel@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 30426170.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/base/nsPresContext.cpp", - "layout/base/nsPresContext.h" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "eb4e203caf33c1a4351b61987170e675b2e77b6d", - "author": "Andreas Gal ", - "bug_id": 560358, - "desc": "Backed out changeset 35c25547a135 (bug 560358).", - "pushdate": "2010-05-04 17:34:44", - "backsout": [ - "35c25547a135" - ], - "backedoutby": "", - "author_email": "gal@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 57995006.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsapi.cpp", - "js/src/jscntxt.h", - "js/src/jsregexp.cpp", - "js/src/jsregexp.h", - "js/src/jsstr.cpp", - "js/src/xpconnect/src/XPCSafeJSObjectWrapper.cpp" - ], - "components": [ - "Core::JavaScript Engine" - ], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "8d256e7846959ca614b1da225d2786396888d770", - "author": "Jason Orendorff ", - "bug_id": 559653, - "desc": "Backed out changeset ae857d818793 (bug 559653) due to test failures.", - "pushdate": "2010-05-04 17:34:44", - "backsout": [ - "ae857d818793" - ], - "backedoutby": "", - "author_email": "jorendorff@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 60899013.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsdbgapi.cpp", - "js/src/jsdbgapi.h", - "js/src/jsobj.cpp", - "js/src/jsops.cpp", - "js/src/jsscope.cpp", - "js/src/jsscope.h", - "js/src/jstracer.cpp", - "js/src/jstracer.h" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "5aa83042d4d3147c0f9311dc38c714ce19783b5a", - "author": "Jason Orendorff ", - "bug_id": 559653, - "desc": "Backed out changeset 73f23528bed6 (bug 559653, again)", - "pushdate": "2010-05-04 17:34:44", - "backsout": [ - "73f23528bed6" - ], - "backedoutby": "", - "author_email": "jorendorff@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 60899013.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsdbgapi.cpp", - "js/src/jsdbgapi.h", - "js/src/jsobj.cpp", - "js/src/jsops.cpp", - "js/src/jsscope.cpp", - "js/src/jsscope.h", - "js/src/jstracer.cpp", - "js/src/jstracer.h", - "js/src/trace-test/tests/basic/testMethodWriteBarrier.js", - "js/src/trace-test/tests/basic/testMethodWriteBarrier2.js", - "js/src/trace-test/tests/basic/testMethodWriteBarrier3.js" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "1b3deed2d784997d6b35397fff8355832255d857", - "author": "Ted Mielczarek ", - "bug_id": 559854, - "desc": "Backed out changeset 510669ff9ba1 \"bug 559854 - Compile target xpidl only if libIDL is configured when cross compiling. r=ted\" for OS X bustage", - "pushdate": "2010-05-05 15:00:40", - "backsout": [ - "510669ff9ba1" - ], - "backedoutby": "", - "author_email": "ted.mielczarek@gmail.com", - "reviewers": [ - "ted" - ], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 67039876.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "configure.in", - "xpcom/typelib/xpidl/Makefile.in" - ], - "components": [], - "directories": [ - "xpcom/typelib", - "xpcom" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "90d08f21fbf0b78f42cd9e312097d9a295fdb978", - "author": "L. David Baron ", - "bug_id": 563023, - "desc": "Backed out changeset 09a936531466 (bug 563023) due to Mac reftest failure.", - "pushdate": "2010-05-05 20:53:39", - "backsout": [ - "09a936531466" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 62301340.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/reftests/font-face/src-list-local-fallback-ref.html" - ], - "components": [ - "Core::CSS Parsing and Computation" - ], - "directories": [ - "layout/reftests", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "ea445ca9c148e0996b4794c07b9e549d7d64cb31", - "author": "Phil Ringnalda ", - "bug_id": 533891, - "desc": "Backed out changeset e074757a15aa (bug 533891) due to xpcshell orange after a clobber", - "pushdate": "2010-05-11 04:41:14", - "backsout": [ - "e074757a15aa" - ], - "backedoutby": "", - "author_email": "philringnalda@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 60060484.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/app/profile/firefox.js", - "browser/installer/removed-files.in", - "content/base/src/nsObjectLoadingContent.cpp", - "content/base/src/nsObjectLoadingContent.h", - "modules/plugin/Makefile.in", - "modules/plugin/base/public/Makefile.in", - "modules/plugin/base/public/nsDefaultPlugin.h", - "modules/plugin/base/src/nsPluginHost.cpp", - "modules/plugin/base/src/nsPluginHost.h", - "modules/plugin/base/src/nsPluginTags.cpp", - "modules/plugin/base/src/nsPluginTags.h", - "modules/plugin/default/mac/DefaultPlugin.mm", - "modules/plugin/default/mac/DefaultPlugin.xcodeproj/TemplateIcon.tiff", - "modules/plugin/default/mac/DefaultPlugin.xcodeproj/project.pbxproj", - "modules/plugin/default/mac/English.lproj/InfoPlist.strings", - "modules/plugin/default/mac/Info.plist", - "modules/plugin/default/mac/Makefile.in", - "modules/plugin/default/mac/plugin.png", - "modules/plugin/default/os2/Makefile.in", - "modules/plugin/default/os2/dbg.cpp", - "modules/plugin/default/os2/dbg.h", - "modules/plugin/default/os2/dialogs.cpp", - "modules/plugin/default/os2/dialogs.h", - "modules/plugin/default/os2/maindll.cpp", - "modules/plugin/default/os2/npnulos2.h", - "modules/plugin/default/os2/npnulos2.ico", - "modules/plugin/default/os2/npnulos2.rc", - "modules/plugin/default/os2/npos2.cpp", - "modules/plugin/default/os2/npshell.cpp", - "modules/plugin/default/os2/plugin.cpp", - "modules/plugin/default/os2/plugin.h", - "modules/plugin/default/os2/utils.cpp", - "modules/plugin/default/os2/utils.h", - "modules/plugin/default/unix/Makefile.in", - "modules/plugin/default/unix/npshell.c", - "modules/plugin/default/unix/npunix.c", - "modules/plugin/default/unix/nullplugin.c", - "modules/plugin/default/unix/nullplugin.h", - "modules/plugin/default/windows/Makefile.in", - "modules/plugin/default/windows/Npnul32.dsp", - "modules/plugin/default/windows/dbg.cpp", - "modules/plugin/default/windows/dbg.h", - "modules/plugin/default/windows/dialogs.cpp", - "modules/plugin/default/windows/dialogs.h", - "modules/plugin/default/windows/maindll.cpp", - "modules/plugin/default/windows/npnul32.def", - "modules/plugin/default/windows/npnul32.dsw", - "modules/plugin/default/windows/npnul32.rc", - "modules/plugin/default/windows/npshell.cpp", - "modules/plugin/default/windows/npwin.cpp", - "modules/plugin/default/windows/plugicon.ico", - "modules/plugin/default/windows/plugin.cpp", - "modules/plugin/default/windows/plugin.h", - "modules/plugin/default/windows/resource.h", - "modules/plugin/default/windows/utils.cpp", - "modules/plugin/default/windows/utils.h" - ], - "components": [ - "Firefox::General", - "Firefox::Installer" - ], - "directories": [ - "browser/app", - "modules/plugin", - "browser/installer", - "content/base", - "content", - "browser", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "357d302157060b473fb7fe8c0a27918071f310d5", - "author": "Timothy Nikkel ", - "bug_id": 559996, - "desc": "Backed out changeset a6138098775f (bug 559996) for causing orange.", - "pushdate": "2010-05-12 02:24:53", - "backsout": [ - "a6138098775f" - ], - "backedoutby": "", - "author_email": "tnikkel@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 31273527.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/base/public/nsIDocument.h", - "content/base/src/nsContentSink.cpp", - "content/base/src/nsContentSink.h", - "content/base/src/nsDocument.cpp", - "content/base/src/nsDocument.h", - "content/test/reftest/bug559996-iframe.html", - "content/test/reftest/bug559996-ref-iframe.html", - "content/test/reftest/bug559996-ref.html", - "content/test/reftest/bug559996.html", - "content/test/reftest/reftest.list", - "layout/base/nsDocumentViewer.cpp", - "layout/base/nsPresShell.cpp" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "content/test", - "content/base", - "content", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "01befa5163eed6f462d5b920bc0470599dc2cb2d", - "author": "Timothy Nikkel ", - "bug_id": 564705, - "desc": "back out e40cbab6a972 (Bug 564705) 590da60fd253 (Bug 507628 and bug 507991) b166415b8c3f (Bug 564368) 0dac5d3eeb97 (Bug 564063) 116e56d84770 (Bug 563407) c51c93f5240f (Bug 536495) for some orange", - "pushdate": "2010-05-12 03:01:28", - "backsout": [ - "e40cbab6a972" - ], - "backedoutby": "", - "author_email": "tnikkel@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 31275722.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/base/src/nsGenericElement.cpp", - "content/base/src/nsTextNode.cpp", - "content/xbl/crashtests/507628-1.xhtml", - "content/xbl/crashtests/507991-1.xhtml", - "content/xbl/crashtests/crashtests.list", - "layout/base/crashtests/564063-1.html", - "layout/base/crashtests/crashtests.list", - "layout/base/nsCSSFrameConstructor.cpp", - "layout/generic/crashtests/564368-1.xhtml", - "layout/generic/crashtests/crashtests.list", - "layout/generic/nsFrameSetFrame.cpp", - "layout/xul/base/src/nsTextBoxFrame.cpp", - "modules/libpr0n/src/imgRequestProxy.cpp" - ], - "components": [ - "Core::Layout", - "Core::Layout: Images, Video, and HTML Frames" - ], - "directories": [ - "layout/generic", - "modules/libpr0n", - "layout/xul", - "content/base", - "content", - "content/xbl", - "layout", - "layout/base", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "c861185afd4a103b322aed36a12e4b7462790d9f", - "author": "Boris Zbarsky ", - "bug_id": 562649, - "desc": "Backed out changeset 6a71deda9822 (bug 562649) due to browser-chrome orange.", - "pushdate": "2010-05-14 17:04:31", - "backsout": [ - "6a71deda9822" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 58301979.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/base/content/browser.js", - "browser/base/content/tabbrowser.xml", - "browser/base/content/test/Makefile.in", - "browser/base/content/test/browser_bug562649.js" - ], - "components": [ - "Firefox::General" - ], - "directories": [ - "browser/base", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "c95e1d49bc792d5ed6255c37f5403048be77559f", - "author": "Boris Zbarsky ", - "bug_id": 564979, - "desc": "Backed out changeset 90d627f2471e (bug 564979) because it broke mochitests.", - "pushdate": "2010-05-17 19:00:34", - "backsout": [ - "90d627f2471e" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 58568142.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/base/public/nsINode.h", - "content/base/src/nsGenericElement.cpp", - "extensions/spellcheck/src/mozInlineSpellWordUtil.cpp", - "js/src/xpconnect/src/dom_quickstubs.qsconf" - ], - "components": [ - "Core::Spelling checker" - ], - "directories": [ - "js/src", - "extensions/spellcheck", - "content/base", - "content", - "extensions", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "9d40cce434865515df81912ce22d2fdfa6e80a61", - "author": "Peter Van der Beken ", - "bug_id": 560462, - "desc": "Back out ba983923066f (bug 560462 part 3c) to see if it fixes test_aria_imgmap.html orange.", - "pushdate": "2010-06-01 18:27:21", - "backsout": [ - "ba983923066f" - ], - "backedoutby": "", - "author_email": "peterv@propagandism.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 61352668.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/xpconnect/src/dom_quickstubs.qsconf" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "c482200ed43651dec55ce38e56134d43e115a5aa", - "author": "Justin Wood ", - "bug_id": 564591, - "desc": "Backout 69df59e99741 -- Bug 564591: Speed up BindToTree/UnbindFromTree by only doing XBL related work when needed.", - "pushdate": "2010-06-04 01:45:41", - "backsout": [ - "69df59e99741" - ], - "backedoutby": "", - "author_email": "Callek@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 61172406.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/base/src/nsGenericDOMDataNode.cpp", - "content/base/src/nsGenericElement.cpp", - "content/xbl/src/nsBindingManager.cpp", - "content/xbl/src/nsBindingManager.h" - ], - "components": [], - "directories": [ - "content/base", - "content", - "content/xbl" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "b18beea31ad3fd3130cdcd7b8195b0a04fb5e681", - "author": "Jason Orendorff ", - "bug_id": 559653, - "desc": "Back out changeset a72a9d72c028 (bug 559653, remove SetPropHit). Checking to see if this caused a 5% Dromaeo regression today.", - "pushdate": "2010-06-06 19:08:23", - "backsout": [ - "a72a9d72c028" - ], - "backedoutby": "", - "author_email": "jorendorff@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 63755832.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsdbgapi.cpp", - "js/src/jsdbgapi.h", - "js/src/jsobj.cpp", - "js/src/jsops.cpp", - "js/src/jsscope.cpp", - "js/src/jsscope.h", - "js/src/jstracer.cpp", - "js/src/jstracer.h", - "js/src/trace-test/tests/basic/testMethodWriteBarrier.js", - "js/src/trace-test/tests/basic/testMethodWriteBarrier2.js", - "js/src/trace-test/tests/basic/testMethodWriteBarrier3.js" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "2fe89784cf66347487cbf5a9f010dce8fabbe043", - "author": "Jason Orendorff ", - "bug_id": 569735, - "desc": "Back out changeset 96dbe8a784f1 (bug 569735) due to failing tests.", - "pushdate": "2010-06-06 19:08:23", - "backsout": [ - "96dbe8a784f1" - ], - "backedoutby": "", - "author_email": "jorendorff@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 63755832.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsarray.cpp", - "js/src/jscntxt.h", - "js/src/jsiter.cpp", - "js/src/jsiter.h", - "js/src/jsobj.cpp", - "js/src/jsproxy.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "0ba3c58afb3abf493dabe321f29ea94072ffe2a3", - "author": "Robert Sayre ", - "bug_id": 556277, - "desc": "Backed out changeset 52be13ea0488. Bug 556277 - Compute this eagerly in more cases. r=brendan. Suspected of performance regression on SunSpider unpack-code. 80ms -> 135ms.", - "pushdate": "2010-06-06 19:08:23", - "backsout": [ - "52be13ea0488" - ], - "backedoutby": "", - "author_email": "sayrer@gmail.com", - "reviewers": [ - "brendan" - ], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 62639470.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsapi.cpp", - "js/src/jsapi.h", - "js/src/jsinterp.cpp", - "js/src/jsinterp.h", - "js/src/jsobj.cpp", - "js/src/jsobj.h", - "js/src/jsops.cpp", - "js/src/jsstr.cpp", - "js/src/jstracer.cpp", - "js/src/trace-test/tests/basic/testThis1.js", - "js/src/trace-test/tests/basic/testThis2.js" - ], - "components": [ - "Core::JavaScript Engine" - ], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "3e15e567ae44cd4b2fdd044a7d973fb0089d5cc7", - "author": "Dave Townsend ", - "bug_id": 569342, - "desc": "Backed out changeset 33760547ecf7 from bug 569342 to fix the test failure.", - "pushdate": "2010-06-08 18:20:50", - "backsout": [ - "33760547ecf7" - ], - "backedoutby": "", - "author_email": "dtownsend@oxymoronical.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 63531408.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/base/content/test/Makefile.in", - "browser/base/content/test/browser_bug569342.js", - "toolkit/components/viewconfig/content/config.xul", - "toolkit/content/widgets/findbar.xml", - "toolkit/mozapps/extensions/content/extensions.xul" - ], - "components": [], - "directories": [ - "browser/base", - "toolkit/content", - "toolkit/components", - "toolkit", - "toolkit/mozapps", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "0bf458761ea2d29bc48e333a8d2afd38238d7e83", - "author": "Timothy Nikkel ", - "bug_id": 569425, - "desc": "Backed out changeset 2f539cc84d97 (bug 569425) because this may hide real a11y issues.", - "pushdate": "2010-06-08 20:44:03", - "backsout": [ - "2f539cc84d97" - ], - "backedoutby": "", - "author_email": "tnikkel@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 33672277.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "accessible/tests/mochitest/states/test_aria_imgmap.html", - "accessible/tests/mochitest/tree/test_aria_imgmap.html" - ], - "components": [ - "Core::Disability Access APIs" - ], - "directories": [ - "accessible", - "accessible/tests" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "42a58530d41962e11cd20a2abfcf02e6c13b21c3", - "author": "Daniel Holbert ", - "bug_id": 552938, - "desc": "Backed out changeset a8ac411e1653 (bug 552938) for causing some randomorange.", - "pushdate": "2010-06-10 00:17:54", - "backsout": [ - "a8ac411e1653" - ], - "backedoutby": "", - "author_email": "dholbert@cs.stanford.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 65298001.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/xml/document/src/nsXMLContentSink.cpp", - "layout/svg/crashtests/crashtests.list", - "parser/html/Makefile.in", - "parser/html/nsHtml5SVGLoadDispatcher.cpp", - "parser/html/nsHtml5SVGLoadDispatcher.h", - "parser/html/nsHtml5TreeBuilderCppSupplement.h", - "parser/html/nsHtml5TreeOperation.cpp", - "parser/html/nsHtml5TreeOperation.h", - "parser/htmlparser/tests/mochitest/Makefile.in", - "parser/htmlparser/tests/mochitest/test_bug552938-2.html", - "parser/htmlparser/tests/mochitest/test_bug552938.html" - ], - "components": [ - "Core::XML", - "Core::DOM: HTML Parser", - "Core::SVG" - ], - "directories": [ - "parser/html", - "layout/svg", - "parser/htmlparser", - "content", - "parser", - "content/xml", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "ef715f78e927e46db86fd00b7a5ea89641767041", - "author": "Ted Mielczarek ", - "bug_id": 568818, - "desc": "Backed out changeset d1c910f2ec4d on suspicion of causing test crashes - Bug 568818 - sendSyncMessage fails with 'SyntaxError: JSON.parse' if one of the listeners does not return a value", - "pushdate": "2010-06-11 17:53:10", - "backsout": [ - "d1c910f2ec4d" - ], - "backedoutby": "", - "author_email": "ted.mielczarek@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 70247026.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/base/src/nsFrameMessageManager.cpp" - ], - "components": [], - "directories": [ - "content/base", - "content" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "4dc9a5d9167b157b0867547ea14fe4a4e306af42", - "author": "Ehsan Akhgari ", - "bug_id": 563327, - "desc": "Backed out changeset fee5701c664e and changeset dcfe95c71a04 to fix the mochitest-a11y crashes (bug 563327)", - "pushdate": "2010-06-14 22:14:46", - "backsout": [ - "fee5701c664e" - ], - "backedoutby": "", - "author_email": "ehsan@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 19270363.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "accessible/src/base/nsEventShell.cpp", - "accessible/src/base/nsEventShell.h", - "layout/base/nsCSSFrameConstructor.cpp", - "layout/base/nsIPresShell.h", - "layout/base/nsPresShell.cpp" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "accessible/src", - "accessible", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "7523ad2f395e9295ec597de3b8de5329cb17a18a", - "author": "Drew Willcoxon ", - "bug_id": 571459, - "desc": "Backed out changeset b54140961fa7 to fix more mochitest-a11y crashes (Bug 571459)", - "pushdate": "2010-06-14 23:19:27", - "backsout": [ - "b54140961fa7" - ], - "backedoutby": "", - "author_email": "adw@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 44710491.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "accessible/public/nsIAccessibilityService.h", - "accessible/src/base/nsAccDocManager.h", - "accessible/src/base/nsAccessibilityService.cpp", - "accessible/src/base/nsAccessibilityService.h", - "accessible/src/base/nsOuterDocAccessible.cpp", - "layout/base/nsPresShell.cpp" - ], - "components": [], - "directories": [ - "accessible/public", - "accessible/src", - "accessible", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "53510454716ebb1e760a0262ffdfb89276c9543b", - "author": "Chris Pearce ", - "bug_id": 572034, - "desc": "Backed out changeset f2835c78ef3f, Bug 572034.", - "pushdate": "2010-06-16 23:04:24", - "backsout": [ - "f2835c78ef3f" - ], - "backedoutby": "", - "author_email": "chris@pearce.org.nz", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 54088542.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "gfx/ycbcr/Makefile.in" - ], - "components": [], - "directories": [ - "gfx", - "gfx/ycbcr" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "3e0eb9fe8f481ce2257922ef08219bb364da24a7", - "author": "Matthew Gregan ", - "bug_id": 572034, - "desc": "Backed out changeset d268e54fbfcf (bug 572034)", - "pushdate": "2010-06-18 23:44:31", - "backsout": [ - "d268e54fbfcf" - ], - "backedoutby": "", - "author_email": "kinetik@flim.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 54067558.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "gfx/ycbcr/Makefile.in", - "gfx/ycbcr/README", - "gfx/ycbcr/bug572034_mac_64bit.patch", - "gfx/ycbcr/update.sh", - "gfx/ycbcr/yuv_row_linux.cpp" - ], - "components": [ - "Core::Graphics" - ], - "directories": [ - "gfx", - "gfx/ycbcr" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "5504cc6d31698a12ca86c443aca74c834b499ded", - "author": "Matthew Gregan ", - "bug_id": 555121, - "desc": "Backed out changeset 4adab2629c3f (bug 555121)", - "pushdate": "2010-06-19 06:25:38", - "backsout": [ - "4adab2629c3f" - ], - "backedoutby": "", - "author_email": "kinetik@flim.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 54091625.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "media/libvorbis/README_MOZILLA", - "media/libvorbis/bug498855.patch", - "media/libvorbis/bug550184.patch", - "media/libvorbis/include/vorbis/codec.h", - "media/libvorbis/lib/backends.h", - "media/libvorbis/lib/codebook.h", - "media/libvorbis/lib/highlevel.h", - "media/libvorbis/lib/psy.h", - "media/libvorbis/lib/vorbis_codebook.c", - "media/libvorbis/lib/vorbis_floor1.c", - "media/libvorbis/lib/vorbis_info.c", - "media/libvorbis/lib/vorbis_mapping0.c", - "media/libvorbis/lib/vorbis_psy.c", - "media/libvorbis/lib/vorbis_res0.c", - "media/libvorbis/lib/vorbis_sharedbook.c", - "media/libvorbis/lib/vorbis_synthesis.c", - "media/libvorbis/update.sh" - ], - "components": [ - "Core::Audio/Video" - ], - "directories": [ - "media", - "media/libvorbis" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "063826c84e206d51231cdd4d2aeaf23544d1fc65", - "author": "L. David Baron ", - "bug_id": 534398, - "desc": "Backed out changeset b805434e7e4b (bug 534398) for causing leaks on (debug) mochitest-other.", - "pushdate": "2010-06-19 21:17:47", - "backsout": [ - "b805434e7e4b" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 66190788.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/base/content/browser-menubar.inc", - "browser/base/content/browser-sets.inc", - "browser/base/content/browser.js", - "browser/locales/en-US/chrome/browser/browser.dtd", - "toolkit/components/console/Makefile.in", - "toolkit/components/console/content/headsUpDisplay.css", - "toolkit/components/console/hudservice/HUDService.jsm", - "toolkit/components/console/hudservice/Makefile.in", - "toolkit/components/console/hudservice/tests/Makefile.in", - "toolkit/components/console/hudservice/tests/browser/Makefile.in", - "toolkit/components/console/hudservice/tests/browser/browser_HUDServiceTestsAll.js", - "toolkit/components/console/hudservice/tests/browser/test-console.html", - "toolkit/components/console/hudservice/tests/browser/test-data.json", - "toolkit/components/console/hudservice/tests/browser/test-filter.html", - "toolkit/components/console/hudservice/tests/browser/test-mutation.html", - "toolkit/components/console/hudservice/tests/browser/test-network.html", - "toolkit/components/console/hudservice/tests/browser/test-observe-http-ajax.html", - "toolkit/components/console/hudservice/tests/browser/testscript.js", - "toolkit/components/console/jar.mn", - "toolkit/locales/en-US/chrome/global/headsUpDisplay.dtd", - "toolkit/locales/en-US/chrome/global/headsUpDisplay.properties", - "toolkit/locales/jar.mn" - ], - "components": [ - "Firefox::General", - "Firefox Build System::General", - "Firefox::Menus" - ], - "directories": [ - "browser/base", - "toolkit/components", - "toolkit", - "toolkit/locales", - "browser/locales", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "284711070f31f2677b807d95476cc7e6db197a3c", - "author": "L. David Baron ", - "bug_id": 571347, - "desc": "Backed out changeset a6e3300a3bac (bug 571347) for causing bug 573255 because the optimization is invalid given :not() selectors.", - "pushdate": "2010-06-19 21:17:47", - "backsout": [ - "a6e3300a3bac" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 66190788.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/reftests/bugs/571347-1-ref.html", - "layout/reftests/bugs/571347-1a.html", - "layout/reftests/bugs/571347-1b.html", - "layout/reftests/bugs/571347-2-ref.html", - "layout/reftests/bugs/571347-2a.html", - "layout/reftests/bugs/571347-2b.html", - "layout/reftests/bugs/571347-2c.html", - "layout/reftests/bugs/571347-2d.html", - "layout/reftests/bugs/reftest.list", - "layout/style/nsCSSRuleProcessor.cpp" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "layout/reftests", - "layout/style", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "4157a4415bf79adf6def7aa2d216e1321c91867d", - "author": "Edward Lee ", - "bug_id": 482878, - "desc": "Backed out changeset 430ce13b63f3 (bug 482878)\nBug 482670 restored un-wrapped payloads, so until a version bump, those using trunk will need to do a manual server wipe.", - "pushdate": "2010-06-23 22:21:35", - "backsout": [ - "430ce13b63f3" - ], - "backedoutby": "", - "author_email": "edilee@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 40320739.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "services/sync/modules/service.js" - ], - "components": [], - "directories": [ - "services", - "services/sync" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "39cb8075f8444f27f7097238e75953aba158d73e", - "author": "Shawn Wilsher ", - "bug_id": 571992, - "desc": "Backed out changeset 88142593698a (bug 571992) because it already landed apparently...", - "pushdate": "2010-06-24 17:39:34", - "backsout": [ - "88142593698a" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 64806743.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/base/content/browser.xul" - ], - "components": [], - "directories": [ - "browser/base", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "bf804f41e245b8e2ce317ff51da1e94d32d5ab70", - "author": "Daniel Holbert ", - "bug_id": 557566, - "desc": "Backed out changeset a65d962718b0 (bug 557566)", - "pushdate": "2010-06-27 03:02:56", - "backsout": [ - "a65d962718b0" - ], - "backedoutby": "", - "author_email": "dholbert@cs.stanford.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 66776703.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/canvas/src/Makefile.in", - "content/media/wave/Makefile.in" - ], - "components": [], - "directories": [ - "content/canvas", - "content", - "content/media" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "880fcf5f07b3d395c9d74b7d45b09dd8825217d8", - "author": "Daniel Holbert ", - "bug_id": 557566, - "desc": "Backed out changeset 5da9fc2be835 (Bug 557566)", - "pushdate": "2010-06-27 03:02:56", - "backsout": [ - "5da9fc2be835" - ], - "backedoutby": "", - "author_email": "dholbert@cs.stanford.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 66776703.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/canvas/src/Makefile.in", - "content/media/wave/Makefile.in", - "docshell/shistory/src/Makefile.in", - "dom/src/geolocation/Makefile.in", - "editor/txmgr/src/Makefile.in", - "toolkit/components/places/tests/cpp/Makefile.in", - "uriloader/base/Makefile.in" - ], - "components": [], - "directories": [ - "content/canvas", - "dom/src", - "toolkit", - "toolkit/components", - "docshell/shistory", - "uriloader/base", - "docshell", - "editor", - "dom", - "content", - "content/media", - "editor/txmgr", - "uriloader" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "4add6eaba66ff0b2a6c7a809922a60f99625ddc3", - "author": "Peter Van der Beken ", - "bug_id": 571159, - "desc": "Backout 8a6de68c0feb (Fix for bug 571159 (Leak nsGlobalWindow with unknown-content-type dialog)) to fix orange.", - "pushdate": "2010-06-28 15:40:59", - "backsout": [ - "8a6de68c0feb" - ], - "backedoutby": "", - "author_email": "peterv@propagandism.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 63675486.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/mozapps/downloads/nsHelperAppDlg.js" - ], - "components": [], - "directories": [ - "toolkit/mozapps", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "5082a31c8b8e75fa9321fad3baf0e7621fee4328", - "author": "Justin Dolske ", - "bug_id": 574357, - "desc": "Backed out changeset e112f68bc941 (bug 574357) due to test failures.", - "pushdate": "2010-06-30 05:46:21", - "backsout": [ - "e112f68bc941" - ], - "backedoutby": "", - "author_email": "dolske@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 64232425.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "modules/plugin/test/mochitest/Makefile.in", - "modules/plugin/test/mochitest/test_crash_submit.xul", - "testing/mochitest/tests/SimpleTest/EventUtils.js", - "toolkit/crashreporter/CrashSubmit.jsm", - "toolkit/crashreporter/content/crashes.js" - ], - "components": [ - "Testing::Mochitest", - "Toolkit::Crash Reporting" - ], - "directories": [ - "toolkit", - "modules/plugin", - "toolkit/crashreporter", - "testing/mochitest", - "testing", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "869ff461e1d61b0fc911caba23388a95950ba1c8", - "author": "Boris Zbarsky ", - "bug_id": 575336, - "desc": "Backed out changeset 00dfcf7f4c9e (bug 575336) due to test orange. Magic words for CLOSED TREE.", - "pushdate": "2010-07-01 05:19:24", - "backsout": [ - "00dfcf7f4c9e" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 62406872.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/base/nsPresShell.cpp", - "view/src/nsViewManager.cpp" - ], - "components": [], - "directories": [ - "view", - "view/src", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "2e14387eb276fe4dc6ee4b13db76639d12b6234e", - "author": "Benjamin Smedberg ", - "bug_id": 541155, - "desc": "Backed out changeset df78efe07b18, debugging only printfs now that 541155 is diagnosed.", - "pushdate": "2010-07-01 06:28:42", - "backsout": [ - "df78efe07b18" - ], - "backedoutby": "", - "author_email": "benjamin@smedbergs.us", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 71933958.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "modules/plugin/test/testplugin/nptest.cpp" - ], - "components": [], - "directories": [ - "modules/plugin", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "686aedb56727e992700c4cb6dcc0162dab5b895b", - "author": "Benjamin Smedberg ", - "bug_id": 535564, - "desc": "Backed out changeset c7a2f3e14a58 - Testing from bug 535564 - We don't have a file handle open when we launch ssltunnel, so ssltunnel wasn't the cause.", - "pushdate": "2010-07-01 06:28:42", - "backsout": [ - "c7a2f3e14a58" - ], - "backedoutby": "", - "author_email": "benjamin@smedbergs.us", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 71933958.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "build/automation.py.in" - ], - "components": [], - "directories": [ - "build" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "9fb0650cbfc08daf9b1371544987878f7bb3ecd6", - "author": "Benjamin Smedberg ", - "bug_id": 542337, - "desc": "Backed out changeset e033fa1d3b0b - remove the workaround for bug 542337 because bent landed a real fix and we want testing", - "pushdate": "2010-07-01 06:28:42", - "backsout": [ - "e033fa1d3b0b" - ], - "backedoutby": "", - "author_email": "benjamin@smedbergs.us", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 71933958.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/generic/test/plugin_clipping_helper2.xhtml" - ], - "components": [], - "directories": [ - "layout/generic", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "c4b97df52cae46d26f3bbee0b47b7d994e6ce892", - "author": "Karl Tomlinson ", - "bug_id": 550026, - "desc": "backout 5b9325736070 b=550026", - "pushdate": "2010-07-01 06:28:42", - "backsout": [ - "5b9325736070" - ], - "backedoutby": "", - "author_email": "karlt+@karlt.net", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 62565298.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "dom/plugins/PluginModuleChild.cpp", - "dom/plugins/PluginModuleParent.cpp", - "modules/plugin/test/mochitest/Makefile.in", - "modules/plugin/test/mochitest/test_crash_nested_loop.html", - "modules/plugin/test/testplugin/nptest.cpp", - "modules/plugin/test/testplugin/nptest.h", - "modules/plugin/test/testplugin/nptest_gtk2.cpp", - "modules/plugin/test/testplugin/nptest_platform.h" - ], - "components": [], - "directories": [ - "dom", - "modules/plugin", - "dom/plugins", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "4497942b0e3d7aa73e282747d857fb6110b794d6", - "author": "Dave Townsend ", - "bug_id": 556400, - "desc": "Backed out changeset f666976446db from bug 556400 due to possible browser-chrome\nfailures.", - "pushdate": "2010-07-03 03:02:52", - "backsout": [ - "f666976446db" - ], - "backedoutby": "", - "author_email": "dtownsend@oxymoronical.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 65636330.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/components/places/src/History.cpp" - ], - "components": [], - "directories": [ - "toolkit/components", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "c066080db73501bdcee16c871ba3eebb07ca0779", - "author": "Dave Townsend ", - "bug_id": 566738, - "desc": "Backed out changeset 07a9dcc28c5c from bug 566738 due to possible browser-chrome failures.", - "pushdate": "2010-07-03 03:02:52", - "backsout": [ - "07a9dcc28c5c" - ], - "backedoutby": "", - "author_email": "dtownsend@oxymoronical.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 65636330.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "docshell/base/IHistory.h", - "docshell/base/nsDocShell.cpp", - "toolkit/components/places/src/History.cpp", - "toolkit/components/places/src/History.h", - "toolkit/components/places/src/nsNavHistory.cpp", - "toolkit/components/places/src/nsNavHistory.h", - "toolkit/components/places/tests/browser/Makefile.in" - ], - "components": [ - "Toolkit::Places", - "Core::DOM: Navigation" - ], - "directories": [ - "toolkit/components", - "docshell/base", - "toolkit", - "docshell" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "920385221b56485347c16d59a782c808d1b64085", - "author": "Dave Townsend ", - "bug_id": 556400, - "desc": "Backed out changeset f9a700607b86 from bug556400 due to possible browser-chrome failures.", - "pushdate": "2010-07-03 03:02:52", - "backsout": [ - "f9a700607b86" - ], - "backedoutby": "", - "author_email": "dtownsend@oxymoronical.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 65636330.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "docshell/base/IHistory.h", - "docshell/base/nsDocShell.cpp", - "docshell/base/nsDocShell.h", - "toolkit/components/places/src/Helpers.cpp", - "toolkit/components/places/src/Helpers.h", - "toolkit/components/places/src/History.cpp", - "toolkit/components/places/src/History.h", - "toolkit/components/places/src/nsNavHistory.cpp", - "toolkit/components/places/src/nsNavHistory.h", - "toolkit/components/places/tests/browser/Makefile.in", - "toolkit/components/places/tests/cpp/places_test_harness.h", - "toolkit/components/places/tests/cpp/test_IHistory.cpp", - "xpcom/build/Makefile.in", - "xpcom/build/ServiceList.h", - "xpcom/build/Services.cpp", - "xpcom/build/Services.h" - ], - "components": [ - "Toolkit::Places", - "Core::DOM: Navigation" - ], - "directories": [ - "toolkit/components", - "toolkit", - "docshell/base", - "docshell", - "xpcom/build", - "xpcom" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "330178c7235b6ac438af8a8b8797ce006a537242", - "author": "Benoit Girard ", - "bug_id": 577224, - "desc": "Back out 06cc16f7954e (bug 577224) because it can cause plugins to not draw.", - "pushdate": "2010-07-09 20:16:30", - "backsout": [ - "06cc16f7954e" - ], - "backedoutby": "", - "author_email": "b56girard@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 8125474.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "gfx/src/thebes/utils/nsCoreAnimationSupport.h", - "gfx/src/thebes/utils/nsCoreAnimationSupport.mm" - ], - "components": [], - "directories": [ - "gfx/src", - "gfx" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "6ad1beea584ac84aef0dd5f6b90b297d6afe187a", - "author": "Josh Aas ", - "bug_id": 578913, - "desc": "Backed out changeset 764bb4ae886c, bug 578913, it may be at fault for a Ts Shutdown regression.", - "pushdate": "2010-07-16 17:25:59", - "backsout": [ - "764bb4ae886c" - ], - "backedoutby": "", - "author_email": "joshmoz@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 64760720.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "modules/plugin/base/src/nsPluginHost.cpp", - "modules/plugin/base/src/nsPluginHost.h", - "modules/plugin/base/src/nsPluginStreamListenerPeer.cpp", - "modules/plugin/base/src/nsPluginStreamListenerPeer.h" - ], - "components": [], - "directories": [ - "modules/plugin", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "d0d098061840a2d4bb25beada4dfc4f84bdc6cb5", - "author": "Josh Aas ", - "bug_id": 571193, - "desc": "Backed out changeset f6c93f02146c, bug 571193.", - "pushdate": "2010-07-17 00:32:00", - "backsout": [ - "f6c93f02146c" - ], - "backedoutby": "", - "author_email": "joshmoz@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 64786281.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/xre/nsAppRunner.cpp", - "xpcom/io/CocoaFileUtils.h", - "xpcom/io/CocoaFileUtils.mm", - "xpcom/io/Makefile.in", - "xpcom/io/nsILocalFileMac.idl", - "xpcom/io/nsLocalFile.h", - "xpcom/io/nsLocalFileOSX.h", - "xpcom/io/nsLocalFileOSX.mm", - "xpcom/io/nsLocalFileUnix.cpp", - "xpcom/io/nsLocalFileUnix.h" - ], - "components": [ - "Core::XPCOM", - "Toolkit::Startup and Profile System" - ], - "directories": [ - "xpcom", - "xpcom/io", - "toolkit", - "toolkit/xre" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "bc7c573d41724335e529404841d169f38efd2b27", - "author": "Dave Townsend ", - "bug_id": 553494, - "desc": "Backed out changeset 58175e77c460 from bug 553494 due to test failures", - "pushdate": "2010-07-26 18:41:40", - "backsout": [ - "58175e77c460" - ], - "backedoutby": "", - "author_email": "dtownsend@oxymoronical.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 67679858.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/mozapps/extensions/content/extensions.js", - "toolkit/mozapps/extensions/content/extensions.xml", - "toolkit/mozapps/extensions/test/browser/Makefile.in", - "toolkit/mozapps/extensions/test/browser/browser_uninstalling.js", - "toolkit/mozapps/extensions/test/browser/head.js" - ], - "components": [ - "Toolkit::Add-ons Manager" - ], - "directories": [ - "toolkit/mozapps", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "a24232050cb11eb86eb348962deea19a40407a33", - "author": "Timothy Nikkel ", - "bug_id": 574621, - "desc": "Backed out changeset 9e290d196600 (bug 574621) for causing test failures.", - "pushdate": "2010-07-29 20:17:48", - "backsout": [ - "9e290d196600" - ], - "backedoutby": "", - "author_email": "tnikkel@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 38077102.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/base/nsPresShell.cpp" - ], - "components": [], - "directories": [ - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "8aabb35a1bb3103d74670ffa88023b9c93d783cc", - "author": "Robert Sayre ", - "bug_id": 579957, - "desc": "Backed out changeset d8bbb2ef3038. (Igor Bukanov \u2013 bug 579957 - parent as a field in JSObject. r=lw)", - "pushdate": "2010-08-01 00:33:23", - "backsout": [ - "d8bbb2ef3038" - ], - "backedoutby": "", - "author_email": "sayrer@gmail.com", - "reviewers": [ - "lw" - ], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 67410970.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsarray.cpp", - "js/src/jscntxt.h", - "js/src/jsgc.cpp", - "js/src/jsobj.cpp", - "js/src/jsobj.h", - "js/src/jsproxy.cpp", - "js/src/jsscope.h", - "js/src/jstracer.cpp", - "js/src/jstypedarray.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "4f0f0e801b200dcbdf824a0de1ff9c481481e7e1", - "author": "Robert Sayre ", - "bug_id": 583281, - "desc": "Backed out changeset af011e92ad0b. (Dave Herman \u2013 bug 583281, r=jimb: njs should get symlinked into objdir). This doesn't build on windows.", - "pushdate": "2010-08-01 00:33:23", - "backsout": [ - "af011e92ad0b" - ], - "backedoutby": "", - "author_email": "sayrer@gmail.com", - "reviewers": [ - "jimb" - ], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 67410970.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/njs", - "js/src/shell/Makefile.in", - "js/src/shell/njs", - "js/src/tests/narcissus.README" - ], - "components": [ - "Firefox Build System::General" - ], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "5e31dc2daf0a9c531370204ac3b7f32d9cd1437c", - "author": "Robert Sayre ", - "bug_id": 582479, - "desc": "Back out changeset c877176cbbed in order to get Windows compiling. (Bug 582479 - TM: Assertion failure: (&cx->regs->sp[1 - (iargc + 2)].toObject())->isFunction().)", - "pushdate": "2010-08-01 00:33:23", - "backsout": [ - "c877176cbbed" - ], - "backedoutby": "", - "author_email": "sayrer@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 67410970.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jstracer.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "9539f400bb5869e7f5041299359645bd509a9c69", - "author": "Robert Sayre ", - "bug_id": 577648, - "desc": "Backout changeset 80382d88b92c. (Bug 577648 - arguments.callee.caller does not work in FF 4 under certain circumstances). The patch is righteous, but MSVC's behavior with a mere 3GB of addressable memory is not. Will reland soon.", - "pushdate": "2010-08-01 00:33:23", - "backsout": [ - "80382d88b92c" - ], - "backedoutby": "", - "author_email": "sayrer@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 67410970.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsapi.cpp", - "js/src/jsarray.cpp", - "js/src/jsarray.h", - "js/src/jscntxt.cpp", - "js/src/jscntxt.h", - "js/src/jsdbgapi.cpp", - "js/src/jsdbgapi.h", - "js/src/jsemit.cpp", - "js/src/jsfun.cpp", - "js/src/jsfun.h", - "js/src/jsgc.cpp", - "js/src/jsinterp.cpp", - "js/src/jsinterp.h", - "js/src/jsobj.cpp", - "js/src/jsobjinlines.h", - "js/src/jsopcode.cpp", - "js/src/jsparse.cpp", - "js/src/jsscope.cpp", - "js/src/jsscope.h", - "js/src/jsscopeinlines.h", - "js/src/jsscript.cpp", - "js/src/jsstr.cpp", - "js/src/jsstr.h", - "js/src/jstracer.cpp", - "js/src/jsvalue.h", - "js/src/tests/js1_5/Regress/jstests.list", - "js/src/tests/js1_5/Scope/jstests.list", - "js/src/tests/js1_8_5/regress/jstests.list" - ], - "components": [ - "Core::JavaScript Engine" - ], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "bd4713e47e5e0851c7eb3461b2f6599d73f91f81", - "author": "Markus Stange ", - "bug_id": 574663, - "desc": "Backed out changeset cd5c28912351, bug 574663 (momentum scroll zooming) because the new test fails on Windows.", - "pushdate": "2010-08-02 15:52:38", - "backsout": [ - "cd5c28912351" - ], - "backedoutby": "", - "author_email": "mstange@themasta.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 65974854.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/events/src/nsEventStateManager.cpp", - "content/events/test/Makefile.in", - "content/events/test/test_bug574663.html", - "testing/mochitest/tests/SimpleTest/EventUtils.js", - "widget/public/nsGUIEvent.h", - "widget/src/cocoa/nsChildView.h", - "widget/src/cocoa/nsChildView.mm" - ], - "components": [ - "Testing::Mochitest" - ], - "directories": [ - "widget", - "testing/mochitest", - "content", - "widget/public", - "widget/src", - "testing", - "content/events" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "32a6a3231e503c54824c6ba80425894f9a058199", - "author": "Gavin Sharp ", - "bug_id": 550936, - "desc": "Backed out changeset bdb98838d6f6 from bug 550936 due to js-reftest failures", - "pushdate": "2010-08-03 05:27:20", - "backsout": [ - "bdb98838d6f6" - ], - "backedoutby": "", - "author_email": "gavin@gavinsharp.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 24450720.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/library/libxul-config.mk", - "toolkit/library/nsStaticXULComponents.cpp", - "toolkit/mozapps/extensions/Makefile.in", - "toolkit/mozapps/extensions/XPIProvider.jsm", - "toolkit/mozapps/extensions/addonManager.js", - "toolkit/mozapps/extensions/amInstallTrigger.cpp", - "toolkit/mozapps/extensions/amInstallTrigger.h", - "toolkit/mozapps/extensions/content/extensions-content.js", - "toolkit/mozapps/extensions/jar.mn" - ], - "components": [ - "Toolkit::Add-ons Manager" - ], - "directories": [ - "toolkit/library", - "toolkit/mozapps", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "f2d6cc57c80cae87069fccb19f8b0af68af1b7b0", - "author": "Gavin Sharp ", - "bug_id": 572967, - "desc": "Backed out changeset b46982cc0c0a from bug 572967 due to test failures", - "pushdate": "2010-08-03 05:39:35", - "backsout": [ - "b46982cc0c0a" - ], - "backedoutby": "", - "author_email": "gavin@gavinsharp.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 24451455.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/base/content/browser.css", - "browser/base/content/browser.js", - "browser/base/content/browser.xul", - "browser/themes/gnomestripe/browser/browser.css", - "browser/themes/pinstripe/browser/browser.css", - "browser/themes/winstripe/browser/browser.css", - "toolkit/content/PopupNotifications.jsm" - ], - "components": [ - "Firefox::General" - ], - "directories": [ - "browser/base", - "toolkit/content", - "toolkit", - "browser/themes", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "f7478476c9a5d4a650d764a967c8dedce7e5883f", - "author": "Robert Sayre ", - "bug_id": 583262, - "desc": "Backed out changeset c6131ed87e9c. Jason Orendorff \u2014 Bug 583262 - Remove security checks on f.prototype.constructor property at last. r=mrbkap. Causing nightly topcrash.", - "pushdate": "2010-08-04 20:45:11", - "backsout": [ - "c6131ed87e9c" - ], - "backedoutby": "", - "author_email": "sayrer@gmail.com", - "reviewers": [ - "mrbkap" - ], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 67742878.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsobj.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "decafc4eb6e2e82cb98713356c2814af0f78372f", - "author": "Markus Stange ", - "bug_id": 576777, - "desc": "Backed out changeset d84aff2ae1db (from bug 576777) because of perma-orange in test_text.html.", - "pushdate": "2010-08-05 12:56:16", - "backsout": [ - "d84aff2ae1db" - ], - "backedoutby": "", - "author_email": "mstange@themasta.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 66223472.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "accessible/tests/mochitest/attributes/test_text.html" - ], - "components": [], - "directories": [ - "accessible", - "accessible/tests" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "8565e77eacdccd4ae3aadd0f769ff2f0604b6684", - "author": "Markus Stange ", - "bug_id": 576777, - "desc": "Backed out changeset e29fc477ab4d, bug 576777, because of perma-orange in test_text.html.", - "pushdate": "2010-08-05 12:56:16", - "backsout": [ - "e29fc477ab4d" - ], - "backedoutby": "", - "author_email": "mstange@themasta.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 66223472.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "accessible/src/base/AccCollector.cpp", - "accessible/src/base/AccCollector.h", - "accessible/src/base/nsAccessible.cpp", - "accessible/src/base/nsAccessible.h", - "accessible/src/base/nsOuterDocAccessible.cpp", - "accessible/src/html/nsHyperTextAccessible.cpp", - "accessible/src/html/nsHyperTextAccessible.h", - "accessible/src/msaa/CAccessibleHypertext.cpp", - "accessible/tests/mochitest/attributes/test_text.html" - ], - "components": [], - "directories": [ - "accessible/src", - "accessible", - "accessible/tests" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "8d4d8fc43475a18933f6d48e2260289d9cff0db9", - "author": "Shawn Wilsher ", - "bug_id": 580790, - "desc": "Back out changeset 0b3af3fef0fd (bug 580790) due to burnage on a CLOSED TREE", - "pushdate": "2010-08-06 17:47:10", - "backsout": [ - "0b3af3fef0fd" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 68522399.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "storage/src/mozStorageConnection.cpp", - "storage/src/mozStorageService.cpp", - "storage/src/mozStorageService.h" - ], - "components": [], - "directories": [ - "storage/src", - "storage" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "e88f6c524f3aeda886e7ee21f8ed9b467e946ec9", - "author": "Shawn Wilsher ", - "bug_id": 568969, - "desc": "Backed out changeset e6e0200b6e03 (bug 568969) because it appears to have caused orange on a CLOSED TREE.", - "pushdate": "2010-08-06 18:54:28", - "backsout": [ - "e6e0200b6e03" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 68526437.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/base/public/nsContentUtils.h", - "content/base/src/Link.cpp", - "content/base/src/nsContentUtils.cpp", - "dom/ipc/ContentParent.cpp", - "toolkit/components/places/src/History.cpp" - ], - "components": [ - "Core::DOM: Content Processes" - ], - "directories": [ - "toolkit", - "toolkit/components", - "dom", - "content/base", - "content", - "dom/ipc" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "312fdcee7e5093582e6df431c7c210feef2b14b0", - "author": "Dave Townsend ", - "bug_id": 580869, - "desc": "Backed out changeset 300036f6c90f from bug 580869 due to test failures", - "pushdate": "2010-08-06 22:02:48", - "backsout": [ - "300036f6c90f" - ], - "backedoutby": "", - "author_email": "dtownsend@oxymoronical.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 68642326.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/generic/nsTextFrameThebes.cpp" - ], - "components": [], - "directories": [ - "layout/generic", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "87be0d140fd611534baa3bc3579062b9fa8ac4e6", - "author": "Dave Townsend ", - "bug_id": 580869, - "desc": "Backed out changeset 8f8ee0543d0f from bug 580869 in the CLOSED TREE", - "pushdate": "2010-08-06 22:02:48", - "backsout": [ - "8f8ee0543d0f" - ], - "backedoutby": "", - "author_email": "dtownsend@oxymoronical.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 68642326.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/generic/nsIFrame.h", - "layout/generic/nsTextFrame.h", - "layout/generic/nsTextFrameThebes.cpp" - ], - "components": [ - "Core::Layout", - "Core::Layout: Text and Fonts" - ], - "directories": [ - "layout/generic", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "5a254bcd79f2b1b27cee499322ebafd4f369f881", - "author": "Robert Sayre ", - "bug_id": 584495, - "desc": "Backed out changeset 504bc84513b0. Andreas Gal \u2013 Ensure that JSOPTION_UNROOTED_GLOBAL is set when we cycle collect (stop-gap measure for bug 584495, r=brendan). default tip", - "pushdate": "2010-08-07 05:52:47", - "backsout": [ - "504bc84513b0" - ], - "backedoutby": "", - "author_email": "sayrer@gmail.com", - "reviewers": [ - "brendan" - ], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 67948534.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/xpconnect/src/xpcjsruntime.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "682eee29d90d1650e28b60432faf87e89b577767", - "author": "Timothy Nikkel ", - "bug_id": 584193, - "desc": "Backed out changeset 86e8ec17e532 (bug 584193).", - "pushdate": "2010-08-08 22:07:15", - "backsout": [ - "86e8ec17e532" - ], - "backedoutby": "", - "author_email": "tnikkel@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 38947669.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/base/nsDocumentViewer.cpp", - "layout/base/nsIDocumentViewer.h", - "layout/base/nsIDocumentViewerPrint.h", - "layout/printing/nsPrintEngine.cpp", - "layout/printing/nsPrintEngine.h", - "layout/printing/nsPrintObject.cpp", - "layout/printing/nsPrintObject.h" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "layout", - "layout/base", - "layout/printing" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "abca98af611ed75fcdae4e05fd91900e26908474", - "author": "Phil Ringnalda ", - "bug_id": 579621, - "desc": "Backed out changeset ec28c1790e13 (bug 579621) for print preview test timeouts", - "pushdate": "2010-08-09 00:49:11", - "backsout": [ - "ec28c1790e13" - ], - "backedoutby": "", - "author_email": "philringnalda@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 67822561.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/generic/nsFrameFrame.cpp" - ], - "components": [], - "directories": [ - "layout/generic", - "layout" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "9165ca3607bd30328db254613bd305e3e4e0f67e", - "author": "Shawn Wilsher ", - "bug_id": 575870, - "desc": "Backed out changeset a0d6e4d37273 (bug 575870) for possibly being the cause of the following performance regression:\nTalos Regression: Txul increase 4.57% on Win7 Firefox\nOther possible culprits:\nbug 574454", - "pushdate": "2010-08-10 20:06:04", - "backsout": [ - "a0d6e4d37273" - ], - "backedoutby": "", - "author_email": "sdwilsh@shawnwilsher.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 68876333.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/base/content/browser.css", - "browser/base/content/browser.js", - "browser/base/content/browser.xul", - "browser/themes/winstripe/browser/browser-aero.css", - "browser/themes/winstripe/browser/browser.css" - ], - "components": [ - "Firefox::General" - ], - "directories": [ - "browser/base", - "browser/themes", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "89aad8922d715d0ef6aed75907fb8e242f4d70d3", - "author": "L. David Baron ", - "bug_id": 584582, - "desc": "Backed out changeset fef97fa21915 (bug 584582) for causing compilation failures on Windows.", - "pushdate": "2010-08-11 19:26:48", - "backsout": [ - "fef97fa21915" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 70763329.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "modules/plugin/test/mochitest/Makefile.in", - "toolkit/crashreporter/Makefile.in", - "toolkit/crashreporter/nsExceptionHandler.cpp" - ], - "components": [ - "Toolkit::Crash Reporting" - ], - "directories": [ - "modules/plugin", - "toolkit", - "toolkit/crashreporter", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "b186d13109a758d85982c790e25abcfb3de5358d", - "author": "Michael Wu ", - "bug_id": 583145, - "desc": "Backed out changeset ccfdad9f5c93 due to regressions (bug 583145)", - "pushdate": "2010-08-12 01:43:41", - "backsout": [ - "ccfdad9f5c93" - ], - "backedoutby": "", - "author_email": "mwu@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 19345388.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/themes/pinstripe/global/headsUpDisplay.css" - ], - "components": [], - "directories": [ - "toolkit/themes", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "90b5a456b7bad12f4b78cc2bfb3d57749cdbbd1a", - "author": "Dave Townsend ", - "bug_id": 582569, - "desc": "Backed out changeset 937a11c1fc07 from bug 582569 due to new browser-chrome test\nfailures.", - "pushdate": "2010-08-12 17:29:08", - "backsout": [ - "937a11c1fc07" - ], - "backedoutby": "", - "author_email": "dtownsend@oxymoronical.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 69144306.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/base/src/nsInProcessTabChildGlobal.cpp", - "content/base/src/nsInProcessTabChildGlobal.h", - "dom/ipc/TabChild.cpp" - ], - "components": [], - "directories": [ - "dom", - "content/base", - "content", - "dom/ipc" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "1bab6d09fbc9021a54784388e1d82994ee8bcca3", - "author": "Edward Lee ", - "bug_id": 581894, - "desc": "Backout d6a355524fcb from bug 581894 now that bug 579869 is fixed.", - "pushdate": "2010-08-12 19:47:36", - "backsout": [ - "d6a355524fcb" - ], - "backedoutby": "", - "author_email": "edilee@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 44631500.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/base/content/tabbrowser.xml" - ], - "components": [], - "directories": [ - "browser/base", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "64e4cce311e8a03a9d15c7adef774e90fa5111b7", - "author": "Edward Lee ", - "bug_id": 583306, - "desc": "Backout df9bbe8b6d78 now that bug 583306 is fixed.", - "pushdate": "2010-08-12 19:47:36", - "backsout": [ - "df9bbe8b6d78" - ], - "backedoutby": "", - "author_email": "edilee@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 44631500.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/components/sessionstore/src/nsSessionStore.js" - ], - "components": [], - "directories": [ - "browser/components", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "60a5b0d62bccef4bae84b063b392246c1007de15", - "author": "Josh Aas ", - "bug_id": 578868, - "desc": "Backed out changeset 452db8c688ba, bug 578868.", - "pushdate": "2010-08-13 08:24:39", - "backsout": [ - "452db8c688ba" - ], - "backedoutby": "", - "author_email": "joshmoz@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 67147440.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "dom/plugins/PluginModuleChild.cpp", - "modules/plugin/base/public/npfunctions.h", - "modules/plugin/base/public/nsIPlugin.idl", - "modules/plugin/base/src/PluginPRLibrary.cpp", - "modules/plugin/base/src/PluginPRLibrary.h", - "modules/plugin/base/src/nsNPAPIPlugin.cpp", - "modules/plugin/base/src/nsNPAPIPlugin.h", - "modules/plugin/base/src/nsPluginHost.cpp", - "modules/plugin/base/src/nsPluginsDir.h", - "modules/plugin/base/src/nsPluginsDirBeOS.cpp", - "modules/plugin/base/src/nsPluginsDirDarwin.cpp", - "modules/plugin/base/src/nsPluginsDirOS2.cpp", - "modules/plugin/base/src/nsPluginsDirUnix.cpp", - "modules/plugin/base/src/nsPluginsDirWin.cpp" - ], - "components": [], - "directories": [ - "dom", - "modules/plugin", - "dom/plugins", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "2c69cdb5a98c492d99f6fc0c3f05cb2796a84d1d", - "author": "Josh Aas ", - "bug_id": 584965, - "desc": "Backed out changeset 33f8c2bb77ca, bug 584965.", - "pushdate": "2010-08-13 19:48:23", - "backsout": [ - "33f8c2bb77ca" - ], - "backedoutby": "", - "author_email": "joshmoz@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 67188464.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "widget/src/cocoa/nsChildView.h", - "widget/src/cocoa/nsChildView.mm", - "widget/src/cocoa/nsCocoaWindow.mm", - "widget/src/cocoa/nsMenuBarX.h", - "widget/src/cocoa/nsMenuBarX.mm" - ], - "components": [], - "directories": [ - "widget", - "widget/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "9ded3c2c0a3fca47cfd74a2a985bcc2f9c358310", - "author": "Robert Sayre ", - "bug_id": 586533, - "desc": "Backed out changeset 1406935fced4. Brian Hackett \u2013 Put JSStackFrame.scopeChain/blockChain behind an interface, bug 586533. r=lw.", - "pushdate": "2010-08-13 20:13:33", - "backsout": [ - "1406935fced4" - ], - "backedoutby": "", - "author_email": "sayrer@gmail.com", - "reviewers": [ - "lw" - ], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 68518580.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsapi.cpp", - "js/src/jsbuiltins.cpp", - "js/src/jsdbgapi.cpp", - "js/src/jsfun.cpp", - "js/src/jsgc.cpp", - "js/src/jsinterp.cpp", - "js/src/jsinterp.h", - "js/src/jsiter.cpp", - "js/src/jsobj.cpp", - "js/src/jsobjinlines.h", - "js/src/jsrecursion.cpp", - "js/src/jstracer.cpp", - "js/src/jswrapper.cpp", - "js/src/jsxml.cpp" - ], - "components": [ - "Core::JavaScript Engine" - ], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "d796055d54653e1f30b08d833958bdcd79f544bd", - "author": "Jason Orendorff ", - "bug_id": 583850, - "desc": "Backed out changeset c5e31473b1a6 (assertions for bug 583850). See bug 584578 and bug 585754.", - "pushdate": "2010-08-13 20:13:33", - "backsout": [ - "c5e31473b1a6" - ], - "backedoutby": "", - "author_email": "jorendorff@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 69634942.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsinterp.cpp", - "js/src/jsobj.cpp" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "2fa5b630f3bc5e0d4ac7f56606b8e51331763cc2", - "author": "Marco Bonardo ", - "bug_id": 573492, - "desc": "Backed out changeset dfd35987dd82 (WAL journaling - bug 573492) due to Ts regressions", - "pushdate": "2010-08-14 07:58:46", - "backsout": [ - "dfd35987dd82" - ], - "backedoutby": "", - "author_email": "mbonardo@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 48020971.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "toolkit/components/places/src/Makefile.in", - "toolkit/components/places/src/nsNavHistory.cpp", - "toolkit/components/places/src/nsNavHistory.h", - "toolkit/components/places/src/nsPlacesDBFlush.js" - ], - "components": [], - "directories": [ - "toolkit/components", - "toolkit" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "391e102eb8636bdd1c7cfdecef0294f6f80194ed", - "author": "D\u00e3o Gottwald ", - "bug_id": 575870, - "desc": "Backed out changeset 05dde680ade2 as per bug 575870 comment 71", - "pushdate": "2010-08-15 12:32:07", - "backsout": [ - "05dde680ade2" - ], - "backedoutby": "", - "author_email": "dao@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 68681990.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "widget/src/windows/nsWindow.cpp", - "widget/src/windows/nsWindow.h" - ], - "components": [], - "directories": [ - "widget", - "widget/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "9f434423bdf92cf2c7732d8bca624d3c71c85f0d", - "author": "Gavin Sharp ", - "bug_id": 585877, - "desc": "Backed out changeset 43b490ef9dab (bug 585877), a=beltzner", - "pushdate": "2010-08-17 19:46:02", - "backsout": [ - "43b490ef9dab" - ], - "backedoutby": "", - "author_email": "gavin@gavinsharp.com", - "reviewers": [ - "beltzner" - ], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 25711842.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/html/document/src/nsHTMLDocument.cpp", - "dom/interfaces/html/nsIDOMNSHTMLDocument.idl", - "js/src/xpconnect/src/dom_quickstubs.qsconf" - ], - "components": [], - "directories": [ - "js/src", - "dom/interfaces", - "dom", - "content", - "content/html", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "eaa833618eaab81c9a1aad2516434196b47e9664", - "author": "Ted Mielczarek ", - "bug_id": 490705, - "desc": "Backed out changeset 1362f0ca86d2 (bug 490705 - Support Audio Data API: Get, Manipulate, Play & Save) due to test failures.", - "pushdate": "2010-08-18 17:10:12", - "backsout": [ - "1362f0ca86d2" - ], - "backedoutby": "", - "author_email": "ted.mielczarek@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 76119648.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/base/src/nsContentUtils.cpp", - "content/base/src/nsGkAtomList.h", - "content/base/src/nsNodeUtils.cpp", - "content/events/public/nsIEventListenerManager.h", - "content/events/public/nsIPrivateDOMEvent.h", - "content/events/src/Makefile.in", - "content/events/src/nsDOMEvent.cpp", - "content/events/src/nsDOMEvent.h", - "content/events/src/nsDOMNotifyAudioAvailableEvent.cpp", - "content/events/src/nsDOMNotifyAudioAvailableEvent.h", - "content/events/src/nsEventDispatcher.cpp", - "content/events/src/nsEventListenerManager.cpp", - "content/html/content/public/nsHTMLMediaElement.h", - "content/html/content/src/nsHTMLAudioElement.cpp", - "content/html/content/src/nsHTMLMediaElement.cpp", - "content/media/Makefile.in", - "content/media/nsAudioAvailableEventManager.cpp", - "content/media/nsAudioAvailableEventManager.h", - "content/media/nsAudioStream.cpp", - "content/media/nsAudioStream.h", - "content/media/nsBuiltinDecoder.cpp", - "content/media/nsBuiltinDecoder.h", - "content/media/nsBuiltinDecoderStateMachine.cpp", - "content/media/nsBuiltinDecoderStateMachine.h", - "content/media/nsMediaDecoder.cpp", - "content/media/nsMediaDecoder.h", - "content/media/test/Makefile.in", - "content/media/test/file_a4_tone.ogg", - "content/media/test/file_audio_event_adopt_iframe.html", - "content/media/test/test_a4_tone.html", - "content/media/test/test_audio_event_adopt.html", - "content/media/test/test_audiowrite.html", - "content/media/wave/nsWaveDecoder.cpp", - "dom/base/nsDOMClassInfo.cpp", - "dom/base/nsDOMClassInfoClasses.h", - "dom/base/nsGlobalWindow.cpp", - "dom/base/nsPIDOMWindow.h", - "dom/interfaces/events/Makefile.in", - "dom/interfaces/events/nsIDOMNotifyAudioAvailableEvent.idl", - "dom/interfaces/html/nsIDOMHTMLAudioElement.idl", - "dom/interfaces/html/nsIDOMHTMLMediaElement.idl", - "js/src/xpconnect/src/dom_quickstubs.qsconf", - "widget/public/nsGUIEvent.h", - "xpcom/glue/nsCycleCollectionParticipant.h" - ], - "components": [ - "Core::DOM: Core & HTML" - ], - "directories": [ - "xpcom/glue", - "js/src", - "widget", - "dom/interfaces", - "dom/base", - "dom", - "content/base", - "content", - "content/media", - "widget/public", - "xpcom", - "content/html", - "js", - "content/events" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "c78c4fda1325dd5169f15e80f42de19908b7d99e", - "author": "Mark Banner ", - "bug_id": 471643, - "desc": "Backed out changeset f600448ae7db / bug 471643 due to reftest failures", - "pushdate": "2010-08-19 08:29:47", - "backsout": [ - "f600448ae7db" - ], - "backedoutby": "", - "author_email": "bugzilla@standard8.plus.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 69721891.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/base/nsCSSRendering.cpp", - "layout/base/nsCSSRendering.h", - "layout/base/nsDisplayList.cpp", - "layout/reftests/border-radius/percent-1-ref.html", - "layout/reftests/border-radius/percent-1.html", - "layout/reftests/border-radius/percent-2-ref.html", - "layout/reftests/border-radius/percent-2.html", - "layout/reftests/border-radius/percent-3-ref.html", - "layout/reftests/border-radius/percent-3.html", - "layout/reftests/border-radius/reftest.list" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "layout/reftests", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "fae9fc14a22a9fd70f56544181e689b1af72f0f6", - "author": "Jonas Sicking ", - "bug_id": 588977, - "desc": "Backout 2d6ead22831c (bug 588977) due to orange. a=backout", - "pushdate": "2010-08-20 17:26:59", - "backsout": [ - "2d6ead22831c" - ], - "backedoutby": "", - "author_email": "jonas@sicking.cc", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 64435434.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "layout/base/nsPresContext.h" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "cbb5793c529eda0f1a01a82edad05684c6978fd5", - "author": "Justin Lebar ", - "bug_id": 576026, - "desc": "Backed out changeset 2d57f5901aa2 (bug 576026). a=bustage", - "pushdate": "2010-08-24 22:52:15", - "backsout": [ - "2d57f5901aa2" - ], - "backedoutby": "", - "author_email": "justin.lebar@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 19864604.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "testing/mochitest/Makefile.in", - "testing/mochitest/runtests.py", - "testing/mochitest/runtests.py.in" - ], - "components": [ - "Testing::Mochitest" - ], - "directories": [ - "testing/mochitest", - "testing" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "c3c185d6ee88ebb2b52bc8cb1fbefc737779f749", - "author": "Robert Sayre ", - "bug_id": 587257, - "desc": "Backed out changeset b404ad209cb9. (Bug 587257 - Make Array.prototype.join faster. r=lw)", - "pushdate": "2010-08-25 16:25:25", - "backsout": [ - "b404ad209cb9" - ], - "backedoutby": "", - "author_email": "sayrer@gmail.com", - "reviewers": [ - "lw" - ], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 69541692.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsarray.cpp", - "js/src/jsstr.cpp", - "js/src/jsstrinlines.h" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "c8e75a4433d9b62eddcfb841c53af5815ae95948", - "author": "Boris Zbarsky ", - "bug_id": 590422, - "desc": "Backed out changeset d578993db396 (bug 590422) due to possible performance regressions (especially WinXP Tscroll).", - "pushdate": "2010-08-27 18:09:29", - "backsout": [ - "d578993db396" - ], - "backedoutby": "", - "author_email": "bzbarsky@mit.edu", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 67377877.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "dom/base/nsGlobalWindow.cpp", - "xpcom/threads/TimerThread.cpp", - "xpcom/threads/TimerThread.h", - "xpcom/threads/nsTimerImpl.cpp" - ], - "components": [ - "Core::XPCOM" - ], - "directories": [ - "dom", - "xpcom/threads", - "xpcom", - "dom/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "0487454f42193aa15efea739c359ea67b1682b11", - "author": "Blair McBride ", - "bug_id": 581076, - "desc": "Backed out changeset 6fe388a0fb5e (Bug 581076) due to test failures. a=bustage", - "pushdate": "2010-08-30 05:36:19", - "backsout": [ - "6fe388a0fb5e" - ], - "backedoutby": "", - "author_email": "bmcbride@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 32276589.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/app/profile/firefox.js", - "toolkit/locales/en-US/chrome/mozapps/extensions/extensions.properties", - "toolkit/mozapps/extensions/content/extensions.css", - "toolkit/mozapps/extensions/content/extensions.js", - "toolkit/mozapps/extensions/content/extensions.xul", - "toolkit/mozapps/extensions/test/browser/Makefile.in", - "toolkit/mozapps/extensions/test/browser/browser_bug581076.js", - "toolkit/themes/gnomestripe/mozapps/extensions/extensions.css", - "toolkit/themes/pinstripe/mozapps/extensions/extensions.css", - "toolkit/themes/winstripe/mozapps/extensions/extensions.css" - ], - "components": [ - "Firefox::General" - ], - "directories": [ - "toolkit", - "toolkit/locales", - "browser/app", - "toolkit/mozapps", - "browser", - "toolkit/themes" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "9e09716ddaf73e57dbd0d1a50492b0404275f67e", - "author": "Josh Aas ", - "bug_id": 592951, - "desc": "Backed out changeset 52388a9a6337, bug 592951. a=me", - "pushdate": "2010-09-08 22:20:40", - "backsout": [ - "52388a9a6337" - ], - "backedoutby": "", - "author_email": "joshmoz@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 69444001.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "ipc/app/MozillaRuntimeMain.cpp", - "ipc/chromium/src/base/process_util.h", - "ipc/chromium/src/base/process_util_mac.mm", - "ipc/glue/GeckoChildProcessHost.cpp", - "toolkit/xre/nsEmbedFunctions.cpp" - ], - "components": [ - "Core::IPC", - "Core::DOM: Content Processes", - "Toolkit::Startup and Profile System" - ], - "directories": [ - "ipc/glue", - "toolkit", - "ipc", - "ipc/chromium", - "toolkit/xre", - "ipc/app" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "b5896c8b6d41913e2968a08c15579152a58af8ce", - "author": "Ehsan Akhgari ", - "bug_id": 588999, - "desc": "Backed out changeset 4bc623a55708 (bug 588999) because of orange on Windows 7", - "pushdate": "2010-09-09 23:26:17", - "backsout": [ - "4bc623a55708" - ], - "backedoutby": "", - "author_email": "ehsan@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 26791454.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/base/content/tabview/tabview.css", - "browser/base/content/tabview/tabview.html", - "browser/base/content/tabview/ui.js", - "browser/base/content/test/tabview/Makefile.in", - "browser/base/content/test/tabview/browser_tabview_exit_button.js", - "browser/themes/gnomestripe/browser/tabview/tabview.css", - "browser/themes/pinstripe/browser/tabview/tabview.css", - "browser/themes/winstripe/browser/tabview/tabview.css" - ], - "components": [], - "directories": [ - "browser/base", - "browser/themes", - "browser" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "d8674093f3558f6cfc862352dec321af9f8e4d7a", - "author": "Justin Lebar ", - "bug_id": 578880, - "desc": "Backed out changeset 100bcacdbf45 due to orange (bug 578880).", - "pushdate": "2010-09-10 20:50:33", - "backsout": [ - "100bcacdbf45" - ], - "backedoutby": "", - "author_email": "justin.lebar@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 21326102.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "config/autoconf.mk.in", - "configure.in", - "js/src/Makefile.in", - "js/src/config/autoconf.mk.in", - "js/src/configure.in", - "xpcom/io/Makefile.in" - ], - "components": [ - "Firefox Build System::General" - ], - "directories": [ - "js/src", - "xpcom/io", - "config", - "xpcom", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "84baf90b040c7d5912724461c6e9e1d104ce5a18", - "author": "Gavin Sharp ", - "bug_id": 589613, - "desc": "Backed out changeset 2a216165e361 (bug 589613), a=shutuphook", - "pushdate": "2010-09-11 17:49:52", - "backsout": [ - "2a216165e361" - ], - "backedoutby": "", - "author_email": "gavin@gavinsharp.com", - "reviewers": [ - "shutuphook" - ], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 27864872.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "docshell/base/nsDefaultURIFixup.cpp", - "netwerk/base/public/Makefile.in" - ], - "components": [], - "directories": [ - "netwerk/base", - "docshell/base", - "docshell", - "netwerk" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "afe3db59ae35d04547b3c07fdc46e8e77d8cd9d0", - "author": "Robert Sayre ", - "bug_id": 588016, - "desc": "Backed out changeset e2e1ea2a39ce. (Igor Bukanov \u2013 bug 588016 - Avoid reporting OOM when background has not finished. r=anygregor)", - "pushdate": "2010-09-11 19:16:24", - "backsout": [ - "e2e1ea2a39ce" - ], - "backedoutby": "", - "author_email": "sayrer@gmail.com", - "reviewers": [ - "anygregor" - ], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 71020751.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/Makefile.in", - "js/src/jsapi.cpp", - "js/src/jscntxt.cpp", - "js/src/jscntxt.h", - "js/src/jsgc.cpp", - "js/src/jsgc.h", - "js/src/jsobj.cpp", - "js/src/jsscope.cpp", - "js/src/jstask.cpp", - "js/src/jstask.h" - ], - "components": [ - "Firefox Build System::General", - "Core::JavaScript Engine" - ], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "59244235c85ba6eb0d296198ec5ea5ac7540a1c7", - "author": "L. David Baron ", - "bug_id": 508115, - "desc": "Backed out changeset a6ee83aa638e to fix orange (test_bug508115.xul timing out)", - "pushdate": "2010-09-14 03:45:55", - "backsout": [ - "a6ee83aa638e" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 73644476.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/xbl/test/file_bug591198_inner.html", - "content/xbl/test/file_bug591198_xbl.xml", - "content/xbl/test/test_bug591198.html" - ], - "components": [], - "directories": [ - "content", - "content/xbl" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "5ef1dd2885fbd311be1be1993e786f218660cbb5", - "author": "L. David Baron ", - "bug_id": 508115, - "desc": "Backed out changeset 2e55203d7b80 to fix orange (test_bug508115.xul timing out).", - "pushdate": "2010-09-14 03:45:55", - "backsout": [ - "2e55203d7b80" - ], - "backedoutby": "", - "author_email": "dbaron@dbaron.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 73644476.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/base/public/nsContentErrors.h", - "content/xbl/src/nsXBLService.cpp", - "content/xbl/test/Makefile.in", - "layout/base/nsCSSFrameConstructor.cpp" - ], - "components": [ - "Core::Layout" - ], - "directories": [ - "content/base", - "content", - "content/xbl", - "layout", - "layout/base" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "df5e678290228bd3f9eb047fbe4597c1bb34092a", - "author": "Peter Van der Beken ", - "bug_id": 590612, - "desc": "Backout c130135dcf02 (Fix for bug 590612 (Speed up js-wrapping in classinfo when we already have a wrapper)).", - "pushdate": "2010-09-15 05:28:28", - "backsout": [ - "c130135dcf02" - ], - "backedoutby": "", - "author_email": "peterv@propagandism.org", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 70464335.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/base/public/nsContentUtils.h", - "content/base/src/nsContentUtils.cpp", - "js/src/jstl.h", - "js/src/jsvector.h", - "js/src/xpconnect/src/qsgen.py", - "js/src/xpconnect/src/xpcprivate.h", - "js/src/xpconnect/src/xpcpublic.h", - "js/src/xpconnect/src/xpcwrappednative.cpp" - ], - "components": [], - "directories": [ - "js", - "content/base", - "content", - "js/src" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "77e11b95175faa0b37166d68311b62b8c398e13d", - "author": "Oleg Romashin ", - "bug_id": 582840, - "desc": "Backout changeset 7eb93fe05d3a. bug 582840 due to oranges", - "pushdate": "2010-09-15 22:02:59", - "backsout": [ - "7eb93fe05d3a" - ], - "backedoutby": "", - "author_email": "romaxa@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 65638790.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "content/base/public/nsIFrameLoader.idl", - "content/base/src/nsFrameLoader.cpp", - "content/base/test/chrome/Makefile.in", - "content/base/test/chrome/bug514705.html", - "content/base/test/chrome/bug514705_helper.xul", - "content/base/test/chrome/test_bug514705.xul", - "dom/ipc/PBrowser.ipdl", - "dom/ipc/TabChild.cpp", - "dom/ipc/TabChild.h", - "dom/ipc/TabParent.cpp", - "dom/ipc/TabParent.h", - "toolkit/content/widgets/browser.xml" - ], - "components": [ - "Core::DOM: Content Processes" - ], - "directories": [ - "toolkit/content", - "toolkit", - "dom", - "content/base", - "content", - "dom/ipc" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "8422935a2d917c8769c68fbff2a7443e286ae28e", - "author": "Jason Orendorff ", - "bug_id": 580033, - "desc": "Backed out changeset 84b4d4856e1e (bug 580033) due to orange.", - "pushdate": "2010-09-16 16:26:06", - "backsout": [ - "84b4d4856e1e" - ], - "backedoutby": "", - "author_email": "jorendorff@mozilla.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 72558895.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jscntxt.h" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "58e7b99bb1d09011736b55ed85f9bb75af839b5b", - "author": "Josh Aas ", - "bug_id": 596762, - "desc": "Backed out changeset 080a38bd09c5, bug 596762, a=bustage", - "pushdate": "2010-09-16 22:41:26", - "backsout": [ - "080a38bd09c5" - ], - "backedoutby": "", - "author_email": "joshmoz@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 70136447.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/app/profile/firefox.js", - "modules/plugin/base/src/nsNPAPIPlugin.cpp" - ], - "components": [ - "Firefox::General" - ], - "directories": [ - "modules", - "modules/plugin", - "browser", - "browser/app" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "84a05bdabec5be7bacde12cccc92db17f4d54c5a", - "author": "Josh Aas ", - "bug_id": 596762, - "desc": "Backed out changeset c06ef0414fee, bug 596762. a=me", - "pushdate": "2010-09-21 02:13:50", - "backsout": [ - "c06ef0414fee" - ], - "backedoutby": "", - "author_email": "joshmoz@gmail.com", - "reviewers": [], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 70494791.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "browser/app/profile/firefox.js", - "layout/tools/reftest/reftest.js", - "modules/plugin/base/src/nsNPAPIPlugin.cpp", - "modules/plugin/test/mochitest/test_GCrace.html", - "modules/plugin/test/mochitest/test_crash_nested_loop.html", - "modules/plugin/test/mochitest/test_crash_notify.xul", - "modules/plugin/test/mochitest/test_crash_notify_no_report.xul", - "modules/plugin/test/mochitest/test_crash_submit.xul", - "modules/plugin/test/mochitest/test_crashing.html", - "modules/plugin/test/mochitest/test_crashing2.html", - "modules/plugin/test/mochitest/test_hanging.html", - "modules/plugin/test/reftest/reftest.list", - "testing/mochitest/tests/SimpleTest/SimpleTest.js", - "testing/testsuite-targets.mk" - ], - "components": [ - "Testing::Mochitest", - "Firefox::General", - "Testing::General" - ], - "directories": [ - "layout/tools", - "browser/app", - "modules/plugin", - "testing/mochitest", - "browser", - "testing", - "layout", - "modules" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - }, - { - "node": "f552a61aa4234eca5819bb3bfd6490501a13c330", - "author": "Robert Sayre ", - "bug_id": 597945, - "desc": "Back out changeset d7d3c0af2877. Brendan Eich \u2013 Fix slot leak that leads to allocSlot assert botch (597945, r=jorendorff).", - "pushdate": "2010-09-21 05:12:47", - "backsout": [ - "d7d3c0af2877" - ], - "backedoutby": "", - "author_email": "sayrer@gmail.com", - "reviewers": [ - "jorendorff" - ], - "ignored": false, - "source_code_added": 0, - "other_added": 0, - "test_added": 0, - "source_code_deleted": 0, - "other_deleted": 0, - "test_deleted": 0, - "types": [], - "functions": {}, - "seniority_author": 71834134.0, - "total_source_code_file_size": 0, - "average_source_code_file_size": 0.0, - "maximum_source_code_file_size": 0, - "minimum_source_code_file_size": 0, - "source_code_files_modified_num": 0, - "total_other_file_size": 0, - "average_other_file_size": 0.0, - "maximum_other_file_size": 0, - "minimum_other_file_size": 0, - "other_files_modified_num": 0, - "total_test_file_size": 0, - "average_test_file_size": 0.0, - "maximum_test_file_size": 0, - "minimum_test_file_size": 0, - "test_files_modified_num": 0, - "metrics": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0, - "cyclomatic_avg": 0.0, - "cyclomatic_max": 0, - "cyclomatic_min": 9223372036854775807, - "halstead_N1_avg": 0.0, - "halstead_N1_max": 0, - "halstead_N1_min": 9223372036854775807, - "halstead_n1_avg": 0.0, - "halstead_n1_max": 0, - "halstead_n1_min": 9223372036854775807, - "halstead_N2_avg": 0.0, - "halstead_N2_max": 0, - "halstead_N2_min": 9223372036854775807, - "halstead_n2_avg": 0.0, - "halstead_n2_max": 0, - "halstead_n2_min": 9223372036854775807, - "halstead_length_avg": 0.0, - "halstead_length_max": 0, - "halstead_length_min": 9223372036854775807, - "halstead_estimated_program_length_avg": 0.0, - "halstead_estimated_program_length_max": 0, - "halstead_estimated_program_length_min": 9223372036854775807, - "halstead_purity_ratio_avg": 0.0, - "halstead_purity_ratio_max": 0, - "halstead_purity_ratio_min": 9223372036854775807, - "halstead_vocabulary_avg": 0.0, - "halstead_vocabulary_max": 0, - "halstead_vocabulary_min": 9223372036854775807, - "halstead_volume_avg": 0.0, - "halstead_volume_max": 0, - "halstead_volume_min": 9223372036854775807, - "halstead_difficulty_avg": 0.0, - "halstead_difficulty_max": 0, - "halstead_difficulty_min": 9223372036854775807, - "halstead_level_avg": 0.0, - "halstead_level_max": 0, - "halstead_level_min": 9223372036854775807, - "halstead_effort_avg": 0.0, - "halstead_effort_max": 0, - "halstead_effort_min": 9223372036854775807, - "halstead_time_avg": 0.0, - "halstead_time_max": 0, - "halstead_time_min": 9223372036854775807, - "halstead_bugs_avg": 0.0, - "halstead_bugs_max": 0, - "halstead_bugs_min": 9223372036854775807, - "functions_avg": 0.0, - "functions_max": 0, - "functions_min": 9223372036854775807, - "closures_avg": 0.0, - "closures_max": 0, - "closures_min": 9223372036854775807, - "sloc_avg": 0.0, - "sloc_max": 0, - "sloc_min": 9223372036854775807, - "ploc_avg": 0.0, - "ploc_max": 0, - "ploc_min": 9223372036854775807, - "lloc_avg": 0.0, - "lloc_max": 0, - "lloc_min": 9223372036854775807, - "cloc_avg": 0.0, - "cloc_max": 0, - "cloc_min": 9223372036854775807, - "blank_avg": 0.0, - "blank_max": 0, - "blank_min": 9223372036854775807, - "nargs_avg": 0.0, - "nargs_max": 0, - "nargs_min": 9223372036854775807, - "nexits_avg": 0.0, - "nexits_max": 0, - "nexits_min": 9223372036854775807, - "cognitive_avg": 0.0, - "cognitive_max": 0, - "cognitive_min": 9223372036854775807, - "mi_original_avg": 0.0, - "mi_original_max": 0, - "mi_original_min": 9223372036854775807, - "mi_sei_avg": 0.0, - "mi_sei_max": 0, - "mi_sei_min": 9223372036854775807, - "mi_visual_studio_avg": 0.0, - "mi_visual_studio_max": 0, - "mi_visual_studio_min": 9223372036854775807 - }, - "metrics_diff": { - "cyclomatic_total": 0, - "halstead_N1_total": 0, - "halstead_n1_total": 0, - "halstead_N2_total": 0, - "halstead_n2_total": 0, - "halstead_length_total": 0, - "halstead_estimated_program_length_total": 0, - "halstead_purity_ratio_total": 0, - "halstead_vocabulary_total": 0, - "halstead_volume_total": 0, - "halstead_difficulty_total": 0, - "halstead_level_total": 0, - "halstead_effort_total": 0, - "halstead_time_total": 0, - "halstead_bugs_total": 0, - "functions_total": 0, - "closures_total": 0, - "sloc_total": 0, - "ploc_total": 0, - "lloc_total": 0, - "cloc_total": 0, - "blank_total": 0, - "nargs_total": 0, - "nexits_total": 0, - "cognitive_total": 0, - "mi_original_total": 0, - "mi_sei_total": 0, - "mi_visual_studio_total": 0 - }, - "files": [ - "js/src/jsscope.cpp", - "js/src/tests/js1_8_5/regress/jstests.list", - "js/src/tests/js1_8_5/regress/regress-597945-1.js", - "js/src/tests/js1_8_5/regress/regress-597945-2.js" - ], - "components": [], - "directories": [ - "js/src", - "js" - ], - "cov_added": null, - "cov_covered": null, - "cov_unknown": null - } -] \ No newline at end of file From 2db5029704f2f979b697dffbff67e6e861af9b8e Mon Sep 17 00:00:00 2001 From: Benjamin Mah Date: Fri, 3 May 2024 14:43:47 -0400 Subject: [PATCH 06/38] Skip 'fixing commits' that are actually backout commits --- scripts/backout_data_collection.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/scripts/backout_data_collection.py b/scripts/backout_data_collection.py index c03cca815e..3900452ad1 100644 --- a/scripts/backout_data_collection.py +++ b/scripts/backout_data_collection.py @@ -86,8 +86,11 @@ def filter_commits( commit["bug_id"], bug_to_commit_dict, commit["node"] ) - # if fixing commit could not be found, do not add it to dataset - if fixing_commit["node"] == commit["backedoutby"]: + # if fixing commit could not be found or is another backing out commit, do not add it to dataset + if ( + fixing_commit["node"] == commit["backedoutby"] + or len(fixing_commit["backsout"]) > 0 + ): counter += 1 continue From 3516c097e39c0d78aa3588d1b4668f78282a9c8b Mon Sep 17 00:00:00 2001 From: Benjamin Mah Date: Fri, 3 May 2024 14:44:24 -0400 Subject: [PATCH 07/38] Sample dataset (num_count = 500) --- dataset/backout_dataset.json | 2024 +++------------------------------- 1 file changed, 130 insertions(+), 1894 deletions(-) diff --git a/dataset/backout_dataset.json b/dataset/backout_dataset.json index 4d5ba7194c..4674bdb13a 100644 --- a/dataset/backout_dataset.json +++ b/dataset/backout_dataset.json @@ -305,24 +305,6 @@ "desc": "Bug 371839. Remove useless SetSelected implementations. r=bzbarsky" } }, - { - "bug_id": 471214, - "inducing_commit": { - "node": "e09130fcb013c42255138b1d8e2ed1418fa6b496", - "pushdate": "2009-07-29 21:06:24", - "desc": "Bug 471214 - Join function objects transparently, clone via read barrier to satisfy de-facto standard (r=igor)." - }, - "backout_commit": { - "node": "075b80a1cf6d6f2d641dd73e9881b8cf2dee6456", - "pushdate": "2009-07-29 21:06:24", - "desc": "Backed out changeset e09130fcb013" - }, - "fixing_commit": { - "node": "0ae65841fcf88595e023f93b86451f5fd341824e", - "pushdate": "2009-09-16 23:16:27", - "desc": "Back out changeset aff171a8c4f0 (bug 471214)." - } - }, { "bug_id": 505591, "inducing_commit": { @@ -1151,78 +1133,6 @@ "desc": "Bug 632781 - Scroll non-accelerated canvases correctly with the content; r=matt,joe,roc a=blocking-betaN" } }, - { - "bug_id": 620931, - "inducing_commit": { - "node": "f406ffe65c08c3b28fdf55c59c6d7c3b02f29ece", - "pushdate": "2011-03-24 14:30:27", - "desc": "Bug 620931 part 1 - Use chrome manifest to register resource://gre-resources/. r=bsmedberg" - }, - "backout_commit": { - "node": "5deb267b1d334737c87cbf47301fba7b449ff11d", - "pushdate": "2011-03-25 04:11:33", - "desc": "Backout changeset f406ffe65c08 (Bug 620931 part 1) for causing bug 644790." - }, - "fixing_commit": { - "node": "1492b6e75639593efe4e45e153a34927605509a0", - "pushdate": "2011-03-25 04:11:33", - "desc": "Backout changeset b97a060746f9 (Bug 620931 part 5) for causing bug 644790." - } - }, - { - "bug_id": 620931, - "inducing_commit": { - "node": "5c3ed4fde1e40aa38985bd187d5905f51c3e8332", - "pushdate": "2011-03-24 14:30:27", - "desc": "Bug 620931 part 2 - When building --with-libxul-sdk, use the right preferences directory. r=bsmedberg" - }, - "backout_commit": { - "node": "16e48d6b3b9c121b8754d3ce427911f3e1a47aa5", - "pushdate": "2011-03-25 04:11:33", - "desc": "Backout changeset 5c3ed4fde1e4 (Bug 620931 part 2) for causing bug 644790." - }, - "fixing_commit": { - "node": "1492b6e75639593efe4e45e153a34927605509a0", - "pushdate": "2011-03-25 04:11:33", - "desc": "Backout changeset b97a060746f9 (Bug 620931 part 5) for causing bug 644790." - } - }, - { - "bug_id": 620931, - "inducing_commit": { - "node": "b9e6454362ef8a051ec8feb557fb2e2e4071c95e", - "pushdate": "2011-03-24 14:30:27", - "desc": "Bug 620931 part 3 - Allow GRE and XUL application to use omni.jar independently. r=bsmedberg\n\nWe now store two independent locations for an omni.jar, allowing GRE/XRE and\nXUL application to each have their own omni.jar. And since xulrunner setups\nare very independent from the XUL applications, we implement support for both\nomni.jar and non omni.jar cases in the same runtime, with the side effect of\nallowing to switch from one to the other manually without rebuilding the\nbinaries.\n\nWe let the mozilla::Omnijar API handle both cases, so that callers don't need\ntoo much work to support them.\n\nWe also make the preferences service load the same set of preferences in all\nthe various cases (unified vs. separate, omni.jar vs. no omni.jar).\n\nThe child process launcher for IPC is modified to pass the base directories\nneeded for the mozilla::Omnijar API initialization in the child process.\n\nFinally, the startupcache file name canonicalization is modified to separate\nAPP and GRE resources." - }, - "backout_commit": { - "node": "08d1aeeea82459579e29cf7e710ebfafa681daaf", - "pushdate": "2011-03-25 04:11:33", - "desc": "Backout changeset b9e6454362ef (Bug 620931 part 3) for causing bug 644790." - }, - "fixing_commit": { - "node": "1492b6e75639593efe4e45e153a34927605509a0", - "pushdate": "2011-03-25 04:11:33", - "desc": "Backout changeset b97a060746f9 (Bug 620931 part 5) for causing bug 644790." - } - }, - { - "bug_id": 620931, - "inducing_commit": { - "node": "9df6e8117fe03393d39e489e3ee2462f08735ab7", - "pushdate": "2011-03-24 14:30:27", - "desc": "Bug 620931 part 4 - Fix resource://app/ to always point to the same as resource:///. r=bsmedberg" - }, - "backout_commit": { - "node": "941d126f6dd2c70c4ecb0f4ddda5016a955df215", - "pushdate": "2011-03-25 04:11:33", - "desc": "Backout changeset 9df6e8117fe0 (Bug 620931 part 4) for causing bug 644790." - }, - "fixing_commit": { - "node": "1492b6e75639593efe4e45e153a34927605509a0", - "pushdate": "2011-03-25 04:11:33", - "desc": "Backout changeset b97a060746f9 (Bug 620931 part 5) for causing bug 644790." - } - }, { "bug_id": 610305, "inducing_commit": { @@ -1295,24 +1205,6 @@ "desc": "Bug 672756 - Allow to populate startupcache on xulrunner applications built with the SDK. r=ted" } }, - { - "bug_id": 90268, - "inducing_commit": { - "node": "ab1cbc8a9d51a6fe320b62819c2a5bbce95c5cee", - "pushdate": "2011-08-29 07:34:19", - "desc": "Bug 90268: Required widget changes. Allow setting parent to NULL and add SetEventCallback to nsIWidget. r=roc r=karl" - }, - "backout_commit": { - "node": "a6e7760f2f3682ddd8310bc75af718dcc2b20486", - "pushdate": "2011-08-30 06:14:26", - "desc": "Backed out changeset ab1cbc8a9d51, bug 90268. r=josh" - }, - "fixing_commit": { - "node": "d5a0f6ad8bbd11e72a0ef0a524ecff7b4cdc7244", - "pushdate": "2011-08-30 06:14:26", - "desc": "Backed out changeset 33031c875984. Bug 90268. r=josh" - } - }, { "bug_id": 685258, "inducing_commit": { @@ -1331,24 +1223,6 @@ "desc": "Bug 685258 - Pulse audio backend does not check provided playback and crashes r=derf" } }, - { - "bug_id": 429592, - "inducing_commit": { - "node": "52b481205766e583307c5de01d96079133487735", - "pushdate": "2011-10-25 10:38:18", - "desc": "Bug 429592 part A - allow AnnotateCrashReport to be called from off the main thread in the chrome process, r?ted" - }, - "backout_commit": { - "node": "7c5f9e6c34c2f5a1cd6d1296ad358e2c835f6a15", - "pushdate": "2011-10-25 10:38:18", - "desc": "Back out 52b481205766 (Bug 429592) for Linux64 opt orange" - }, - "fixing_commit": { - "node": "35cfc34bdc44efa5d76bff56a293e6d5e7b8504c", - "pushdate": "2011-10-25 10:38:18", - "desc": "Back out 564e841f1f57 (Bug 429592) for Linux64 opt orange" - } - }, { "bug_id": 700199, "inducing_commit": { @@ -1367,204 +1241,6 @@ "desc": "Bug 700199 EventUtils.js should use synthesized events for sendKey(), sendChar() and sendString() rather than untrusted events r=smaug+ehsan+dolske+enndeakin" } }, - { - "bug_id": 497543, - "inducing_commit": { - "node": "9883a9f66cf04ebe9b2c1b885954d02f97612278", - "pushdate": "2012-01-19 23:24:40", - "desc": "Bug 497543 - Part 1 - JavaScript Module; r=dietrich" - }, - "backout_commit": { - "node": "3f877d406d8a54e8849dad5e7f763b0da7490602", - "pushdate": "2012-01-20 13:34:45", - "desc": "Backed out changeset 9883a9f66cf0 (bug 497543)" - }, - "fixing_commit": { - "node": "f3cf8f1827a2da608e3ed76a1f64a1a520e3ab05", - "pushdate": "2012-01-20 13:34:45", - "desc": "Backed out changeset f38769f877d6 (bug 497543)" - } - }, - { - "bug_id": 497543, - "inducing_commit": { - "node": "cc55d047eff997e7ad704036ec24e0f66d5ab37d", - "pushdate": "2012-01-19 23:24:40", - "desc": "Bug 497543 - Part 2 - moz-page-thumb:// Protocol and Channel; r=mak" - }, - "backout_commit": { - "node": "97973b8c04be141e4d6a4cb253adbb7dc45af917", - "pushdate": "2012-01-20 13:34:45", - "desc": "Backed out changeset cc55d047eff9 (bug 497543)" - }, - "fixing_commit": { - "node": "f3cf8f1827a2da608e3ed76a1f64a1a520e3ab05", - "pushdate": "2012-01-20 13:34:45", - "desc": "Backed out changeset f38769f877d6 (bug 497543)" - } - }, - { - "bug_id": 497543, - "inducing_commit": { - "node": "13e27937167b8693fa4fe1b0f6d61746b5c12d4e", - "pushdate": "2012-01-19 23:24:40", - "desc": "Bug 497543 - Part 3 - Browser integration; r=dao" - }, - "backout_commit": { - "node": "43588ad492ac9f117d63f90210c7ab421783c0ce", - "pushdate": "2012-01-20 13:34:45", - "desc": "Backed out changeset 13e27937167b (bug 497543)" - }, - "fixing_commit": { - "node": "f3cf8f1827a2da608e3ed76a1f64a1a520e3ab05", - "pushdate": "2012-01-20 13:34:45", - "desc": "Backed out changeset f38769f877d6 (bug 497543)" - } - }, - { - "bug_id": 455553, - "inducing_commit": { - "node": "27a45008fc1237187b77167f30d71a1e2ab1f75d", - "pushdate": "2012-01-20 13:34:45", - "desc": "Bug 455553 - Part 1 - XUL/HTML Page and Scripts; r=blair,dietrich" - }, - "backout_commit": { - "node": "0cbcaaf2d512d77e1f3bc497482325ea4b6a2dd9", - "pushdate": "2012-01-20 13:34:45", - "desc": "Backed out changeset 27a45008fc12 (bug 455553)" - }, - "fixing_commit": { - "node": "84c998ef1689174fa1b1d26b4b95066963b90ac8", - "pushdate": "2012-01-20 13:34:45", - "desc": "Backed out changeset c389d719d4ec (bug 455553)" - } - }, - { - "bug_id": 455553, - "inducing_commit": { - "node": "ce8a25a34c2a43eae72f62145ea6d56d0cfce658", - "pushdate": "2012-01-20 13:34:45", - "desc": "Bug 455553 - Part 2 - Assets / CSS / Images; r=dao" - }, - "backout_commit": { - "node": "816b9e460e28ce232ba2cdb6ea814bf474143c02", - "pushdate": "2012-01-20 13:34:45", - "desc": "Backed out changeset ce8a25a34c2a (bug 455553)" - }, - "fixing_commit": { - "node": "84c998ef1689174fa1b1d26b4b95066963b90ac8", - "pushdate": "2012-01-20 13:34:45", - "desc": "Backed out changeset c389d719d4ec (bug 455553)" - } - }, - { - "bug_id": 455553, - "inducing_commit": { - "node": "6fd9a7eb3b011e07b7b6d093095fc5dd85a90c52", - "pushdate": "2012-01-20 13:34:45", - "desc": "Bug 455553 - Part 3 - about:newtab integration; r=gavin" - }, - "backout_commit": { - "node": "6fd01ecaaa3721d263dfc79cd7efc626b7f0c076", - "pushdate": "2012-01-20 13:34:45", - "desc": "Backed out changeset 6fd9a7eb3b01 (bug 455553)" - }, - "fixing_commit": { - "node": "84c998ef1689174fa1b1d26b4b95066963b90ac8", - "pushdate": "2012-01-20 13:34:45", - "desc": "Backed out changeset c389d719d4ec (bug 455553)" - } - }, - { - "bug_id": 455553, - "inducing_commit": { - "node": "34e078df2ed6616b203661efcaff990990e2e5a9", - "pushdate": "2012-01-20 13:34:45", - "desc": "Bug 455553 - Part 4 - Shared Module; r=blair,mak,dietrich" - }, - "backout_commit": { - "node": "e3a59e6affd3cea57240954850a2d3183c2d850d", - "pushdate": "2012-01-20 13:34:45", - "desc": "Backed out changeset 34e078df2ed6 (bug 455553)" - }, - "fixing_commit": { - "node": "84c998ef1689174fa1b1d26b4b95066963b90ac8", - "pushdate": "2012-01-20 13:34:45", - "desc": "Backed out changeset c389d719d4ec (bug 455553)" - } - }, - { - "bug_id": 455553, - "inducing_commit": { - "node": "34157f4059bac86d59c587d861e3e2173fd062ad", - "pushdate": "2012-01-26 07:46:03", - "desc": "Bug 455553 - Part 1 - XUL/HTML Page and Scripts; r=blair,dietrich" - }, - "backout_commit": { - "node": "d1cdc35292f19c9c9ca1563871e694dfa3e4f1e6", - "pushdate": "2012-01-26 17:29:59", - "desc": "Backed out changeset 34157f4059ba (bug 455553)" - }, - "fixing_commit": { - "node": "3677a84a568b1d65383d83e8abc74db5041ff84c", - "pushdate": "2012-01-26 17:29:59", - "desc": "Backed out changeset 38eda0c8b0fd (bug 455553)" - } - }, - { - "bug_id": 455553, - "inducing_commit": { - "node": "3f30da5d0bc30bfd7142b9a3c8b7145f24d2d16b", - "pushdate": "2012-01-26 07:46:03", - "desc": "Bug 455553 - Part 2 - Assets / CSS / Images; r=dao" - }, - "backout_commit": { - "node": "8d1334baf2c1b9d4e5a1a5d2daaaa1d04e17c843", - "pushdate": "2012-01-26 17:29:59", - "desc": "Backed out changeset 3f30da5d0bc3 (bug 455553)" - }, - "fixing_commit": { - "node": "3677a84a568b1d65383d83e8abc74db5041ff84c", - "pushdate": "2012-01-26 17:29:59", - "desc": "Backed out changeset 38eda0c8b0fd (bug 455553)" - } - }, - { - "bug_id": 455553, - "inducing_commit": { - "node": "746adaa9c9da7d82a3bf6615123d56f0967c2d55", - "pushdate": "2012-01-26 07:46:03", - "desc": "Bug 455553 - Part 3 - about:newtab integration; r=fryn,gavin" - }, - "backout_commit": { - "node": "02512dac94c9e2efaa0560388b6e3dd92bffed2c", - "pushdate": "2012-01-26 17:29:59", - "desc": "Backed out changeset 746adaa9c9da (bug 455553)" - }, - "fixing_commit": { - "node": "3677a84a568b1d65383d83e8abc74db5041ff84c", - "pushdate": "2012-01-26 17:29:59", - "desc": "Backed out changeset 38eda0c8b0fd (bug 455553)" - } - }, - { - "bug_id": 455553, - "inducing_commit": { - "node": "95143a881557a97de2e7f4a342d1c669656d3be3", - "pushdate": "2012-01-26 07:46:03", - "desc": "Bug 455553 - Part 4 - Shared Module; r=blair,mak,dietrich" - }, - "backout_commit": { - "node": "330a6839466e51946209f8c67881dd7c510b2b8e", - "pushdate": "2012-01-26 17:29:59", - "desc": "Backed out changeset 95143a881557 (bug 455553)" - }, - "fixing_commit": { - "node": "3677a84a568b1d65383d83e8abc74db5041ff84c", - "pushdate": "2012-01-26 17:29:59", - "desc": "Backed out changeset 38eda0c8b0fd (bug 455553)" - } - }, { "bug_id": 734691, "inducing_commit": { @@ -1691,24 +1367,6 @@ "desc": "Bug 775463: Fix a mistake in a comment r=none DONTBUILD" } }, - { - "bug_id": 725966, - "inducing_commit": { - "node": "183decadb9acf6825a364dc18685a8e9eb72831a", - "pushdate": "2012-09-11 17:34:27", - "desc": "Bug 725966 - Fast path for typeof x == y. r=jandem" - }, - "backout_commit": { - "node": "fdf520ad7dbc7528a11f361249b639299ae1af1f", - "pushdate": "2012-09-11 17:34:27", - "desc": "backout 183decadb9ac" - }, - "fixing_commit": { - "node": "6c77750e3b502f219285c7113dab16228fe24081", - "pushdate": "2021-10-15 09:50:04", - "desc": "Backed out 10 changesets (bug 725966) for causing build bustages on CodeGenerator.cpp.\n\nBacked out changeset 1708b6a2373d (bug 725966)\nBacked out changeset d085abe7302d (bug 725966)\nBacked out changeset d90d0eeda9a7 (bug 725966)\nBacked out changeset fc925bdde132 (bug 725966)\nBacked out changeset 7659142f5ede (bug 725966)\nBacked out changeset 5508f47f0571 (bug 725966)\nBacked out changeset 25723de19680 (bug 725966)\nBacked out changeset 5d8a68d1f36b (bug 725966)\nBacked out changeset 1b847f9f911a (bug 725966)\nBacked out changeset 0c2849b874cb (bug 725966)" - } - }, { "bug_id": 696045, "inducing_commit": { @@ -1727,24 +1385,6 @@ "desc": "Bug 696045 - Implement Mac backend for Battery API. r=BenWa,mounir" } }, - { - "bug_id": 784375, - "inducing_commit": { - "node": "94f06c75c3b5c5f1138c87ad4af596f9243e453a", - "pushdate": "2012-10-16 08:09:24", - "desc": "Bug 784375: Add a preference to control maximum font size inflation ratio." - }, - "backout_commit": { - "node": "811a86ca567e7a2e2cff1fb072d72bf596767251", - "pushdate": "2012-10-16 08:09:24", - "desc": "Backout 94f06c75c3b5 for lack of reviewer." - }, - "fixing_commit": { - "node": "c4b7708e04f4f04c849faad9d1c90d1a7f360bd2", - "pushdate": "2012-10-16 08:09:24", - "desc": "Backout e52a16b96738 (Bug 784375) for oranges on OSX 10.8." - } - }, { "bug_id": 788073, "inducing_commit": { @@ -1818,1587 +1458,219 @@ } }, { - "bug_id": 734691, + "bug_id": 788073, "inducing_commit": { - "node": "cb37a2ae805f0793efcf445a1e886ce4efac6aa4", - "pushdate": "2013-04-11 19:19:41", - "desc": "Bug 734691 - Add multi-thread support to profiler r=benwa" + "node": "bf050e52851f1fcd9037a0bf1700b829e92848a8", + "pushdate": "2013-08-06 21:06:42", + "desc": "Bug 788073 - Use platform touch fluffing on Android. r=kats" }, "backout_commit": { - "node": "5f7ef72c2c000c44f6aafd3ec2e1506e51942a74", - "pushdate": "2013-04-11 19:19:41", - "desc": "Backout cb37a2ae805f on a CLOSED TREE" + "node": "1fb5d14e8348b16014fafa5d746e0a8823df8187", + "pushdate": "2013-08-06 21:06:42", + "desc": "Backed out 2 changesets (bug 901151, bug 788073) for suspected robocop-2 orange.\n\nBacked out changeset 6e7a45127e07 (bug 901151)\nBacked out changeset bf050e52851f (bug 788073)" }, "fixing_commit": { - "node": "e92a339cb4bc004681b6f1b9659518c16d2101e2", - "pushdate": "2013-04-17 01:07:40", - "desc": "Backed out 2 changesets (bug 734691) for leaks.\n\nBacked out changeset ba88d9730af6 (bug 734691)\nBacked out changeset 7d2fbf7b0372 (bug 734691)" + "node": "c8e8e389d84fc0171cf743938861613edbe6282c", + "pushdate": "2014-09-23 01:26:08", + "desc": "Bug 788073 - Use platform touch redirection. r=kats,wesj" } }, { - "bug_id": 734691, + "bug_id": 853388, "inducing_commit": { - "node": "e090321a025cd2c232de860feccc21ee686c425c", - "pushdate": "2013-04-11 19:19:41", - "desc": "Bug 734691 - Port multi-thread support to win/mac. r=snorp,smaug" + "node": "74673d1b1718167b95069ab65d5e55ed7bc329f8", + "pushdate": "2013-08-11 07:28:28", + "desc": "Bug 853388: Upgrade existing SQLITE databases to JSON" }, "backout_commit": { - "node": "ee168b506dd7f70145327b585e998cbdf3e231fa", - "pushdate": "2013-04-11 19:19:41", - "desc": "Backout e090321a025c" + "node": "d673c2622b84c67b4f2aa97548e60b6fdc0ea99d", + "pushdate": "2013-08-11 07:28:28", + "desc": "Back out 74673d1b1718 for missing reviewer" }, "fixing_commit": { - "node": "e92a339cb4bc004681b6f1b9659518c16d2101e2", - "pushdate": "2013-04-17 01:07:40", - "desc": "Backed out 2 changesets (bug 734691) for leaks.\n\nBacked out changeset ba88d9730af6 (bug 734691)\nBacked out changeset 7d2fbf7b0372 (bug 734691)" + "node": "acba57ca53b8eea32719dffb07b5cfb31908332c", + "pushdate": "2013-08-11 07:28:28", + "desc": "Bug 853388: Upgrade existing SQLITE databases to JSON; r=unfocused" } }, { - "bug_id": 734691, + "bug_id": 853388, "inducing_commit": { - "node": "f7814e2bc3dd96b20e0ac154b107ba49857ced10", - "pushdate": "2013-04-11 19:19:41", - "desc": "Bug 734691 - Bustage fix on a CLOSED TREE. r=bustage" + "node": "2015a41cdf709050c5c140ff3135ed43f82b6ef6", + "pushdate": "2013-08-11 07:28:28", + "desc": "Bug 853388: Remove transaction model of database flush control and implement async save of database" }, "backout_commit": { - "node": "c4787f90e6b877f9467fbf2284d7f7b3e5ff7843", - "pushdate": "2013-04-11 19:19:41", - "desc": "Backout f7814e2bc3dd" + "node": "12a2e6d1fe972bf3f82c205fa80f2bea6a582bc7", + "pushdate": "2013-08-11 07:28:28", + "desc": "Back out 2015a41cdf70 for missing reviewer" }, "fixing_commit": { - "node": "e92a339cb4bc004681b6f1b9659518c16d2101e2", - "pushdate": "2013-04-17 01:07:40", - "desc": "Backed out 2 changesets (bug 734691) for leaks.\n\nBacked out changeset ba88d9730af6 (bug 734691)\nBacked out changeset 7d2fbf7b0372 (bug 734691)" + "node": "acba57ca53b8eea32719dffb07b5cfb31908332c", + "pushdate": "2013-08-11 07:28:28", + "desc": "Bug 853388: Upgrade existing SQLITE databases to JSON; r=unfocused" } }, { - "bug_id": 856361, + "bug_id": 853388, "inducing_commit": { - "node": "0ad406a69f2cb08e5453527b5051db038b373c4d", - "pushdate": "2013-07-29 14:13:44", - "desc": "Bug 856361. Part 1: Fix documentation of MediaInputPort flags. r=jesup" + "node": "816af0c07c46ab7b503127335276a06d8c06f44a", + "pushdate": "2013-08-11 07:28:28", + "desc": "Bug 853388: Trigger XPI database conversion from SQLITE based on schema version preference" }, "backout_commit": { - "node": "47f46080685f1a6d6058198b4b11d00e2c82aa51", - "pushdate": "2013-07-29 14:13:44", - "desc": "Backed out changeset 0ad406a69f2c (bug 856361) for mochitest-1 failures in test_mediaElementAudioSourceNode.html on a CLOSED TREE" + "node": "90b96c49dbfb7b6d28a9002ba9a38da6dd9e2648", + "pushdate": "2013-08-11 07:28:28", + "desc": "Back out 816af0c07c46 for missing reviewer" }, "fixing_commit": { - "node": "6946b8d86502ef8994d309dcc4925f12529e41d9", - "pushdate": "2013-07-29 14:13:44", - "desc": "Backed out changeset f7496fddb076 (bug 856361)" + "node": "acba57ca53b8eea32719dffb07b5cfb31908332c", + "pushdate": "2013-08-11 07:28:28", + "desc": "Bug 853388: Upgrade existing SQLITE databases to JSON; r=unfocused" } }, { - "bug_id": 856361, + "bug_id": 853388, "inducing_commit": { - "node": "3f2c0edda4c265a9e34e791fa527d682b8de7be1", - "pushdate": "2013-07-29 14:13:44", - "desc": "Bug 856361. Part 2: Block data from a non-same-origin media resource entering a MediaStream from a media element. r=cpearce" + "node": "629a3e8bd2b1850a62b6e5e0f37a0a7d17f7117b", + "pushdate": "2013-08-11 07:28:28", + "desc": "Bug 853388: Load JSON database asynchronously outside of startup" }, "backout_commit": { - "node": "4382f83efcaf03d82dcab6dd122410daab3ccbda", - "pushdate": "2013-07-29 14:13:44", - "desc": "Backed out changeset 3f2c0edda4c2 (bug 856361)" + "node": "28be87cdc09bf84a65f84d0c1482a150190a98cd", + "pushdate": "2013-08-11 07:28:28", + "desc": "Back out 629a3e8bd2b1 for missing reviewer" }, "fixing_commit": { - "node": "6946b8d86502ef8994d309dcc4925f12529e41d9", - "pushdate": "2013-07-29 14:13:44", - "desc": "Backed out changeset f7496fddb076 (bug 856361)" + "node": "acba57ca53b8eea32719dffb07b5cfb31908332c", + "pushdate": "2013-08-11 07:28:28", + "desc": "Bug 853388: Upgrade existing SQLITE databases to JSON; r=unfocused" } }, { - "bug_id": 856361, + "bug_id": 853388, "inducing_commit": { - "node": "f211d675479689dc2b86ddb6ee3af4cee2e83e03", - "pushdate": "2013-07-29 14:13:44", - "desc": "Bug 856361. Part 3: Refactor AudioNodeStream to create ComputeFinalOuputChannelCount, AccumulateInputChunk and AdvanceOutputSegment, and make AudioNodeStreams be treated as always consumed by the MediaStreamGraph. r=ehsan" + "node": "20d83a7220ca36140d4edeb7444f05312c84d097", + "pushdate": "2013-08-11 07:28:28", + "desc": "Bug 853388: Keep trying to save JSON even if read or save fails" }, "backout_commit": { - "node": "fab0e9b04d8da8a58c71a0f7168650df1ae9d01c", - "pushdate": "2013-07-29 14:13:44", - "desc": "Backed out changeset f211d6754796 (bug 856361)" + "node": "3211c723d9fd81025c162d82cab75865d4506c6a", + "pushdate": "2013-08-11 07:28:28", + "desc": "Back out 20d83a7220ca for missing reviewer" }, "fixing_commit": { - "node": "6946b8d86502ef8994d309dcc4925f12529e41d9", - "pushdate": "2013-07-29 14:13:44", - "desc": "Backed out changeset f7496fddb076 (bug 856361)" + "node": "acba57ca53b8eea32719dffb07b5cfb31908332c", + "pushdate": "2013-08-11 07:28:28", + "desc": "Bug 853388: Upgrade existing SQLITE databases to JSON; r=unfocused" } }, { - "bug_id": 856361, + "bug_id": 790923, "inducing_commit": { - "node": "2af84c01ac0cccad0d4003bfb9983d6bd2369d62", - "pushdate": "2013-07-29 14:13:44", - "desc": "Bug 856361. Part 4: Create AudioNodeExternalInputStream. r=ehsan" + "node": "9a57f0f347e3fdb8b6b38c07eeaa5eff5a4049be", + "pushdate": "2013-08-13 10:34:53", + "desc": "Bug 790923: Adds seccomp-bfp sandboxing support for B2G. r=agal, r=dhylands, r=dkeeler, r=imelven, a=kang." }, "backout_commit": { - "node": "0f30f29ffa1f2ea92d93e7328d978a2b029146e1", - "pushdate": "2013-07-29 14:13:44", - "desc": "Backed out changeset 2af84c01ac0c (bug 856361)" + "node": "ca193619b815531e5afae4b4b596889cc3479aa1", + "pushdate": "2013-08-13 19:37:08", + "desc": "Backout changeset 9a57f0f347e3 for insufficient review." }, "fixing_commit": { - "node": "6946b8d86502ef8994d309dcc4925f12529e41d9", - "pushdate": "2013-07-29 14:13:44", - "desc": "Backed out changeset f7496fddb076 (bug 856361)" + "node": "ded622a6ad19ed076e90aabae618c4966b1c20cb", + "pushdate": "2013-08-16 08:28:16", + "desc": "Bug 790923: Adds seccomp-bfp sandboxing support for B2G. r=khuey, r=gerv, r=agal, r=dhylands, r=keeler, r=imelven, a=kang." } }, { - "bug_id": 856361, + "bug_id": 666816, "inducing_commit": { - "node": "9e90a81b9e37371a8c209ba1675d3391405a1afe", - "pushdate": "2013-07-29 14:13:44", - "desc": "Bug 856361. Part 5: Implement MediaStreamAudioSourceNode. r=ehsan" + "node": "3734bebc9bfbd96727c6694248d21e16f7e6b8df", + "pushdate": "2013-09-13 20:07:11", + "desc": "Bug 666816 - Support findbar in e10s. r=mikedeboer" }, "backout_commit": { - "node": "6e72a4e894e14bf2b6fd7a42d4aeb3d68b5357a7", - "pushdate": "2013-07-29 14:13:44", - "desc": "Backed out changeset 9e90a81b9e37 (bug 856361)" + "node": "32b0c06568e924acb9dad8b929719f8e4a39a29d", + "pushdate": "2013-09-13 20:07:11", + "desc": "backout changeset 3734bebc9bfb, because bad commit message and missed nit" }, "fixing_commit": { - "node": "6946b8d86502ef8994d309dcc4925f12529e41d9", - "pushdate": "2013-07-29 14:13:44", - "desc": "Backed out changeset f7496fddb076 (bug 856361)" + "node": "295578d99074504f455e2b268c11df934b368d3a", + "pushdate": "2013-09-13 20:07:11", + "desc": "Bug 666816 - Refactor findbar to use a result listener and move most of the logic into a JSM. r=mikedeboer" } }, { - "bug_id": 856361, + "bug_id": 673875, "inducing_commit": { - "node": "3d6f6f06da5ebd710e31ea1a0f5d5b84434c47ab", - "pushdate": "2013-07-29 14:13:44", - "desc": "Bug 856361. Part 6: Make MediaStreamAudioSourceNode keep its DOMMediaStream alive, and make the DOMMediaStream keep the MediaStreamAudioSourceNode alive. r=ehsan" + "node": "751bcb37cdb6404b8d4582aad47f96af8fcd4839", + "pushdate": "2013-10-11 19:39:21", + "desc": "Bug 673875: Reproduce the bounce behavior when reaching the top/bottom of the page on OSX. r=smichaud,felipe,masayuki" }, "backout_commit": { - "node": "ebd005b9e9d742918b6557b05ce7e18cae4c2175", - "pushdate": "2013-07-29 14:13:44", - "desc": "Backed out changeset 3d6f6f06da5e (bug 856361)" + "node": "1e935a380fb253c7bdb59c21914e392c33106258", + "pushdate": "2013-10-11 19:39:21", + "desc": "Backout 751bcb37cdb6 for bustage on a CLOSED TREE. r=me" }, "fixing_commit": { - "node": "6946b8d86502ef8994d309dcc4925f12529e41d9", - "pushdate": "2013-07-29 14:13:44", - "desc": "Backed out changeset f7496fddb076 (bug 856361)" + "node": "b784c6dafa7da581970d474fe8f35685a140c5a1", + "pushdate": "2013-10-12 01:50:20", + "desc": "Bug 673875: Reproduce the bounce behavior when reaching the top/bottom of the page on OSX. r=smichaud,felipe,masayuki" } }, { - "bug_id": 856361, + "bug_id": 879668, "inducing_commit": { - "node": "3fbe86d67b6ade0589f7feff72bface2eb461a8f", - "pushdate": "2013-07-29 14:13:44", - "desc": "Bug 856361. Part 7: Address review comment. r=ehsan" - }, - "backout_commit": { - "node": "c43900741e9a079cb960877aa4ca4441b6dcee0a", - "pushdate": "2013-07-29 14:13:44", - "desc": "Backed out changeset 3fbe86d67b6a (bug 856361)" - }, - "fixing_commit": { - "node": "6946b8d86502ef8994d309dcc4925f12529e41d9", - "pushdate": "2013-07-29 14:13:44", - "desc": "Backed out changeset f7496fddb076 (bug 856361)" - } - }, - { - "bug_id": 856361, - "inducing_commit": { - "node": "446410b692a094ab61a130ab194ae12688506948", - "pushdate": "2013-07-29 14:13:44", - "desc": "Bug 856361 and bug 855568 require a clobber on Windows due to bug 890744" - }, - "backout_commit": { - "node": "31453209a88adb6a30a84167f7cf4e5969cee414", - "pushdate": "2013-07-29 14:13:44", - "desc": "Backed out changeset 446410b692a0 (bug 856361)" - }, - "fixing_commit": { - "node": "6946b8d86502ef8994d309dcc4925f12529e41d9", - "pushdate": "2013-07-29 14:13:44", - "desc": "Backed out changeset f7496fddb076 (bug 856361)" - } - }, - { - "bug_id": 788073, - "inducing_commit": { - "node": "bf050e52851f1fcd9037a0bf1700b829e92848a8", - "pushdate": "2013-08-06 21:06:42", - "desc": "Bug 788073 - Use platform touch fluffing on Android. r=kats" - }, - "backout_commit": { - "node": "1fb5d14e8348b16014fafa5d746e0a8823df8187", - "pushdate": "2013-08-06 21:06:42", - "desc": "Backed out 2 changesets (bug 901151, bug 788073) for suspected robocop-2 orange.\n\nBacked out changeset 6e7a45127e07 (bug 901151)\nBacked out changeset bf050e52851f (bug 788073)" - }, - "fixing_commit": { - "node": "c8e8e389d84fc0171cf743938861613edbe6282c", - "pushdate": "2014-09-23 01:26:08", - "desc": "Bug 788073 - Use platform touch redirection. r=kats,wesj" - } - }, - { - "bug_id": 853388, - "inducing_commit": { - "node": "b3afaf3b4f3a66fcc4da0c4f5119338f46c915ad", - "pushdate": "2013-08-09 06:50:39", - "desc": "Bug 853388: Save and load XPIProvider state to/from a JSON file; r=unfocused" - }, - "backout_commit": { - "node": "917f586dd1422be9869bfea5c6c2cc31cc9dc8b9", - "pushdate": "2013-08-09 06:50:39", - "desc": "Backed out changeset b3afaf3b4f3a (bug 853388)" - }, - "fixing_commit": { - "node": "960ecd36a7147c7d566eb0c9986c15ace3f1c425", - "pushdate": "2013-08-09 06:50:39", - "desc": "Backed out changeset 607b35c777f0 (bug 853388)" - } - }, - { - "bug_id": 853388, - "inducing_commit": { - "node": "5861a7f63f25374b5438f42ff10a316e5b3fdada", - "pushdate": "2013-08-09 06:50:39", - "desc": "Bug 853388: Upgrade existing SQLITE databases to JSON; r=unfocused" - }, - "backout_commit": { - "node": "2467fe99d9b0dde6b847c1cdb4cb191d719850e2", - "pushdate": "2013-08-09 06:50:39", - "desc": "Backed out changeset 5861a7f63f25 (bug 853388)" - }, - "fixing_commit": { - "node": "960ecd36a7147c7d566eb0c9986c15ace3f1c425", - "pushdate": "2013-08-09 06:50:39", - "desc": "Backed out changeset 607b35c777f0 (bug 853388)" - } - }, - { - "bug_id": 853388, - "inducing_commit": { - "node": "ee904d911f2d828b13beff5e3893c99cff073f4d", - "pushdate": "2013-08-09 06:50:39", - "desc": "Bug 853388: Remove transaction model of database flush control and implement async save of database; r=unfocused" - }, - "backout_commit": { - "node": "59a3d59d9fb7db15b980b8cdefec744ca957c799", - "pushdate": "2013-08-09 06:50:39", - "desc": "Backed out changeset ee904d911f2d (bug 853388)" - }, - "fixing_commit": { - "node": "960ecd36a7147c7d566eb0c9986c15ace3f1c425", - "pushdate": "2013-08-09 06:50:39", - "desc": "Backed out changeset 607b35c777f0 (bug 853388)" - } - }, - { - "bug_id": 853388, - "inducing_commit": { - "node": "f3cf78d7e62dd8e21a0860ed3bd11259a00774f3", - "pushdate": "2013-08-09 06:50:39", - "desc": "Bug 853388: Trigger XPI database conversion from SQLITE based on schema version preference; r=unfocused" - }, - "backout_commit": { - "node": "a64c1ad76ba1b5e3b2631f86c7ae679eee78e9e3", - "pushdate": "2013-08-09 06:50:39", - "desc": "Backed out changeset f3cf78d7e62d (bug 853388)" - }, - "fixing_commit": { - "node": "960ecd36a7147c7d566eb0c9986c15ace3f1c425", - "pushdate": "2013-08-09 06:50:39", - "desc": "Backed out changeset 607b35c777f0 (bug 853388)" - } - }, - { - "bug_id": 853388, - "inducing_commit": { - "node": "40c48d65e38287193f978193268b10cbe9a051f1", - "pushdate": "2013-08-09 06:50:39", - "desc": "Bug 853388: Load JSON database asynchronously outside of startup; r=unfocused" - }, - "backout_commit": { - "node": "bc2cb7f532f2fee494a5c9ef68407f9c2c0a0b52", - "pushdate": "2013-08-09 06:50:39", - "desc": "Backed out changeset 40c48d65e382 (bug 853388)" - }, - "fixing_commit": { - "node": "960ecd36a7147c7d566eb0c9986c15ace3f1c425", - "pushdate": "2013-08-09 06:50:39", - "desc": "Backed out changeset 607b35c777f0 (bug 853388)" - } - }, - { - "bug_id": 853388, - "inducing_commit": { - "node": "74673d1b1718167b95069ab65d5e55ed7bc329f8", - "pushdate": "2013-08-11 07:28:28", - "desc": "Bug 853388: Upgrade existing SQLITE databases to JSON" - }, - "backout_commit": { - "node": "d673c2622b84c67b4f2aa97548e60b6fdc0ea99d", - "pushdate": "2013-08-11 07:28:28", - "desc": "Back out 74673d1b1718 for missing reviewer" - }, - "fixing_commit": { - "node": "acba57ca53b8eea32719dffb07b5cfb31908332c", - "pushdate": "2013-08-11 07:28:28", - "desc": "Bug 853388: Upgrade existing SQLITE databases to JSON; r=unfocused" - } - }, - { - "bug_id": 853388, - "inducing_commit": { - "node": "2015a41cdf709050c5c140ff3135ed43f82b6ef6", - "pushdate": "2013-08-11 07:28:28", - "desc": "Bug 853388: Remove transaction model of database flush control and implement async save of database" - }, - "backout_commit": { - "node": "12a2e6d1fe972bf3f82c205fa80f2bea6a582bc7", - "pushdate": "2013-08-11 07:28:28", - "desc": "Back out 2015a41cdf70 for missing reviewer" - }, - "fixing_commit": { - "node": "acba57ca53b8eea32719dffb07b5cfb31908332c", - "pushdate": "2013-08-11 07:28:28", - "desc": "Bug 853388: Upgrade existing SQLITE databases to JSON; r=unfocused" - } - }, - { - "bug_id": 853388, - "inducing_commit": { - "node": "816af0c07c46ab7b503127335276a06d8c06f44a", - "pushdate": "2013-08-11 07:28:28", - "desc": "Bug 853388: Trigger XPI database conversion from SQLITE based on schema version preference" - }, - "backout_commit": { - "node": "90b96c49dbfb7b6d28a9002ba9a38da6dd9e2648", - "pushdate": "2013-08-11 07:28:28", - "desc": "Back out 816af0c07c46 for missing reviewer" - }, - "fixing_commit": { - "node": "acba57ca53b8eea32719dffb07b5cfb31908332c", - "pushdate": "2013-08-11 07:28:28", - "desc": "Bug 853388: Upgrade existing SQLITE databases to JSON; r=unfocused" - } - }, - { - "bug_id": 853388, - "inducing_commit": { - "node": "629a3e8bd2b1850a62b6e5e0f37a0a7d17f7117b", - "pushdate": "2013-08-11 07:28:28", - "desc": "Bug 853388: Load JSON database asynchronously outside of startup" - }, - "backout_commit": { - "node": "28be87cdc09bf84a65f84d0c1482a150190a98cd", - "pushdate": "2013-08-11 07:28:28", - "desc": "Back out 629a3e8bd2b1 for missing reviewer" - }, - "fixing_commit": { - "node": "acba57ca53b8eea32719dffb07b5cfb31908332c", - "pushdate": "2013-08-11 07:28:28", - "desc": "Bug 853388: Upgrade existing SQLITE databases to JSON; r=unfocused" - } - }, - { - "bug_id": 853388, - "inducing_commit": { - "node": "20d83a7220ca36140d4edeb7444f05312c84d097", - "pushdate": "2013-08-11 07:28:28", - "desc": "Bug 853388: Keep trying to save JSON even if read or save fails" - }, - "backout_commit": { - "node": "3211c723d9fd81025c162d82cab75865d4506c6a", - "pushdate": "2013-08-11 07:28:28", - "desc": "Back out 20d83a7220ca for missing reviewer" - }, - "fixing_commit": { - "node": "acba57ca53b8eea32719dffb07b5cfb31908332c", - "pushdate": "2013-08-11 07:28:28", - "desc": "Bug 853388: Upgrade existing SQLITE databases to JSON; r=unfocused" - } - }, - { - "bug_id": 790923, - "inducing_commit": { - "node": "9a57f0f347e3fdb8b6b38c07eeaa5eff5a4049be", - "pushdate": "2013-08-13 10:34:53", - "desc": "Bug 790923: Adds seccomp-bfp sandboxing support for B2G. r=agal, r=dhylands, r=dkeeler, r=imelven, a=kang." - }, - "backout_commit": { - "node": "ca193619b815531e5afae4b4b596889cc3479aa1", - "pushdate": "2013-08-13 19:37:08", - "desc": "Backout changeset 9a57f0f347e3 for insufficient review." - }, - "fixing_commit": { - "node": "ded622a6ad19ed076e90aabae618c4966b1c20cb", - "pushdate": "2013-08-16 08:28:16", - "desc": "Bug 790923: Adds seccomp-bfp sandboxing support for B2G. r=khuey, r=gerv, r=agal, r=dhylands, r=keeler, r=imelven, a=kang." - } - }, - { - "bug_id": 847863, - "inducing_commit": { - "node": "7e8ff4c464f984bfc844bbf5aa1daaf20fc82097", - "pushdate": "2013-08-20 08:53:39", - "desc": "Bug 847863 - Part 6 of 8 - Convert tests for clearing recent history. r=paolo" - }, - "backout_commit": { - "node": "1d6bf2bd4003d23f9f726d85d2e75f83d26eae2a", - "pushdate": "2013-08-20 10:53:10", - "desc": "Backed out changeset 7e8ff4c464f9 (bug 847863) on suspicion of causing failures in browser_sanitize-timespans.js" - }, - "fixing_commit": { - "node": "363a8fb2e153f5fed60a025ea929db483fd91246", - "pushdate": "2013-08-20 10:53:10", - "desc": "Backed out changeset c2b4444ad9fd (bug 847863)" - } - }, - { - "bug_id": 847863, - "inducing_commit": { - "node": "36c994d08d1bc2e9781bf2f4ada7979444649447", - "pushdate": "2013-08-20 08:53:39", - "desc": "Bug 847863 - Part 7 of 8 - Convert Downloads Panel tests. r=enn" - }, - "backout_commit": { - "node": "0620357b639d3978179b0b5961fc1d75829491aa", - "pushdate": "2013-08-20 10:53:10", - "desc": "Backed out changeset 36c994d08d1b (bug 847863)" - }, - "fixing_commit": { - "node": "363a8fb2e153f5fed60a025ea929db483fd91246", - "pushdate": "2013-08-20 10:53:10", - "desc": "Backed out changeset c2b4444ad9fd (bug 847863)" - } - }, - { - "bug_id": 666816, - "inducing_commit": { - "node": "3734bebc9bfbd96727c6694248d21e16f7e6b8df", - "pushdate": "2013-09-13 20:07:11", - "desc": "Bug 666816 - Support findbar in e10s. r=mikedeboer" - }, - "backout_commit": { - "node": "32b0c06568e924acb9dad8b929719f8e4a39a29d", - "pushdate": "2013-09-13 20:07:11", - "desc": "backout changeset 3734bebc9bfb, because bad commit message and missed nit" - }, - "fixing_commit": { - "node": "295578d99074504f455e2b268c11df934b368d3a", - "pushdate": "2013-09-13 20:07:11", - "desc": "Bug 666816 - Refactor findbar to use a result listener and move most of the logic into a JSM. r=mikedeboer" - } - }, - { - "bug_id": 673875, - "inducing_commit": { - "node": "751bcb37cdb6404b8d4582aad47f96af8fcd4839", - "pushdate": "2013-10-11 19:39:21", - "desc": "Bug 673875: Reproduce the bounce behavior when reaching the top/bottom of the page on OSX. r=smichaud,felipe,masayuki" - }, - "backout_commit": { - "node": "1e935a380fb253c7bdb59c21914e392c33106258", - "pushdate": "2013-10-11 19:39:21", - "desc": "Backout 751bcb37cdb6 for bustage on a CLOSED TREE. r=me" - }, - "fixing_commit": { - "node": "b784c6dafa7da581970d474fe8f35685a140c5a1", - "pushdate": "2013-10-12 01:50:20", - "desc": "Bug 673875: Reproduce the bounce behavior when reaching the top/bottom of the page on OSX. r=smichaud,felipe,masayuki" - } - }, - { - "bug_id": 933882, - "inducing_commit": { - "node": "ce4011f334226ae21b698d04c30015102042ee73", - "pushdate": "2013-11-12 15:09:20", - "desc": "Bug 933882 - Invalidate JIT code instead of doing full GC on debug mode toggle. (r=bhackett)" - }, - "backout_commit": { - "node": "67f5d934127ce93057ad5c76d04af75337762434", - "pushdate": "2013-11-12 15:09:20", - "desc": "Backed out 7 changesets (bug 935228, bug 936143, bug 935470, bug 933882, bug 934799) for breaking ASAN browser-chrome tests on a CLOSED TREE\n\nBacked out changeset ae6f2151610f (bug 934799)\nBacked out changeset 82495f0c5da2 (bug 934799)\nBacked out changeset 77be849d81e7 (bug 935228)\nBacked out changeset 555e5759fe5f (bug 935470)\nBacked out changeset ce4011f33422 (bug 933882)\nBacked out changeset e13e98eab890 (bug 936143)\nBacked out changeset fb230c191a88 (bug 936143)" - }, - "fixing_commit": { - "node": "5c1d58a7dfc9747ae5e73d9ddf9cdfd2e9409e73", - "pushdate": "2013-11-15 03:19:28", - "desc": "Backed out changeset c6981912ff87 (bug 933882) as result of the discussion of Bug 937997 Comment 48 Trees Closed due to OOM on a CLOSED TREE" - } - }, - { - "bug_id": 933882, - "inducing_commit": { - "node": "2abeb02c477777d6322737f0a9cc67cb514fb049", - "pushdate": "2013-11-13 00:34:32", - "desc": "Bug 933882 - Invalidate JIT code instead of doing full GC on debug mode toggle. (r=bhackett)" - }, - "backout_commit": { - "node": "3382fad9edf06ebc578cc5dac4ccea00ac196a29", - "pushdate": "2013-11-15 03:19:28", - "desc": "Backed out changeset 2abeb02c4777 (bug 933882) as result of the discussion of Bug 937997 Comment 48 Trees Closed due to OOM on a CLOSED TREE" - }, - "fixing_commit": { - "node": "5c1d58a7dfc9747ae5e73d9ddf9cdfd2e9409e73", - "pushdate": "2013-11-15 03:19:28", - "desc": "Backed out changeset c6981912ff87 (bug 933882) as result of the discussion of Bug 937997 Comment 48 Trees Closed due to OOM on a CLOSED TREE" - } - }, - { - "bug_id": 879668, - "inducing_commit": { - "node": "1395d2a596985cef64497bfff650560c7d8df869", - "pushdate": "2014-01-19 20:40:59", - "desc": "Bug 879668 - Part 1: Make CreateMutedFrame static. r=roc" - }, - "backout_commit": { - "node": "7b655cd5cce89a49d6e76e5da12c74561b88cf52", - "pushdate": "2014-01-19 20:40:59", - "desc": "Backed out changeset 1395d2a59698 (bug 879668) for landing without review." - }, - "fixing_commit": { - "node": "ab65363c73e3ddd8b43c9458ef17e3a96eabefd7", - "pushdate": "2014-01-19 20:40:59", - "desc": "Bug 879668 - Part 2: Add utility function to convert codec data from OMX AVC/H.264 encoder for MP4 container writer. r=roc" - } - }, - { - "bug_id": 620935, - "inducing_commit": { - "node": "235d4c57787f311259119591bf245fbafdca3823", - "pushdate": "2014-01-24 21:51:09", - "desc": "Bug 620935 - __noSuchMethod__ support for WebIDL r=bz" - }, - "backout_commit": { - "node": "41559c2000f4166a0b4fe9d8ace7d71e44f6d95b", - "pushdate": "2014-01-24 21:51:09", - "desc": "Backed out changeset 235d4c57787f (bug 620935) for m13 perma-orange on a CLOSED TREE" - }, - "fixing_commit": { - "node": "ec91efbcc80e4b15e5a6e2b221bf68764062789b", - "pushdate": "2014-01-24 21:51:09", - "desc": "Backed out changeset 691a1d12372a (bug 620935) for m13 perma orange on a CLOSED TREE" - } - }, - { - "bug_id": 789096, - "inducing_commit": { - "node": "9f92527ff03ba3bad3b301633acdc637f392d3ec", - "pushdate": "2014-03-11 19:19:48", - "desc": "Use logical coordinates in nsBlockFrame::ReflowBullet. Bug 789096, r=jfkthame" - }, - "backout_commit": { - "node": "5bd692d15d02c87dc8a4197cd96be36201efa941", - "pushdate": "2014-03-11 19:19:48", - "desc": "Backed out changeset 9f92527ff03b (bug 789096) for Valgrind Test-Bustage on a CLOSED TREE" - }, - "fixing_commit": { - "node": "ccbb32d6a1ceda105c19dd9fe3fe38eb46b5368f", - "pushdate": "2014-03-11 19:19:48", - "desc": "Backed out changeset 534a0efe7d3d (bug 789096)" - } - }, - { - "bug_id": 789096, - "inducing_commit": { - "node": "aeff4052ef00d986d47bb7dcc10226b74066f884", - "pushdate": "2014-03-11 19:19:48", - "desc": "Use logical text layout API in nsLineLayout. Bug 789096, r=jfkthame" - }, - "backout_commit": { - "node": "010865dfe35ee6de7fb5607bc9084b7b21e9a04c", - "pushdate": "2014-03-11 19:19:48", - "desc": "Backed out changeset aeff4052ef00 (bug 789096)" - }, - "fixing_commit": { - "node": "ccbb32d6a1ceda105c19dd9fe3fe38eb46b5368f", - "pushdate": "2014-03-11 19:19:48", - "desc": "Backed out changeset 534a0efe7d3d (bug 789096)" - } - }, - { - "bug_id": 917226, - "inducing_commit": { - "node": "894e4012137063861210ef5372facd82a04b6798", - "pushdate": "2014-03-28 03:08:07", - "desc": "Bug 917226 - Build a canvas inspection tool, r=rcampbell" - }, - "backout_commit": { - "node": "882b91ce5a9fee04ad015dcc8bf6bd40048aa414", - "pushdate": "2014-03-28 03:08:07", - "desc": "Backed out changeset 894e40121370 (bug 917226) for mochitest-chrome failures" - }, - "fixing_commit": { - "node": "955336deb0ff3027385d47acd21e1aec76150af6", - "pushdate": "2014-03-28 03:08:07", - "desc": "Backed out changeset 882b91ce5a9f, as a relanding of Bug 917226, r=me" - } - }, - { - "bug_id": 917226, - "inducing_commit": { - "node": "9c456120ed575d39e6a52543077992ec8c017521", - "pushdate": "2014-03-28 03:08:07", - "desc": "Bug 917226 - Make test_loader_paths.html aware of the content-observer being added in Loader.jsm, r=jryans" - }, - "backout_commit": { - "node": "88e9a2e07261f20368a5188f07a908cf338a4909", - "pushdate": "2014-03-28 03:08:07", - "desc": "Backed out changeset 9c456120ed57 (bug 917226) for browser-chrome failures" - }, - "fixing_commit": { - "node": "955336deb0ff3027385d47acd21e1aec76150af6", - "pushdate": "2014-03-28 03:08:07", - "desc": "Backed out changeset 882b91ce5a9f, as a relanding of Bug 917226, r=me" - } - }, - { - "bug_id": 917226, - "inducing_commit": { - "node": "7b9fab28c5918398d66b730f4b3973d96afdb880", - "pushdate": "2014-03-28 03:08:07", - "desc": "Bug 917226 - Build a canvas inspection tool, r=rcampbell" - }, - "backout_commit": { - "node": "5ab9f9afe189b8e3c78060e462b3ff002db7137b", - "pushdate": "2014-03-28 03:08:07", - "desc": "Backed out changeset 7b9fab28c591 (bug 917226) for incorrect commit message generated by qbackout; DONTBUILD" - }, - "fixing_commit": { - "node": "88e9a2e07261f20368a5188f07a908cf338a4909", - "pushdate": "2014-03-28 03:08:07", - "desc": "Backed out changeset 9c456120ed57 (bug 917226) for browser-chrome failures" - } - }, - { - "bug_id": 946065, - "inducing_commit": { - "node": "c2350812b7f1188eebda30532d6108211697b97d", - "pushdate": "2014-04-14 13:20:46", - "desc": "Bug 946065 - Part 6: Move content/xml/ to dom/ and flatten subdirectories; sr=jst" - }, - "backout_commit": { - "node": "5c139817cf242e39e1401e191bd333456c171b0f", - "pushdate": "2014-04-14 13:20:46", - "desc": "Backed out changeset c2350812b7f1 (bug 946065) hoping this fix the B2G mochitest-7 perma-fail on a CLOSED TREE" - }, - "fixing_commit": { - "node": "c153aa5be1088073e57fe2a63d806f3b7a161b23", - "pushdate": "2014-04-14 13:20:46", - "desc": "Backed out changeset 6a0290190c1b (bug 946065)" - } - }, - { - "bug_id": 776027, - "inducing_commit": { - "node": "33bcd13d52f59caaed9607a526cd261cf2399743", - "pushdate": "2014-04-15 16:17:08", - "desc": "Bug 776027 - Move intent handling to IntentHelper. r=wesj" - }, - "backout_commit": { - "node": "c300fbbd1b1e7da6c3b7e82ce505de7d94b3d999", - "pushdate": "2014-04-15 16:17:08", - "desc": "Backed out changeset 33bcd13d52f5 (bug 776027) for Android M6 Test Failure" - }, - "fixing_commit": { - "node": "c2f254dc00d2838fb8f7fe1b75432c4d4232ed80", - "pushdate": "2014-04-15 16:17:08", - "desc": "Backed out changeset 46b4833e84c3 (bug 776027)" - } - }, - { - "bug_id": 776027, - "inducing_commit": { - "node": "f8c51b2092cad9b1d86035a80bf7074e0741f58e", - "pushdate": "2014-04-15 16:17:08", - "desc": "Bug 776027 - Pass activity options instead of name through nsIActivityUIGlue. r=fabrice" - }, - "backout_commit": { - "node": "d7f6864d857078e9bec2a884b0383036805706c8", - "pushdate": "2014-04-15 16:17:08", - "desc": "Backed out changeset f8c51b2092ca (bug 776027)" - }, - "fixing_commit": { - "node": "c2f254dc00d2838fb8f7fe1b75432c4d4232ed80", - "pushdate": "2014-04-15 16:17:08", - "desc": "Backed out changeset 46b4833e84c3 (bug 776027)" - } - }, - { - "bug_id": 776027, - "inducing_commit": { - "node": "2ada015179801c0889ac82e203774eaca2bbd5ef", - "pushdate": "2014-04-15 16:17:08", - "desc": "Bug 776027 - Allow nsIActivityUIGlueCallback to handle native and web activities. r=fabrice" - }, - "backout_commit": { - "node": "c1019516b76efd9476a2a76ebfefb19c747a43cb", - "pushdate": "2014-04-15 16:17:08", - "desc": "Backed out changeset 2ada01517980 (bug 776027)" - }, - "fixing_commit": { - "node": "c2f254dc00d2838fb8f7fe1b75432c4d4232ed80", - "pushdate": "2014-04-15 16:17:08", - "desc": "Backed out changeset 46b4833e84c3 (bug 776027)" - } - }, - { - "bug_id": 776027, - "inducing_commit": { - "node": "ec54368243da36dacccca850735876ea454a0fdf", - "pushdate": "2014-04-15 16:17:08", - "desc": "Bug 776027 - Pass web activities to Java. r=wesj" - }, - "backout_commit": { - "node": "361d1c3b9fc555aa2265a4cee0a5cebd435be3d8", - "pushdate": "2014-04-15 16:17:08", - "desc": "Backed out changeset ec54368243da (bug 776027)" - }, - "fixing_commit": { - "node": "c2f254dc00d2838fb8f7fe1b75432c4d4232ed80", - "pushdate": "2014-04-15 16:17:08", - "desc": "Backed out changeset 46b4833e84c3 (bug 776027)" - } - }, - { - "bug_id": 789096, - "inducing_commit": { - "node": "38b25d5e6cf93b3f7f781df32c01b436b5eb2b3e", - "pushdate": "2014-05-26 12:37:49", - "desc": "Add a WritingMode argument to nsHTMLReflowMetrics::ISize() and BSize(). Bug 789096, r=jfkthame" - }, - "backout_commit": { - "node": "94af2dca5c0cdd14c8f34c0eded48b662349437e", - "pushdate": "2014-05-26 12:37:49", - "desc": "Backout 38b25d5e6cf9 because assertions" - }, - "fixing_commit": { - "node": "2d9924eaa36c8b47bebb25d7932fa97773825c6f", - "pushdate": "2014-06-06 01:31:27", - "desc": "Add a WritingMode argument to nsHTMLReflowMetrics::ISize() and BSize(). Bug 789096, r=jfkthame" - } - }, - { - "bug_id": 958868, - "inducing_commit": { - "node": "f809a67a796e574fd7e942935c1cdb737095cfef", - "pushdate": "2014-06-24 15:52:34", - "desc": "Bug 958868 - Add support for GDK_SCROLL_SMOOTH; r=karlt" - }, - "backout_commit": { - "node": "e68dcb0c572cdf825ddcd9653e6341da360249f0", - "pushdate": "2014-06-24 15:52:34", - "desc": "Backed out changeset f809a67a796e (bug 958868) for m2 test failures on a CLOSED TREE" - }, - "fixing_commit": { - "node": "f8989df117ae3644164c949b972f0530bf6eb38a", - "pushdate": "2014-06-24 15:52:34", - "desc": "Backed out changeset 8499eefa342e (bug 958868) for m2 test failures on a CLOSED TREE" - } - }, - { - "bug_id": 949617, - "inducing_commit": { - "node": "daa9c46d19dc577fd034486dcd0b6003d0119beb", - "pushdate": "2014-06-25 01:13:54", - "desc": "Bug 949617 - Make the login manager work in e10s. r=dolske" - }, - "backout_commit": { - "node": "6f291b1b47c79117c8d6bfa4a9b6227b8fe8872f", - "pushdate": "2014-06-25 01:13:54", - "desc": "Backed out 5 changesets (bug 993197, bug 949617, bug 995489, bug 1029128) for Android test failures.\n\nBacked out changeset 033d6271fd19 (bug 1029128)\nBacked out changeset f568b1dc9880 (bug 1029128)\nBacked out changeset daa9c46d19dc (bug 949617)\nBacked out changeset 2baf5c61cbf5 (bug 995489)\nBacked out changeset 654c1f0c88bc (bug 993197)" - }, - "fixing_commit": { - "node": "8c1ee05fbbd6eabaaa438703b7018443a0e86fb3", - "pushdate": "2014-06-26 12:15:07", - "desc": "Bug 949617 - Make the login manager work in e10s. r=dolske" - } - }, - { - "bug_id": 1018583, - "inducing_commit": { - "node": "d9f9398b90dc60f33136891cbd63868983f2bbe5", - "pushdate": "2014-07-04 11:44:24", - "desc": "Bug 1018583 part 1. Remove the execute-in-sandbox mode for javascript: URIs, and use the don't-execute mode wherever we used the sandbox one. r=bholley,dao" - }, - "backout_commit": { - "node": "7231daefbb2857793fafdb9e5a37488f31db87df", - "pushdate": "2014-07-04 11:44:24", - "desc": "Backed out changeset d9f9398b90dc (bug 1018583) for bustage on a CLOSED TREE" - }, - "fixing_commit": { - "node": "397259c497fc80f376032997cc1495a47170fe45", - "pushdate": "2014-07-04 11:44:24", - "desc": "Backed out changeset df2b43d4581e (bug 1018583)" - } - }, - { - "bug_id": 966452, - "inducing_commit": { - "node": "207ccc9f5c2ccdd88bc7b8cc1f9ab9c683f6da08", - "pushdate": "2014-07-04 11:44:24", - "desc": "Bug 966452 part 1. Refactor the js_ReportUncaughtException to produce a (message, JSErrorReport*) pair before reporting. r=waldo" - }, - "backout_commit": { - "node": "88af1cfccc0ca90ece4f2bb09bcb37819404aed8", - "pushdate": "2014-07-04 11:44:24", - "desc": "Backed out changeset 207ccc9f5c2c (bug 966452)" - }, - "fixing_commit": { - "node": "aff86553457084994b767cb279df0779e4613b7f", - "pushdate": "2014-07-04 11:44:24", - "desc": "Backed out changeset 42f348168125 (bug 966452)" - } - }, - { - "bug_id": 1022612, - "inducing_commit": { - "node": "e5bacdd4594c4e86997ca37d417c1d2a92da55b2", - "pushdate": "2014-07-15 12:59:16", - "desc": "Bug 1022612. Part 1: Always pass a frame to AutoBuildingDisplayList. r=mattwoodrow" - }, - "backout_commit": { - "node": "17299e0f1029a10403113a0c8553725748861dec", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset e5bacdd4594c (bug 1022612) for bustage on a CLOSED TREE" - }, - "fixing_commit": { - "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset cc1776b2606d (bug 1022612)" - } - }, - { - "bug_id": 1022612, - "inducing_commit": { - "node": "4e502d50b8e1761e1d9fec4ed2ae7d2025b12166", - "pushdate": "2014-07-15 12:59:16", - "desc": "Bug 1022612. Part 2: Remove unused nsDisplayWrapList constructor. r=mattwoodrow" - }, - "backout_commit": { - "node": "10df1a89cdbd8f849a2e8f11543160147a5aabd2", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset 4e502d50b8e1 (bug 1022612)" - }, - "fixing_commit": { - "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset cc1776b2606d (bug 1022612)" - } - }, - { - "bug_id": 1022612, - "inducing_commit": { - "node": "18ffe0bb4d423f92be35a11d4bc4d09280ebb089", - "pushdate": "2014-07-15 12:59:16", - "desc": "Bug 1022612. Part 3: Rename \"cached frame\" to \"current frame\" in nsDisplayListBuilder and take advantage of the fact it's always set. r=mattwoodrow" - }, - "backout_commit": { - "node": "0b54a5aef1ab20d4c894cc1db211f17bfde2dc45", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset 18ffe0bb4d42 (bug 1022612)" - }, - "fixing_commit": { - "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset cc1776b2606d (bug 1022612)" - } - }, - { - "bug_id": 1022612, - "inducing_commit": { - "node": "cdaa916f6851fe278d16c48ce41b021c3cb8d421", - "pushdate": "2014-07-15 12:59:16", - "desc": "Bug 1022612. Part 4: Track current dirty rect in nsDisplayListBuilder. r=mattwoodrow\n\nWe need this to set the initial visible rect during display list construction.\nEventually we'll also be able to get rid of the dirty rect parameter to\nnsIFrame::BuildDisplayList." - }, - "backout_commit": { - "node": "2022db1bc58e3f9f3ce5a3f610c21b0a636cadfe", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset cdaa916f6851 (bug 1022612)" - }, - "fixing_commit": { - "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset cc1776b2606d (bug 1022612)" - } - }, - { - "bug_id": 1022612, - "inducing_commit": { - "node": "6d2fc524e961188e589a7a1bc15ec23be28d2d21", - "pushdate": "2014-07-15 12:59:16", - "desc": "Bug 1022612. Part 5: BuildDisplayListForExtraPage needs to pass the correct dirty rect in. r=mattwoodrow\n\nWhen printing, every page has the same origin. So doing this change naively\nwould result in the first page having all the display items for every page\nadded to it, and all but the first page's display items being pruned\naway by PruneDisplayListForExtraPage. This would making printing long documents\nvery slow. We avoid that problem with the new check for\nNS_FRAME_FORCE_DISPLAY_LIST_DESCEND_INTO, so the only pages other than the\ncurrent page we descend into are the ones with placeholders for abs-pos content\non the current page." - }, - "backout_commit": { - "node": "f365873fc32c12040c964fc4f4b9f006213ba167", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset 6d2fc524e961 (bug 1022612)" - }, - "fixing_commit": { - "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset cc1776b2606d (bug 1022612)" - } - }, - { - "bug_id": 1022612, - "inducing_commit": { - "node": "1ad096055f1d1d15a339fbe9e82edcf25a12ef74", - "pushdate": "2014-07-15 12:59:16", - "desc": "Bug 1022612. Part 6: Set the initial mVisibleRect for each display item to the dirty rect when we create the item. r=mattwoodrow" - }, - "backout_commit": { - "node": "3911f266ba7fb427a0dbcae47b4c54c59594dde0", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset 1ad096055f1d (bug 1022612)" - }, - "fixing_commit": { - "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset cc1776b2606d (bug 1022612)" - } - }, - { - "bug_id": 1022612, - "inducing_commit": { - "node": "b81f9a774059dd77b7ede60c5b656e1f3f9a0a6c", - "pushdate": "2014-07-15 12:59:16", - "desc": "Bug 1022612. Part 7: Enable APZC for IPC reftests. r=billm" - }, - "backout_commit": { - "node": "61e8bddfa22340e0d71c0feaa102d5ddc487ad5d", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset b81f9a774059 (bug 1022612)" - }, - "fixing_commit": { - "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset cc1776b2606d (bug 1022612)" - } - }, - { - "bug_id": 1022612, - "inducing_commit": { - "node": "5ebd2f6b65a6ca6553c587420210c4124bff76d3", - "pushdate": "2014-07-15 12:59:16", - "desc": "Bug 1022612. Part 8: nsDisplayWrapList (but not subclasses) should return true for ShouldFlattenAway. r=mattwoodrow\n\nAlso the assertion in TryMerge is going away because we're going to do TryMerge\nfirst in FrameLayerBuilder." - }, - "backout_commit": { - "node": "02f9978efef74d3c9ca96a0760ad28b3352f1509", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset 5ebd2f6b65a6 (bug 1022612)" - }, - "fixing_commit": { - "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset cc1776b2606d (bug 1022612)" - } - }, - { - "bug_id": 1022612, - "inducing_commit": { - "node": "e4e2a1dcadc8eb34ca162155534aa330c71efa26", - "pushdate": "2014-07-15 12:59:16", - "desc": "Bug 1022612. Part 9: nsDisplayScrollInfoLayer destructor does not need to destroy ScrollLayerCount. r=mattwoodrow\n\nGetting the timing of this right without processing display items in reverse\norder is hard. But it doesn't matter if this property sticks around anyway." - }, - "backout_commit": { - "node": "8eb056899512bc60a79f8d2ec871e5adef204b5b", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset e4e2a1dcadc8 (bug 1022612)" - }, - "fixing_commit": { - "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset cc1776b2606d (bug 1022612)" - } - }, - { - "bug_id": 1022612, - "inducing_commit": { - "node": "3bf33a32bfe0b3250acb3e4bfb68ae6525884c7b", - "pushdate": "2014-07-15 12:59:16", - "desc": "Bug 1022612. Part 10: Implement merging and flattening in ProcessDisplayItems. r=mattwoodrow\n\nBuildContainerLayerFor now has to be able to mutate the passed-in display item\nlist." - }, - "backout_commit": { - "node": "ca63ced85802827dcc4c3e9c55f5aecf66ada43d", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset 3bf33a32bfe0 (bug 1022612)" - }, - "fixing_commit": { - "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset cc1776b2606d (bug 1022612)" - } - }, - { - "bug_id": 1022612, - "inducing_commit": { - "node": "75fffcce9c4d66a33722673943b93abebae42e46", - "pushdate": "2014-07-15 12:59:16", - "desc": "Bug 1022612. Part 11: Set opaque flag on nsDisplayList if we find an opaque item that covers the whole list. r=mattwoodrow\n\nThis is less general than what nsDisplayItem::ComputeVisibility does. This means\nif multiple opaque items together cover the list bounds, but not individually,\nwe won't mark the list as opaque. I think that should be OK." - }, - "backout_commit": { - "node": "d469f5e7861ca2e31ec7cab7b8c7c8cec2d5e332", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset 75fffcce9c4d (bug 1022612)" - }, - "fixing_commit": { - "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset cc1776b2606d (bug 1022612)" - } - }, - { - "bug_id": 1022612, - "inducing_commit": { - "node": "cc140abf7b17677cd186c65d893887f5184f83e3", - "pushdate": "2014-07-15 12:59:16", - "desc": "Bug 1022612. Part 12: Propagate NeedsTransparentSurface in ProcessDisplayItems. r=mattwoodrow" - }, - "backout_commit": { - "node": "a88b23b616b0744f9f48ca14a30e041026d7c4b9", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset cc140abf7b17 (bug 1022612)" - }, - "fixing_commit": { - "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset cc1776b2606d (bug 1022612)" - } - }, - { - "bug_id": 1022612, - "inducing_commit": { - "node": "121bf69509b1ed83e8b8153f55ba5c6c6276c146", - "pushdate": "2014-07-15 12:59:16", - "desc": "Bug 1022612. Part 13: Set mDidComputeVisibility in ProcessDisplayItems. r=mattwoodrow" - }, - "backout_commit": { - "node": "fc50b7ecb9f88712457b2c2e5f64ced52b67674b", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset 121bf69509b1 (bug 1022612)" - }, - "fixing_commit": { - "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset cc1776b2606d (bug 1022612)" - } - }, - { - "bug_id": 1022612, - "inducing_commit": { - "node": "e95971991caa55a4f82570a47dce84ffb64e48f0", - "pushdate": "2014-07-15 12:59:16", - "desc": "Bug 1022612. Part 14: Don't compute a final transparent region anymore. r=mattwoodrow\n\nComputing this via FrameLayerBuilder is some work and we don't really have to.\n\nSuppressComponentAlpha will be true in more cases. This will be OK as long as\ntext in the chrome window is over opaque content in the same ThebesLayer. We\nwill miss some edge cases such as text in 'opacity' with no opaque background.\nThis should be OK." - }, - "backout_commit": { - "node": "db83c9131b1e453d7e1ec502921f65db17832cab", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset e95971991caa (bug 1022612)" - }, - "fixing_commit": { - "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset cc1776b2606d (bug 1022612)" - } - }, - { - "bug_id": 1022612, - "inducing_commit": { - "node": "c59ee68b19179b55cd9264817e6478698071e7a2", - "pushdate": "2014-07-15 12:59:16", - "desc": "Bug 1022612. Part 16: No need to exclude final transparent region from window opaque region. r=mattwoodrow\n\nThe removed code should be a no-op as long as the window opaque region is\naccurate enough." - }, - "backout_commit": { - "node": "bab3b499543e8a503cdfbe79107e97bb4c2080cd", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset c59ee68b1917 (bug 1022612)" - }, - "fixing_commit": { - "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset cc1776b2606d (bug 1022612)" - } - }, - { - "bug_id": 1022612, - "inducing_commit": { - "node": "549e3cb9e1118b1e26d48e3d637c961c51644380", - "pushdate": "2014-07-15 12:59:16", - "desc": "Bug 1022612. Part 17: RecordFrameMetrics should not set layer visible regions. r=mattwoodrow\n\nThis is unnecessary. FrameLayerBuilder sets the correct region." - }, - "backout_commit": { - "node": "96ab8745bcfb9e78a1f33de6112beea54a06c2a7", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset 549e3cb9e111 (bug 1022612)" - }, - "fixing_commit": { - "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset cc1776b2606d (bug 1022612)" - } - }, - { - "bug_id": 1022612, - "inducing_commit": { - "node": "376c45f4d905aff7b1f4161fd6bf8a52c7b286ba", - "pushdate": "2014-07-15 12:59:16", - "desc": "Bug 1022612. Part 18: When ComputeVisibility returns false, RecomputeVisibility should avoid painting the item. r=mattwoodrow" - }, - "backout_commit": { - "node": "572653d0538e1c41c35545ad09f780611cfc3c00", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset 376c45f4d905 (bug 1022612)" - }, - "fixing_commit": { - "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset cc1776b2606d (bug 1022612)" - } - }, - { - "bug_id": 1022612, - "inducing_commit": { - "node": "b4b6049145dcca3aef82b3514cf023d5c5b458b7", - "pushdate": "2014-07-15 12:59:16", - "desc": "Bug 1022612. Part 19: Test that merged display item lists merge their contents in the correct z-order. r=mattwoodrow\n\nPrior to this patch, the only tests that caught this were a couple of obscure\ncases on B2G. This test tests it on all platforms." - }, - "backout_commit": { - "node": "d43eac5bf947104a27af3a4d96d2a2fc3d4a285e", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset b4b6049145dc (bug 1022612)" - }, - "fixing_commit": { - "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset cc1776b2606d (bug 1022612)" - } - }, - { - "bug_id": 1022612, - "inducing_commit": { - "node": "2f6cb0f412f7e6bd0c76acf6820734f06b7ae640", - "pushdate": "2014-07-15 12:59:16", - "desc": "Bug 1022612. Part 20: Do the business. r=mattwoodrow" - }, - "backout_commit": { - "node": "702cc39137a1a52e7d1ff87cbf85e07810ed053d", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset 2f6cb0f412f7 (bug 1022612)" - }, - "fixing_commit": { - "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset cc1776b2606d (bug 1022612)" - } - }, - { - "bug_id": 1022612, - "inducing_commit": { - "node": "032ba47c66844cb8717ff954539e2707e655c178", - "pushdate": "2014-07-15 12:59:16", - "desc": "Bug 1022612. Part 21: Remove DidComputeVisibility checking. r=mattwoodrow" - }, - "backout_commit": { - "node": "33e5e2cf9d687d7c97a2e2b3f90573c070d4daf9", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset 032ba47c6684 (bug 1022612)" - }, - "fixing_commit": { - "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset cc1776b2606d (bug 1022612)" - } - }, - { - "bug_id": 1022612, - "inducing_commit": { - "node": "c081917e5626546ac07cbcaf0d377a1e015cd148", - "pushdate": "2014-07-15 12:59:16", - "desc": "Bug 1022612. Part 22: Add MOZ_COUNT_CTOR to nsDisplayWrapList. r=mattwoodrow" - }, - "backout_commit": { - "node": "f92a2745a979f42511840d17e97c35e8572b108c", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset c081917e5626 (bug 1022612)" - }, - "fixing_commit": { - "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset cc1776b2606d (bug 1022612)" - } - }, - { - "bug_id": 1022612, - "inducing_commit": { - "node": "f67228df9ae0dc097f80dc6fe9f10bbc58b5d852", - "pushdate": "2014-07-15 12:59:16", - "desc": "Bug 1022612. Part 23: Remove nsDisplayItem::IsVaryingRelativeToMovingFrame. r=mattwoodrow\n\nIt's obsolete and no-one calls it." - }, - "backout_commit": { - "node": "330e2f5330795fdb93bf06b0788f3f07f6f11fc5", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset f67228df9ae0 (bug 1022612)" - }, - "fixing_commit": { - "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset cc1776b2606d (bug 1022612)" - } - }, - { - "bug_id": 1022612, - "inducing_commit": { - "node": "f5ec6bcf251fc6f53ba7a235543399cfc4579c66", - "pushdate": "2014-07-15 12:59:16", - "desc": "Bug 1022612. Part 24: Simplify nsDisplayList::ComputeVisibilityForSublist now that FrameLayerBuilder does most of the work. r=mattwoodrow" - }, - "backout_commit": { - "node": "4aad800ab5d8126177553875bdfca172e3203d20", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset f5ec6bcf251f (bug 1022612)" - }, - "fixing_commit": { - "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset cc1776b2606d (bug 1022612)" - } - }, - { - "bug_id": 1022612, - "inducing_commit": { - "node": "79e0ce4662193e8acde253efffbe0088444b21c8", - "pushdate": "2014-07-15 12:59:16", - "desc": "Bug 1022612. Part 25: We don't need to explicitly worry about displayports anymore when computing occlusion. r=mattwoodrow" - }, - "backout_commit": { - "node": "438d855314ffea4a1fac46789060d1cab6dc4a20", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset 79e0ce466219 (bug 1022612)" - }, - "fixing_commit": { - "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset cc1776b2606d (bug 1022612)" - } - }, - { - "bug_id": 1022612, - "inducing_commit": { - "node": "f89950384bf2407cf6edd81e14f67e2c4351d8e3", - "pushdate": "2014-07-15 12:59:16", - "desc": "Bug 1022612. Part 26: nsDisplayList::mVisibleRect is no longer used. r=mattwoodrow" - }, - "backout_commit": { - "node": "9f403ca16d6efc2d63ac1ed339cf1d98702c62ee", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset f89950384bf2 (bug 1022612)" - }, - "fixing_commit": { - "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset cc1776b2606d (bug 1022612)" - } - }, - { - "bug_id": 1022612, - "inducing_commit": { - "node": "f9564f9f46488e95937b27c9dffeea3742f85670", - "pushdate": "2014-07-15 12:59:16", - "desc": "Bug 1022612. Part 27: Make FrameLayerBuilder responsible for setting all layer visible regions. r=mattwoodrow\n\nCalling Layer::SetVisibleRegion multiple times in a transaction can result in\nunnecessary IPC traffic.\n\nThis patch removes Intersect(childGfxBounds). This is only needed to\nrestrict the visible region to something sane for 3D transforms, and this will\nbe fixed up in a later patch." - }, - "backout_commit": { - "node": "80f5b926874132a0e741d618943481db53516fe0", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset f9564f9f4648 (bug 1022612)" - }, - "fixing_commit": { - "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset cc1776b2606d (bug 1022612)" - } - }, - { - "bug_id": 1022612, - "inducing_commit": { - "node": "c413b946dbc440645ec7308554ae3b3cdeb187c5", - "pushdate": "2014-07-15 12:59:16", - "desc": "Bug 1022612. Part 28: Make nsLayoutUtils::GetScrollableFrameFor return null for non-scrolled-frames. r=mattwoodrow" - }, - "backout_commit": { - "node": "69000c2fca489e4584db35315dd27baf3a1d6878", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset c413b946dbc4 (bug 1022612)" - }, - "fixing_commit": { - "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset cc1776b2606d (bug 1022612)" - } - }, - { - "bug_id": 1022612, - "inducing_commit": { - "node": "5e8625f91b68def08d922831912dd22d60996a91", - "pushdate": "2014-07-15 12:59:16", - "desc": "Bug 1022612. Part 29: Expose GetAnimatedGeometryRootForFrame. r=mattwoodrow" - }, - "backout_commit": { - "node": "4e37a22253404fc5375e02f1ec478aab2b50a3cc", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset 5e8625f91b68 (bug 1022612)" - }, - "fixing_commit": { - "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset cc1776b2606d (bug 1022612)" - } - }, - { - "bug_id": 1022612, - "inducing_commit": { - "node": "233345d8ffc6e8a8f81b458271537a57b3506c0e", - "pushdate": "2014-07-15 12:59:16", - "desc": "Bug 1022612. Part 30: Expose IsConstructingScrollLayerForScrolledFrame and IsDisplayPortOpaque on nsDisplayScrollLayer. r=mattwoodrow" - }, - "backout_commit": { - "node": "b605a83499c79f2d487a6ad96c3dc612fb9625b5", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset 233345d8ffc6 (bug 1022612)" - }, - "fixing_commit": { - "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset cc1776b2606d (bug 1022612)" - } - }, - { - "bug_id": 1022612, - "inducing_commit": { - "node": "f8b488c389e951842c1db4150859fe10d2098cb4", - "pushdate": "2014-07-15 12:59:16", - "desc": "Bug 1022612. Part 31: Perform layer-level occlusion culling in FrameLayerBuilder. r=mattwoodrow\n\nWe need this to avoid constructing and painting unncecessarily large\nThebesLayers." - }, - "backout_commit": { - "node": "066e949e61909fcea0fd1db5920dcfc9eab33582", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset f8b488c389e9 (bug 1022612)" - }, - "fixing_commit": { - "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset cc1776b2606d (bug 1022612)" - } - }, - { - "bug_id": 1022612, - "inducing_commit": { - "node": "21d141d01c979f777437809580acdcec72dc06d3", - "pushdate": "2014-07-15 12:59:16", - "desc": "Bug 1022612. Part 32: Remove nsDisplayItem::SetVisibleRegionOnLayer. r=mattwoodrow\n\nIt is no longer called because FrameLayerBuilder always sets the visible\nregions on layers now." - }, - "backout_commit": { - "node": "16db030a2bff9b6a7c0cb52bbff69b2231b3bfa1", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset 21d141d01c97 (bug 1022612)" - }, - "fixing_commit": { - "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset cc1776b2606d (bug 1022612)" - } - }, - { - "bug_id": 1022612, - "inducing_commit": { - "node": "7e9751c1302a7cf48228eaa0d9a2a88be95e93b2", - "pushdate": "2014-07-15 12:59:16", - "desc": "Bug 1022612. Part 33: Remove InFixedPos code. r=mattwoodrow\n\nThis hasn't been used for a while I guess." - }, - "backout_commit": { - "node": "c4de29a139bfd8d59ab03c6bdd1adbb1354f1361", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset 7e9751c1302a (bug 1022612)" - }, - "fixing_commit": { - "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset cc1776b2606d (bug 1022612)" - } - }, - { - "bug_id": 1022612, - "inducing_commit": { - "node": "6e190d419511e96b222fd7461fdb74b0e3a0dd88", - "pushdate": "2014-07-15 12:59:16", - "desc": "Bug 1022612. Part 34: Skip RecomputeVisibilityForItems in inactive layers. r=mattwoodrow\n\nRecomputeVisibilityForItems for the retained ThebesLayer already recomputes\nvisibility for all items in that layer, including items nested in other items." - }, - "backout_commit": { - "node": "e5807a2b482ec163f3f019306b4e8149355fb8c9", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset 6e190d419511 (bug 1022612)" - }, - "fixing_commit": { - "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset cc1776b2606d (bug 1022612)" - } - }, - { - "bug_id": 1022612, - "inducing_commit": { - "node": "1dd246b1436c0d8b201fb5b9beecfc142afe95e4", - "pushdate": "2014-07-15 12:59:16", - "desc": "Bug 1022612. Part 35: nsDisplayPluginReadback doesn't need to hack visible regions anymore. r=mattwoodrow\n\nOne nice bit of fallout from this bug is that handling plugin background\nreadback is simplified. We no longer have to fiddle with display item\nvisibility calculations; only layer occlusion culling has to know about\nreadback." - }, - "backout_commit": { - "node": "9547fa2b179ed4ca75e0514172177370e6444414", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset 1dd246b1436c (bug 1022612)" - }, - "fixing_commit": { - "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset cc1776b2606d (bug 1022612)" - } - }, - { - "bug_id": 1022612, - "inducing_commit": { - "node": "7e97b4516cbea2599be106695ba514793c7f22e3", - "pushdate": "2014-07-15 12:59:16", - "desc": "Bug 1022612. Part 36: Avoid redundant calls to ShouldPrerenderTransformedContent. r=mattwoodrow" - }, - "backout_commit": { - "node": "359000281f1dcf5fde83015461ac2ca461f84e4f", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset 7e97b4516cbe (bug 1022612)" - }, - "fixing_commit": { - "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset cc1776b2606d (bug 1022612)" - } - }, - { - "bug_id": 1022612, - "inducing_commit": { - "node": "3de27f6dcd31f45e2882e1ece261b0635bfe3e06", - "pushdate": "2014-07-15 12:59:16", - "desc": "Bug 1022612. Part 37: Remove aAllowVisibleRegionExpansion. r=mattwoodrow\n\nThis is no longer needed thanks to the readback simplification." - }, - "backout_commit": { - "node": "3fa59f8aa639ac08244c2b17579447ca0c3dd8c7", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset 3de27f6dcd31 (bug 1022612)" - }, - "fixing_commit": { - "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset cc1776b2606d (bug 1022612)" - } - }, - { - "bug_id": 1022612, - "inducing_commit": { - "node": "3773718e48702afca2740ea2bfb81304e1cfad23", - "pushdate": "2014-07-15 12:59:16", - "desc": "Bug 1022612. Part 38: Avoid test failure due to antialiased pixel leakage. r=mattwoodrow" - }, - "backout_commit": { - "node": "dcc9f1b202c0f73a380d788d76a2d0741b79c7a3", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset 3773718e4870 (bug 1022612)" - }, - "fixing_commit": { - "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset cc1776b2606d (bug 1022612)" - } - }, - { - "bug_id": 1022612, - "inducing_commit": { - "node": "6f857407b64e6c6cf79fba0906d3d9d782af2327", - "pushdate": "2014-07-15 12:59:16", - "desc": "Bug 1022612. Part 39: Add a little bit of reftest fuzzing. r=mattwoodrow" - }, - "backout_commit": { - "node": "ebf6185fafce3c71e087441dc3abe1d4bbb2b24d", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset 6f857407b64e (bug 1022612) for bustage on a CLOSED TREE" - }, - "fixing_commit": { - "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset cc1776b2606d (bug 1022612)" - } - }, - { - "bug_id": 1022612, - "inducing_commit": { - "node": "e6be65e455a2c99098c41b175c85c0ad4bb882fc", - "pushdate": "2014-07-15 12:59:16", - "desc": "Bug 1022612. Part 40: Restrict visible rect of 3D-transformed layers before converting to nsIntRect. r=mattwoodrow" - }, - "backout_commit": { - "node": "d3776838896d01b8dbf18e6b64e87353e655c053", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset e6be65e455a2 (bug 1022612)" - }, - "fixing_commit": { - "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset cc1776b2606d (bug 1022612)" - } - }, - { - "bug_id": 1022612, - "inducing_commit": { - "node": "5c1f3340c45f018d6653edfe0ddd7195bad28da2", - "pushdate": "2014-07-15 12:59:16", - "desc": "Bug 1022612. Part 41: Use itemType instead of calling GetType() again. r=mattwoodrow" + "node": "1395d2a596985cef64497bfff650560c7d8df869", + "pushdate": "2014-01-19 20:40:59", + "desc": "Bug 879668 - Part 1: Make CreateMutedFrame static. r=roc" }, "backout_commit": { - "node": "8121cd2778b55c79cc0e2db0d79ac7080ed08fa4", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset 5c1f3340c45f (bug 1022612)" + "node": "7b655cd5cce89a49d6e76e5da12c74561b88cf52", + "pushdate": "2014-01-19 20:40:59", + "desc": "Backed out changeset 1395d2a59698 (bug 879668) for landing without review." }, "fixing_commit": { - "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset cc1776b2606d (bug 1022612)" + "node": "ab65363c73e3ddd8b43c9458ef17e3a96eabefd7", + "pushdate": "2014-01-19 20:40:59", + "desc": "Bug 879668 - Part 2: Add utility function to convert codec data from OMX AVC/H.264 encoder for MP4 container writer. r=roc" } }, { - "bug_id": 1022612, + "bug_id": 789096, "inducing_commit": { - "node": "f12d7d68b685bb894d4f23efc6af638c789eb9e6", - "pushdate": "2014-07-15 12:59:16", - "desc": "Bug 1022612. Part 42: Add opaque regions of ThebesLayer content to the \"exclude glass\" region. r=mattwoodrow" + "node": "38b25d5e6cf93b3f7f781df32c01b436b5eb2b3e", + "pushdate": "2014-05-26 12:37:49", + "desc": "Add a WritingMode argument to nsHTMLReflowMetrics::ISize() and BSize(). Bug 789096, r=jfkthame" }, "backout_commit": { - "node": "2e46ba68c45a4ba082c7048ac5f7b3537505239c", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset f12d7d68b685 (bug 1022612)" + "node": "94af2dca5c0cdd14c8f34c0eded48b662349437e", + "pushdate": "2014-05-26 12:37:49", + "desc": "Backout 38b25d5e6cf9 because assertions" }, "fixing_commit": { - "node": "d0676370cba9ee1a0ef3341b19aedce857edb3c8", - "pushdate": "2014-07-15 12:59:16", - "desc": "Backed out changeset cc1776b2606d (bug 1022612)" + "node": "2d9924eaa36c8b47bebb25d7932fa97773825c6f", + "pushdate": "2014-06-06 01:31:27", + "desc": "Add a WritingMode argument to nsHTMLReflowMetrics::ISize() and BSize(). Bug 789096, r=jfkthame" } }, { - "bug_id": 1037100, + "bug_id": 949617, "inducing_commit": { - "node": "f341384014d40ce7e8855bb69a9a3adab485c297", - "pushdate": "2014-07-22 01:00:35", - "desc": "Bug 1037100 - Remove all use of ScopedDeleteArray from mozglue/. r=glandium" + "node": "daa9c46d19dc577fd034486dcd0b6003d0119beb", + "pushdate": "2014-06-25 01:13:54", + "desc": "Bug 949617 - Make the login manager work in e10s. r=dolske" }, "backout_commit": { - "node": "7ec6c6e1759bf902975a6f31f5b25ace77fa1c5d", - "pushdate": "2014-07-22 01:00:35", - "desc": "Back out f341384014d4, redness not trivially fixable. r=bustage affecting a CLOSED TREE" + "node": "6f291b1b47c79117c8d6bfa4a9b6227b8fe8872f", + "pushdate": "2014-06-25 01:13:54", + "desc": "Backed out 5 changesets (bug 993197, bug 949617, bug 995489, bug 1029128) for Android test failures.\n\nBacked out changeset 033d6271fd19 (bug 1029128)\nBacked out changeset f568b1dc9880 (bug 1029128)\nBacked out changeset daa9c46d19dc (bug 949617)\nBacked out changeset 2baf5c61cbf5 (bug 995489)\nBacked out changeset 654c1f0c88bc (bug 993197)" }, "fixing_commit": { - "node": "30e0030818354336dbd93108c35f7f836a7bad6b", - "pushdate": "2014-07-22 01:00:35", - "desc": "Backed out changeset edbc72909115 (bug 1037100) for build bustage on a CLOSED TREE" + "node": "8c1ee05fbbd6eabaaa438703b7018443a0e86fb3", + "pushdate": "2014-06-26 12:15:07", + "desc": "Bug 949617 - Make the login manager work in e10s. r=dolske" } }, { @@ -3492,57 +1764,21 @@ } }, { - "bug_id": 1009628, - "inducing_commit": { - "node": "249413f56629aa546da09374ab0710c53ff1f558", - "pushdate": "2014-08-06 12:34:50", - "desc": "Bug 1009628 - Part 1: Need mozAfterRemotePaint event for remote iframes. r=smaug." - }, - "backout_commit": { - "node": "135d84fc684be2e759f8c8305080e9e365a0ae89", - "pushdate": "2014-08-06 12:34:50", - "desc": "Backed out changeset 249413f56629 (bug 1009628) for causing permanent orange." - }, - "fixing_commit": { - "node": "604268a63c4f68ae8eb4b19f44cd756e2ca37479", - "pushdate": "2014-08-06 12:34:50", - "desc": "Backed out changeset 0366dfc36340 (bug 1009628)" - } - }, - { - "bug_id": 1009628, - "inducing_commit": { - "node": "3fb0e4bb67f52ce2ee62fa19788728e8cceceda0", - "pushdate": "2014-08-06 12:34:50", - "desc": "Bug 1009628 - Part 2: Asynchronous tab switching for tabbrowser that waits on MozAfterRemotePaint to fire from a remote browser. r=dao,Enn." - }, - "backout_commit": { - "node": "eb6854a81836972e35a1eefa2182e097157ffeca", - "pushdate": "2014-08-06 12:34:50", - "desc": "Backed out changeset 3fb0e4bb67f5 (bug 1009628)" - }, - "fixing_commit": { - "node": "604268a63c4f68ae8eb4b19f44cd756e2ca37479", - "pushdate": "2014-08-06 12:34:50", - "desc": "Backed out changeset 0366dfc36340 (bug 1009628)" - } - }, - { - "bug_id": 946065, + "bug_id": 1069421, "inducing_commit": { - "node": "4c4e45496cac9aed9b60898e42b91e341ea74c80", - "pushdate": "2014-08-07 03:31:37", - "desc": "Bug 946065 - Part 8: Move content/svg/ to dom/ and flatten subdirectories. r=jwatt" + "node": "942aec7a1572dca9e2f5ebecf84a879d0eb354b9", + "pushdate": "2014-11-11 21:49:17", + "desc": "Bug 1069421 - Add a memory graph to the timeline, r=pbrosset,paul" }, "backout_commit": { - "node": "8d97586ffcfca80adc6c3bafbba8ecfe1bf78a5c", - "pushdate": "2014-08-07 03:31:37", - "desc": "Backed out changeset 4c4e45496cac (bug 946065) for mochitest crashes on windows; CLOSED TREE" + "node": "8aa568ca5527eaa0a8537653b40dd039b5106668", + "pushdate": "2014-11-11 21:49:17", + "desc": "Backed out changeset 942aec7a1572 for mochitest-dt failures, r=me" }, "fixing_commit": { - "node": "8b65ed5b350703c6c79c289bdc947d70991ce894", - "pushdate": "2014-08-07 03:31:37", - "desc": "Backed out changeset d99f8aaeb32b (bug 946065)" + "node": "5e58c0e599649cb6134e59219533d5ada3464af4", + "pushdate": "2014-11-13 20:41:25", + "desc": "Bug 1069421 - Add a memory graph to the timeline, r=pbrosset,paul" } } ] From 0544b27e74c1f24641ed4e2b59249a069df275f6 Mon Sep 17 00:00:00 2001 From: Benjamin Mah Date: Mon, 6 May 2024 10:56:07 -0400 Subject: [PATCH 08/38] Deleted dataset --- dataset/backout_dataset.json | 1784 ---------------------------------- 1 file changed, 1784 deletions(-) delete mode 100644 dataset/backout_dataset.json diff --git a/dataset/backout_dataset.json b/dataset/backout_dataset.json deleted file mode 100644 index 4674bdb13a..0000000000 --- a/dataset/backout_dataset.json +++ /dev/null @@ -1,1784 +0,0 @@ -[ - { - "bug_id": 113934, - "inducing_commit": { - "node": "eb6fda3be5bb2bb7472207486f652ba8b5b8164b", - "pushdate": "2008-08-07 23:18:31", - "desc": "Bug 113934. Backend and some minimal front end for dragging tabs between windows. r=gavin, r+sr=jst" - }, - "backout_commit": { - "node": "a2dc95fcd0709d0b8f9942f3912a2197a5616323", - "pushdate": "2008-08-10 16:17:14", - "desc": "Backed out changeset eb6fda3be5bb" - }, - "fixing_commit": { - "node": "48191fdcf8a72d9c256dda6f26a9d7673caa3cb9", - "pushdate": "2008-08-11 08:39:31", - "desc": "Bug 113934. Backend and some minimal front end for dragging tabs between windows. r=gavin, r+sr=jst" - } - }, - { - "bug_id": 430061, - "inducing_commit": { - "node": "aaecc637558e29e625a6941328b12db5cc493e2c", - "pushdate": "2008-09-04 15:31:26", - "desc": "Bug 430061. Make imglib no longer use necko's memory cache, r/sr=stuart" - }, - "backout_commit": { - "node": "6cf712fd2a059c17686e45f33abe13ac41fd0bcb", - "pushdate": "2008-09-04 16:37:26", - "desc": "Backed out changeset aaecc637558e" - }, - "fixing_commit": { - "node": "44853b2a5fc227fe6cbac4e89ab5d44db14ee81e", - "pushdate": "2008-09-05 04:32:44", - "desc": "Bug 430061: Don't use necko's memory cache in imglib; r/sr=stuart,vlad,bz\n\n? .fast-update\n? _profile\n? _tests\n? obj-ff-debug\n? staticlib\n? README/.fast-update\n? browser/app/profile/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}/install.rdf\n? build/pgo/automation.py\n? build/pgo/profileserver.py\n? config/buildid\n? config/system_wrappers\n? content/base/test/TestNativeXMLHttpRequest\n? content/base/test/TestPlainTextSerializer\n? embedding/components/printingui/src/mac/printpde/build\n? gfx/thebes/public/.gfxContext.h.swp\n? gfx/thebes/test/gfxFontSelectionTest\n? gfx/thebes/test/gfxSurfaceRefCountTest\n? gfx/thebes/test/gfxTextRunPerfTest\n? gfx/thebes/test/gfxWordCacheTest\n? intl/uconv/tests/TestUConv\n? intl/uconv/tests/nsconv\n? intl/uconv/tests/plattest\n? intl/unicharutil/tests/NormalizationTest\n? js/src/host_jskwgen\n? js/src/jsautokw.h\n? layout/style/test/css_properties.js\n? layout/style/test/host_ListCSSProperties\n? layout/tools/reftest/autoconf.js\n? modules/libpr0n/src/.imgContainer.cpp.swp\n? modules/libpr0n/src/.imgLoader.cpp.swp\n? modules/libpr0n/src/.imgLoader.h.swp\n? modules/libpr0n/src/.imgRequestProxy.cpp.swp\n? modules/libpr0n/src/check-all-at-removal-time\n? modules/libpr0n/src/currpatch\n? modules/libpr0n/src/update-every-time\n? modules/plugin/samples/default/mac/build\n? netwerk/cache/src/.nsMemoryCacheDevice.cpp.swp\n? netwerk/dns/src/etld_data.inc\n? netwerk/test/ReadNTLM\n? netwerk/test/TestCookie\n? netwerk/test/TestIncrementalDownload\n? netwerk/test/TestOpen\n? netwerk/test/TestServ\n? netwerk/test/TestStreamLoader\n? netwerk/test/TestUDPSocketProvider\n? nsprpub/.fast-update\n? nsprpub/unallmakefiles\n? parser/htmlparser/robot/test/htmlrobot\n? parser/htmlparser/tests/grabpage/grabpage\n? parser/htmlparser/tests/html/TestParser\n? rdf/tests/triplescat/triplescat\n? storage/test/teststorage1\n? testing/mochitest/automation.py\n? testing/mochitest/automation.pyc\n? testing/mochitest/runtests.pl\n? testing/mochitest/runtests.py\n? testing/mochitest/ssltunnel/ssltunnel\n? toolkit/components/url-classifier/tests/TestUrlClassifierUtils\n? toolkit/crashreporter/client/crashreporter\n? toolkit/crashreporter/google-breakpad/src/tools/mac/dump_syms/dump_syms\n? toolkit/crashreporter/test/TestCrashReporterAPI\n? toolkit/library/XUL\n? toolkit/mozapps/update/src/nsUpdateService.js\n? toolkit/xre/platform.ini\n? tools/rb\n? tools/trace-malloc\n? widget/src/cocoa/libwidget.rsrc\n? xpcom/io/.nsStringStream.cpp.swp\n? xpcom/proxy/tests/proxy-create-threadsafety\n? xpcom/sample/program/nsTestSample\n? xpcom/tests/TestAutoPtr\n? xpcom/tests/TestExpirationTracker\n? xpcom/tests/TestHashtables\n? xpcom/tests/TestINIParser\n? xpcom/tests/TestPipe\n? xpcom/tests/TestProxies\n? xpcom/tests/TestRegistrationOrder\n? xpcom/tests/TestStorageStream\n? xpcom/tests/TestStringAPI\n? xpcom/tests/TestStrings\n? xpcom/tests/TestTArray\n? xpcom/tests/TestTextFormatter\n? xpcom/tests/TestThreadPool\n? xpcom/tests/TestVersionComparator\n? xpcom/tests/external/TestMinStringAPI\n? xpfe/bootstrap/appleevents/mozillaSuite.rsrc\nIndex: modules/libpr0n/build/nsImageModule.cpp\n===================================================================\nRCS file: /cvsroot/mozilla/modules/libpr0n/build/nsImageModule.cpp,v\nretrieving revision 1.20" - } - }, - { - "bug_id": 418538, - "inducing_commit": { - "node": "e7c6d7843e81e5151a2f8dc700eeb3d1a31bc95f", - "pushdate": "2008-09-11 02:36:51", - "desc": "Turning color management on by default - bug 418538. r=vlad\n\nAlso updating some reftests whose behavior changes with color management\nenabled - bug 453548. r=dolske" - }, - "backout_commit": { - "node": "00cb86eed32e92d934b20413b59d957a7e6a681b", - "pushdate": "2008-09-11 05:27:56", - "desc": "Backed out changeset e7c6d7843e81 due to linux reftest failures" - }, - "fixing_commit": { - "node": "b0aaf69e714ed57b5519e450480d0261e7ec6e1a", - "pushdate": "2008-09-12 01:48:55", - "desc": "Turning color management on by default for tagged images - bug 418538. r=vlad\n\nAlso updating some reftests whose behavior changes with color management\nenabled - bug 453548. r=dolske" - } - }, - { - "bug_id": 392870, - "inducing_commit": { - "node": "09a4e390e1ec3fc95e798fbeabba6f535a4c0888", - "pushdate": "2008-09-17 15:04:40", - "desc": "Bug 392870 - Easy discoverability of Tabbed Browsing for new users. r=gavin" - }, - "backout_commit": { - "node": "0b822f82a224f57633a42ded065f1ce36afef785", - "pushdate": "2008-09-17 15:07:08", - "desc": "Backed out changeset 09a4e390e1ec" - }, - "fixing_commit": { - "node": "26311b805c7ae137a8fc0728a0871aa2f4fadf4e", - "pushdate": "2008-09-17 15:07:40", - "desc": "Bug 392870 - Easy discoverability of Tabbed Browsing for new users. r=connor" - } - }, - { - "bug_id": 450452, - "inducing_commit": { - "node": "5986b4269d9dd1e68119cbf4a11d0d524c07b2b6", - "pushdate": "2008-09-25 02:48:15", - "desc": "Bug 450452 - \"Implement XHR ('minus X') for worker threads\". r+sr=jst." - }, - "backout_commit": { - "node": "7186e4c194ad0b20ed6bf14918d1aee9ef11c81e", - "pushdate": "2008-09-25 04:08:54", - "desc": "Backed out changeset 5986b4269d9d" - }, - "fixing_commit": { - "node": "85a89d00d9b3a1aeb6e81a58cce2dd3868fdf1cd", - "pushdate": "2008-09-30 23:57:07", - "desc": "Bug 450452 - 'Implement XHR (minus X) for worker threads. r+sr=jst'" - } - }, - { - "bug_id": 449159, - "inducing_commit": { - "node": "c7c42974317d4e0d0ed16d616e44cfc335824328", - "pushdate": "2008-09-25 04:25:50", - "desc": "Bug 449159 - Implement seeking in the Ogg backend - r+sr=roc" - }, - "backout_commit": { - "node": "24a7034e18801326ce0b85f97d8880654780db81", - "pushdate": "2008-09-25 07:37:53", - "desc": "Backed out changeset c7c42974317d" - }, - "fixing_commit": { - "node": "0051e26b159eb5ec314aab9092552a5d0e7e597f", - "pushdate": "2008-10-19 07:35:16", - "desc": "Bug 449159 - changes to liboggz required for seeking support" - } - }, - { - "bug_id": 449159, - "inducing_commit": { - "node": "62295a6ef00a0282efd16c7a6e15c498125b5fe7", - "pushdate": "2008-09-25 04:27:06", - "desc": "Bug 449159 - Part 2 of Ogg backend seeking implementation - s+sr=roc" - }, - "backout_commit": { - "node": "d61ed13cee76c319de58cc83b99a64ab9d2e9810", - "pushdate": "2008-09-25 07:37:53", - "desc": "Backed out changeset 62295a6ef00a" - }, - "fixing_commit": { - "node": "0051e26b159eb5ec314aab9092552a5d0e7e597f", - "pushdate": "2008-10-19 07:35:16", - "desc": "Bug 449159 - changes to liboggz required for seeking support" - } - }, - { - "bug_id": 449159, - "inducing_commit": { - "node": "efce2424d5b27d5800e9bc377eff4184420f41b9", - "pushdate": "2008-09-25 04:31:04", - "desc": "Bug 449159 - Tests for Ogg seeking - s+sr=roc" - }, - "backout_commit": { - "node": "41c1ed8021a65d69b622b84c5d24886f7e19a207", - "pushdate": "2008-09-25 07:37:53", - "desc": "Backed out changeset efce2424d5b2" - }, - "fixing_commit": { - "node": "0051e26b159eb5ec314aab9092552a5d0e7e597f", - "pushdate": "2008-10-19 07:35:16", - "desc": "Bug 449159 - changes to liboggz required for seeking support" - } - }, - { - "bug_id": 449159, - "inducing_commit": { - "node": "7d6f38ee5c9f9bb19ee13d966d7597c0b30f9fd2", - "pushdate": "2008-09-25 04:40:11", - "desc": "Bug 449159 - Fix build bustage due to nsIFrame::Invalidate signature change" - }, - "backout_commit": { - "node": "d3e23758232e52353563362a7f11a53c0793e434", - "pushdate": "2008-09-25 07:37:53", - "desc": "Backed out changeset 7d6f38ee5c9f" - }, - "fixing_commit": { - "node": "0051e26b159eb5ec314aab9092552a5d0e7e597f", - "pushdate": "2008-10-19 07:35:16", - "desc": "Bug 449159 - changes to liboggz required for seeking support" - } - }, - { - "bug_id": 465460, - "inducing_commit": { - "node": "f682453c06d06ac83b76a0f58fb868f76da37201", - "pushdate": "2008-12-26 01:26:36", - "desc": "Bug 465460 - TM: valueOf ignored on third iteration of loop (r=gal)." - }, - "backout_commit": { - "node": "5a26ec73cf0d3c0c8862a83e3be7f2c6ff3161f7", - "pushdate": "2008-12-26 01:26:36", - "desc": "Backed out changeset f682453c06d0. Failing scriptaculous unit tests, doesn't build on windows or mac ppc." - }, - "fixing_commit": { - "node": "ac84a530de97f38f53e6dd4a77c0eb58588ed7e6", - "pushdate": "2008-12-26 01:26:36", - "desc": "Bug 465460 - TM: valueOf ignored on third iteration of loop (r=gal)." - } - }, - { - "bug_id": 466080, - "inducing_commit": { - "node": "03bc3379822a8bf8811181582cefaa519cb0b1c3", - "pushdate": "2009-01-14 07:16:08", - "desc": "Bug 466080 - Make more things honor the LOAD_ANONYMOUS flag r=sicking,MisterSSL, sr=sicking" - }, - "backout_commit": { - "node": "4a49658eedc297676c28692a7370490d14efc590", - "pushdate": "2009-01-14 09:02:40", - "desc": "Backed out changeset 03bc3379822a" - }, - "fixing_commit": { - "node": "b8f7a4e057f84b6e9d09e911b94ce8d247866b57", - "pushdate": "2009-02-17 22:06:13", - "desc": "Bug 466080 - Make more things honor the LOAD_ANONYMOUS flag r=sicking,MisterSSL, sr=sicking" - } - }, - { - "bug_id": 477657, - "inducing_commit": { - "node": "6fa6667b903f025b95aa2d4942548bb404373a5f", - "pushdate": "2009-03-01 11:49:00", - "desc": "Bug 477657 - saner default handling for _closedTabs and sizemode. r=dietrich" - }, - "backout_commit": { - "node": "6b0f1081941b6ca7fcb02b9b4f42564fec224499", - "pushdate": "2009-03-02 22:56:21", - "desc": "Backed out changeset 6fa6667b903f" - }, - "fixing_commit": { - "node": "841e2745a834f067d0f3ab5ea401c334a078b108", - "pushdate": "2009-03-11 12:27:27", - "desc": "Bug 477657 - saner default handling for _closedTabs and sizemode. r=dietrich" - } - }, - { - "bug_id": 481881, - "inducing_commit": { - "node": "dac7c3176b331762557a4c3d74e32840cb002fe0", - "pushdate": "2009-03-11 02:28:01", - "desc": "Bug 481881 - use better template arguments for nsTArray after bug 474369, layout part r+sr=roc" - }, - "backout_commit": { - "node": "44cd744842422ca215443df7c86c7490686773ef", - "pushdate": "2009-03-11 04:09:25", - "desc": "backout dac7c3176b33 from bug 481881" - }, - "fixing_commit": { - "node": "7caeec7806331f7b553b4931727b785729c89783", - "pushdate": "2009-03-11 02:59:14", - "desc": "Remove extra closing parenthesis b=481881" - } - }, - { - "bug_id": 394759, - "inducing_commit": { - "node": "aa38257f674407600c305746454efeab6a6b3fc7", - "pushdate": "2009-04-23 12:56:49", - "desc": "Disable the tests for bug 394759 to see whether they're causing other test bustage." - }, - "backout_commit": { - "node": "f15e705a5f0a7f21fa3acf95120066390c063443", - "pushdate": "2009-04-23 13:30:10", - "desc": "Backed out changeset aa38257f6744, since the tests are not the problem" - }, - "fixing_commit": { - "node": "577393262a7c9f55fbb75b2415a17c34efe92e3f", - "pushdate": "2009-04-23 13:30:10", - "desc": "Fix the test orange from bug 394759. Thanks to D\u00e3o for pointing to the right code to change." - } - }, - { - "bug_id": 474369, - "inducing_commit": { - "node": "461d728271d182a4abca5d3e1383c6d62fc5094c", - "pushdate": "2009-05-19 09:20:22", - "desc": "Bug 474369 - get rid of nsVoidArray, remaining parts; r=bz, sr=dbaron" - }, - "backout_commit": { - "node": "0c1d882586cec6b9625227f20b3767b2501f2d6c", - "pushdate": "2009-05-19 12:53:09", - "desc": "Backed out changeset 461d728271d1" - }, - "fixing_commit": { - "node": "691dd3dcfbcadd47570db22a231a61b4752d46f5", - "pushdate": "2009-06-12 12:08:33", - "desc": "Bug 474369 - get rid of nsVoidArray, remaining parts; r=bz, sr=dbaron" - } - }, - { - "bug_id": 495385, - "inducing_commit": { - "node": "69c6dbdfd17954a71791016d71c3830ecce46a79", - "pushdate": "2009-06-13 09:39:05", - "desc": "Bug 495385. Text frames adjacent to block boundaries that contain only collapsible whitespace cannot affect layout, so don't create them. r+sr=bzbarsky" - }, - "backout_commit": { - "node": "43bba2afdbb81a0a1e6089ef5ca2418f9d041921", - "pushdate": "2009-06-13 12:18:51", - "desc": "Backed out changeset 69c6dbdfd179" - }, - "fixing_commit": { - "node": "c6c685aa0379927b3686b639d2f2cff5a008f62e", - "pushdate": "2009-06-23 21:40:35", - "desc": "Bug 495385. Text frames adjacent to block boundaries that contain only collapsible whitespace cannot affect layout, so don't create them. r+sr=bzbarsky" - } - }, - { - "bug_id": 371839, - "inducing_commit": { - "node": "92cc21ed9634d821354f33579b141b9fce0e8cd4", - "pushdate": "2009-07-10 02:17:16", - "desc": "Bug 371839. Treat \\n as space that the line-breaker will use as a word boundary. The main effect is that we don't have to scan backwards past \\n when looking for a place to start linebreaking. r=smontagu" - }, - "backout_commit": { - "node": "9defc0f5d5113b5046e059fd8610349f604858bb", - "pushdate": "2009-07-10 06:21:58", - "desc": "Backed out changeset 92cc21ed9634" - }, - "fixing_commit": { - "node": "a0b42fa6b477091e87a45a071eeac65c5c31241d", - "pushdate": "2009-07-27 01:03:51", - "desc": "Bug 371839. Remove useless SetSelected implementations. r=bzbarsky" - } - }, - { - "bug_id": 505591, - "inducing_commit": { - "node": "238e8b557e4fb30b3fcb450302f25da1a9012772", - "pushdate": "2009-08-25 16:53:43", - "desc": "Bug 505591: trace JSOP_NAME for returned closures, r=dvander" - }, - "backout_commit": { - "node": "72a50720cd40ce04047d1c80931079d9711eb52f", - "pushdate": "2009-08-25 16:53:43", - "desc": "Backed out changeset 238e8b557e4f: causing tjss orange" - }, - "fixing_commit": { - "node": "1f50f79db6e791849bdac381614e6b5b09119188", - "pushdate": "2009-09-16 23:16:27", - "desc": "Bug 505591: trace JSOP_NAME for returned closures, r=dvander" - } - }, - { - "bug_id": 497495, - "inducing_commit": { - "node": "e2927bb264129e21ef1e27c699707f06cef50c4d", - "pushdate": "2009-08-26 16:44:02", - "desc": "Bug 497495 part 3a: rationalize the queryframe-implementation macro naming scheme, restructure the implementation to detect duplicate entries, and a couple fixes to the frame ID enumeration. r=dbaron sr=roc\nBug 497495 part 3b: update users of queryframe macros (strictly mechanical change). r=dbaron" - }, - "backout_commit": { - "node": "f5cff6af5a6b5195e99b094241db00b6b643a4ec", - "pushdate": "2009-08-26 21:50:29", - "desc": "Backed out changeset e2927bb26412" - }, - "fixing_commit": { - "node": "7df4c375164fd13c2290e178f0e11dc5559b81b0", - "pushdate": "2009-09-12 16:50:04", - "desc": "Bug 497495 part 3: Add methods to every nsFrame subclass that expose the as-allocated identity of every frame object. Also some cleanups to the QueryFrame implementation. r=dbaron sr=roc" - } - }, - { - "bug_id": 295977, - "inducing_commit": { - "node": "72c1f97df4c6e5c8857d97e004ab7168ef15f399", - "pushdate": "2009-08-28 07:44:25", - "desc": "Bug 295977 - browser-chrome tests + non-multiple select fixup; r=neil@parkwaycc.co.uk" - }, - "backout_commit": { - "node": "1e5262ff9eff7793dc807ef5de0a438989c34a21", - "pushdate": "2009-08-28 18:46:12", - "desc": "Backed out changeset 72c1f97df4c6" - }, - "fixing_commit": { - "node": "c19711e6eef2965966942611f55b2faa37a7a651", - "pushdate": "2009-10-16 13:43:34", - "desc": "Bug 295977 - browser-chrome tests + non-multiple select fixup; r=neil@parkwaycc.co.uk" - } - }, - { - "bug_id": 515192, - "inducing_commit": { - "node": "3d7b55f16ec58d4b8603e73a671c27a792d80aca", - "pushdate": "2009-09-09 16:14:09", - "desc": "Bug 515192. Update cairo to 655a4dbc36d95ce4a82cbc13aa9e2002b41fa4de" - }, - "backout_commit": { - "node": "a52ca6a09ae71dbbcc772950a3feb62005e98c15", - "pushdate": "2009-09-09 18:31:41", - "desc": "Backed out changeset 3d7b55f16ec5" - }, - "fixing_commit": { - "node": "7a9262f6dbc05228a9e2f3e2d1fcf114d8e83d1c", - "pushdate": "2009-09-15 02:47:05", - "desc": "Bug 515192. Update cairo to 655a4dbc36d95ce4a82cbc13aa9e2002b41fa4de\n\nThis time without:\nc0e01d9cd71bd958e1b31a03cea4c08a1bdf4926 (Improve GC caching efficacy)" - } - }, - { - "bug_id": 495331, - "inducing_commit": { - "node": "9cc88d291fc0181c84c7ffcc6c6cad51d7723197", - "pushdate": "2009-10-07 06:47:58", - "desc": "Bug 495331: trace JSOP_LAMBDA for non-null, non-heavyweight case, r=jorendorff,igor" - }, - "backout_commit": { - "node": "8d540a2d2e4204ba7ad932aeec5eb9241888161e", - "pushdate": "2009-10-07 06:47:58", - "desc": "Backed out changeset 9cc88d291fc0" - }, - "fixing_commit": { - "node": "910ee7db07dee0d99855db1718567902eee54cf0", - "pushdate": "2010-01-31 16:36:36", - "desc": "Bug 495331: trace JSOP_LAMBDA for non-heavyweight, non-null closures, r=jorendorff,dvander" - } - }, - { - "bug_id": 500328, - "inducing_commit": { - "node": "dc7a04be6904be41a95c33d70ba5908c3b8a2fc0", - "pushdate": "2010-01-28 19:11:53", - "desc": "Bug 500328 - Implement History.pushState(), History.replaceState() methods. r=smaug, r=zpao, sr=sicking" - }, - "backout_commit": { - "node": "6d50455cabaa3c695ad6e23200782d0790d6d59d", - "pushdate": "2010-01-30 03:08:18", - "desc": "Backed out changeset dc7a04be6904 on suspicion of causing bug 543034." - }, - "fixing_commit": { - "node": "a2f4681188684698c5f7fb70e06b03f449dfc942", - "pushdate": "2010-02-01 22:56:30", - "desc": "Bug 500328 - Implement History.pushState(), History.replaceState() methods. r=smaug, r=zpao, sr=sicking" - } - }, - { - "bug_id": 461199, - "inducing_commit": { - "node": "3d8baa8213cf7b9d91a47be4b211ba3fd2f0a520", - "pushdate": "2010-02-17 22:38:03", - "desc": "Bug 461199 (Part 6) - nsSVGAElement::GetHrefURI is not implemented\nFixes nsSVGAElement::GetHrefURI so that it actually returns a URI when it is a\nlink instead of nsnull.\nr=jwatt" - }, - "backout_commit": { - "node": "2c510134fd7fb7e2923194fc2b3f8da3d30936ba", - "pushdate": "2010-02-18 18:30:33", - "desc": "Backed out changeset 3d8baa8213cf" - }, - "fixing_commit": { - "node": "c6567e3efafb6eb3c97c175accb8fcd1d87103d0", - "pushdate": "2010-02-20 01:24:42", - "desc": "bustage fix for Bug 461199: rename global var 'link' in test_IHistory.cpp to avoid bustage due to ambiguity w/ 'link()' function in unistd.h" - } - }, - { - "bug_id": 461199, - "inducing_commit": { - "node": "93eff7903e3468f92c3089cd5c9f25067fc29487", - "pushdate": "2010-02-17 22:38:03", - "desc": "Bug 461199 (Part 7) - mozilla::dom::Link should have a method to obtain a cached URI\nAdd mozilla::dom::Link::GetURI method used to cache the URI for this element.\nr=bz" - }, - "backout_commit": { - "node": "8d113ad738ad5199469a24c38be0722827320e02", - "pushdate": "2010-02-18 18:30:33", - "desc": "Backed out changeset 93eff7903e34" - }, - "fixing_commit": { - "node": "c6567e3efafb6eb3c97c175accb8fcd1d87103d0", - "pushdate": "2010-02-20 01:24:42", - "desc": "bustage fix for Bug 461199: rename global var 'link' in test_IHistory.cpp to avoid bustage due to ambiguity w/ 'link()' function in unistd.h" - } - }, - { - "bug_id": 461199, - "inducing_commit": { - "node": "06b691e8cbcd5de75114f6c20c75f69b7612ef4f", - "pushdate": "2010-02-17 22:38:03", - "desc": "Bug 461199 (Part 8) - Remove nsAttrValue::eLazyURIValue and related code\nStop using lazy href attributes in nsAttrValue. Link will store it as needed.\nr=sicking\nsr=bz" - }, - "backout_commit": { - "node": "08e109d08b07bbbbd9c67fee687ba064e607a450", - "pushdate": "2010-02-18 18:30:33", - "desc": "Backed out changeset 06b691e8cbcd" - }, - "fixing_commit": { - "node": "c6567e3efafb6eb3c97c175accb8fcd1d87103d0", - "pushdate": "2010-02-20 01:24:42", - "desc": "bustage fix for Bug 461199: rename global var 'link' in test_IHistory.cpp to avoid bustage due to ambiguity w/ 'link()' function in unistd.h" - } - }, - { - "bug_id": 461199, - "inducing_commit": { - "node": "6a2bef8d7020ef7950b991c7ca74d1a2febca2dd", - "pushdate": "2010-02-17 22:38:03", - "desc": "Bug 461199 (Part 9) - Move href helpers from nsGenericHTMLElement to mozilla::dom::Link.\nMove the helpers so that they can easily use the cached URI when available.\nr=sicking\nsr=bz" - }, - "backout_commit": { - "node": "1193c1cb4f924311163cbd6b99a8c247706d0715", - "pushdate": "2010-02-18 18:30:33", - "desc": "Backed out changeset 6a2bef8d7020" - }, - "fixing_commit": { - "node": "c6567e3efafb6eb3c97c175accb8fcd1d87103d0", - "pushdate": "2010-02-20 01:24:42", - "desc": "bustage fix for Bug 461199: rename global var 'link' in test_IHistory.cpp to avoid bustage due to ambiguity w/ 'link()' function in unistd.h" - } - }, - { - "bug_id": 461199, - "inducing_commit": { - "node": "f947b766de6f6173b0fe89689a821d76a1aef290", - "pushdate": "2010-02-17 22:38:03", - "desc": "Bug 461199 (Part 10) - Ensure that Link::ResetLinkState is always called when an element is bound or unbound from the DOM tree.\nWe would not be notified about base URI changes during this time, so we need to\nmake sure we are not registered and have no cached state.\nr=bz\nr=jwatt" - }, - "backout_commit": { - "node": "e41c0952019ab0f2df47af25f11f4a4a6cd4136f", - "pushdate": "2010-02-18 18:30:33", - "desc": "Backed out changeset f947b766de6f" - }, - "fixing_commit": { - "node": "c6567e3efafb6eb3c97c175accb8fcd1d87103d0", - "pushdate": "2010-02-20 01:24:42", - "desc": "bustage fix for Bug 461199: rename global var 'link' in test_IHistory.cpp to avoid bustage due to ambiguity w/ 'link()' function in unistd.h" - } - }, - { - "bug_id": 461199, - "inducing_commit": { - "node": "9d0cca7835223b1da31f9b7de46af8d28dbb7b2a", - "pushdate": "2010-02-17 22:38:03", - "desc": "Bug 461199 (Part 11) - [un]register in mozilla::dom::Link::[Reset]LinkState\nRegister with History in mozilla::dom::Link::LinkState and unregister in\nmozilla::dom::Link::RestLinkState.\nr=bz" - }, - "backout_commit": { - "node": "2ab9f860694786fd9cd8e079ebc99a74a6dd92de", - "pushdate": "2010-02-18 18:30:33", - "desc": "Backed out changeset 9d0cca783522" - }, - "fixing_commit": { - "node": "c6567e3efafb6eb3c97c175accb8fcd1d87103d0", - "pushdate": "2010-02-20 01:24:42", - "desc": "bustage fix for Bug 461199: rename global var 'link' in test_IHistory.cpp to avoid bustage due to ambiguity w/ 'link()' function in unistd.h" - } - }, - { - "bug_id": 461199, - "inducing_commit": { - "node": "cf4d10139ec00de48889d895430934330b94c649", - "pushdate": "2010-02-17 22:38:03", - "desc": "Bug 461199 (Part 12) - mozilla::dom::Link should unregister with mozilla::IHistory when it goes away\nCall UnregisterWithHistory in Link's destructor to ensure that we are no longer\nregistered with IHistory.\nr=sicking\nsr=bz" - }, - "backout_commit": { - "node": "294bceb886c83a0e2fafab4ce4211016db68797c", - "pushdate": "2010-02-18 18:30:33", - "desc": "Backed out changeset cf4d10139ec0" - }, - "fixing_commit": { - "node": "c6567e3efafb6eb3c97c175accb8fcd1d87103d0", - "pushdate": "2010-02-20 01:24:42", - "desc": "bustage fix for Bug 461199: rename global var 'link' in test_IHistory.cpp to avoid bustage due to ambiguity w/ 'link()' function in unistd.h" - } - }, - { - "bug_id": 461199, - "inducing_commit": { - "node": "3a3d576e3ac785f1cdb30a8044097435a04ee0a2", - "pushdate": "2010-02-17 22:38:03", - "desc": "Bug 461199 (Part 13) - mozilla::dom::Link::SetLinkState should inform the document about changes to its state when it is called.\nMake Link::SetLinkState notify the document about changes in state, plus a\nwhole bunch of assertions for sanity checking.\nr=sicking\nr=bz" - }, - "backout_commit": { - "node": "ff9017395943f2bd2da87b6bb4db5287c8977355", - "pushdate": "2010-02-18 18:30:33", - "desc": "Backed out changeset 3a3d576e3ac7" - }, - "fixing_commit": { - "node": "c6567e3efafb6eb3c97c175accb8fcd1d87103d0", - "pushdate": "2010-02-20 01:24:42", - "desc": "bustage fix for Bug 461199: rename global var 'link' in test_IHistory.cpp to avoid bustage due to ambiguity w/ 'link()' function in unistd.h" - } - }, - { - "bug_id": 461199, - "inducing_commit": { - "node": "8b82e1e256716c97189e179b83156284b6862680", - "pushdate": "2010-02-17 22:38:03", - "desc": "Bug 461199 (Part 14) - Implement nsIContent::IntrinsicState on mozilla::dom::Link subclasses\nAll mozilla::dom::Link subclasses need to implement IntrinsicState and make sure\nto call LinkState.\nr=sicking\nsr=bz" - }, - "backout_commit": { - "node": "8a4aef2c7c4f369296a4f3d2d01126e5df59bfa9", - "pushdate": "2010-02-18 18:30:33", - "desc": "Backed out changeset 8b82e1e25671" - }, - "fixing_commit": { - "node": "c6567e3efafb6eb3c97c175accb8fcd1d87103d0", - "pushdate": "2010-02-20 01:24:42", - "desc": "bustage fix for Bug 461199: rename global var 'link' in test_IHistory.cpp to avoid bustage due to ambiguity w/ 'link()' function in unistd.h" - } - }, - { - "bug_id": 461199, - "inducing_commit": { - "node": "bca0b6ed92e46e2fb40873feb7f548fb11976bdd", - "pushdate": "2010-02-17 22:38:03", - "desc": "Bug 461199 (Part 15) - Rely on nsIContent::IntrinsicState instead of nsIContent::GetLinkState in layout.\nLayout should call IntrinsicState instead of GetLinkState. Simplifies a lot of\nlogic, and makes the code easier to follow.\nr=bz\nsr=dbaron" - }, - "backout_commit": { - "node": "9fae9dc454729e6ecbb451a2e61e899ab40e272a", - "pushdate": "2010-02-18 18:30:33", - "desc": "Backed out changeset bca0b6ed92e4" - }, - "fixing_commit": { - "node": "c6567e3efafb6eb3c97c175accb8fcd1d87103d0", - "pushdate": "2010-02-20 01:24:42", - "desc": "bustage fix for Bug 461199: rename global var 'link' in test_IHistory.cpp to avoid bustage due to ambiguity w/ 'link()' function in unistd.h" - } - }, - { - "bug_id": 461199, - "inducing_commit": { - "node": "a3e287904065a149fd87b907fd5ba95f718aebf9", - "pushdate": "2010-02-17 22:38:03", - "desc": "Bug 461199 (Part 16) - Remove now unused style code testing for Link and HTML Links.\nr=bz\nsr=dbaron" - }, - "backout_commit": { - "node": "2ee7c5316c76602b89fc25e79d27587fbdbfeef0", - "pushdate": "2010-02-18 18:30:33", - "desc": "Backed out changeset a3e287904065" - }, - "fixing_commit": { - "node": "c6567e3efafb6eb3c97c175accb8fcd1d87103d0", - "pushdate": "2010-02-20 01:24:42", - "desc": "bustage fix for Bug 461199: rename global var 'link' in test_IHistory.cpp to avoid bustage due to ambiguity w/ 'link()' function in unistd.h" - } - }, - { - "bug_id": 461199, - "inducing_commit": { - "node": "af29773ebf660ab2b9d548f4c43694d3eb1eaf05", - "pushdate": "2010-02-17 22:38:03", - "desc": "Bug 461199 (Part 17) - Remove no longer needed code from webshell and docshell.\nr=bz\nsr=sicking" - }, - "backout_commit": { - "node": "10d593a6abe7fc486c00049fe2f269f8fca8c340", - "pushdate": "2010-02-18 18:30:33", - "desc": "Backed out changeset af29773ebf66" - }, - "fixing_commit": { - "node": "c6567e3efafb6eb3c97c175accb8fcd1d87103d0", - "pushdate": "2010-02-20 01:24:42", - "desc": "bustage fix for Bug 461199: rename global var 'link' in test_IHistory.cpp to avoid bustage due to ambiguity w/ 'link()' function in unistd.h" - } - }, - { - "bug_id": 461199, - "inducing_commit": { - "node": "1dac46a1218efd1a16fa87b632475fc53f009c80", - "pushdate": "2010-02-17 22:38:03", - "desc": "Bug 461199 (Part 18) - Need an observer notification to indicate when link status is known from the database\nAdds an observer to indicate when a URI lookup is completed and passes the\nvisited state with the notification. This greatly simplifies test writing.\nr=mak" - }, - "backout_commit": { - "node": "ddf7671d13385056207caa2b93f5fe84b7476ad7", - "pushdate": "2010-02-18 18:30:33", - "desc": "Backed out changeset 1dac46a1218e" - }, - "fixing_commit": { - "node": "c6567e3efafb6eb3c97c175accb8fcd1d87103d0", - "pushdate": "2010-02-20 01:24:42", - "desc": "bustage fix for Bug 461199: rename global var 'link' in test_IHistory.cpp to avoid bustage due to ambiguity w/ 'link()' function in unistd.h" - } - }, - { - "bug_id": 461199, - "inducing_commit": { - "node": "113cf8eec589b772490e5cc51ca8507dbececa22", - "pushdate": "2010-02-17 22:38:03", - "desc": "Bug 461199 (Part 19) - nsSVGAElement fails to call ResetLinkState in [Uns|S]etAttr\nHave nsSVGAelement implement UnsetAttr and SetAttr, and make sure it calls\nmozilla::dom::Link::ResetLinkState when appropriate.\nr=jwatt\nsr=bz" - }, - "backout_commit": { - "node": "272b50493ab053f153d6a7aa8dae2cc7785518e4", - "pushdate": "2010-02-18 18:30:33", - "desc": "Backed out changeset 113cf8eec589" - }, - "fixing_commit": { - "node": "c6567e3efafb6eb3c97c175accb8fcd1d87103d0", - "pushdate": "2010-02-20 01:24:42", - "desc": "bustage fix for Bug 461199: rename global var 'link' in test_IHistory.cpp to avoid bustage due to ambiguity w/ 'link()' function in unistd.h" - } - }, - { - "bug_id": 461199, - "inducing_commit": { - "node": "d03d64716ccd0629077c3c4dbf1d1ec56fd3f3a9", - "pushdate": "2010-02-17 22:38:03", - "desc": "Bug 461199 (Part 20) - Rewrite the private browsing visited link coloring test to make it work with the new async API\nr=mconnor\nr=sdwilsh\nr=bz" - }, - "backout_commit": { - "node": "7ac2e2bad75e47b059092ba18a264e2011a8a0e2", - "pushdate": "2010-02-18 18:30:33", - "desc": "Backed out changeset d03d64716ccd" - }, - "fixing_commit": { - "node": "c6567e3efafb6eb3c97c175accb8fcd1d87103d0", - "pushdate": "2010-02-20 01:24:42", - "desc": "bustage fix for Bug 461199: rename global var 'link' in test_IHistory.cpp to avoid bustage due to ambiguity w/ 'link()' function in unistd.h" - } - }, - { - "bug_id": 461199, - "inducing_commit": { - "node": "2eaaa58d2915e76708e669e07f38057091a6dce8", - "pushdate": "2010-02-17 22:38:03", - "desc": "Bug 461199 (Part 21) - Cache the nsIContent pointer in Link for performance reasons\nAdd a Content method that obtains a pointer to the nsIContent interface on\nmozilla::dom::Link. This is cached so we only have to call QueryInterface once\nduring the entire lifetime of the mozilla::dom::Link object.\nr=bz" - }, - "backout_commit": { - "node": "a05ba49538dc43e67fbfdb4adf8d9f4d8c803cb2", - "pushdate": "2010-02-18 18:30:33", - "desc": "Backed out changeset 2eaaa58d2915" - }, - "fixing_commit": { - "node": "c6567e3efafb6eb3c97c175accb8fcd1d87103d0", - "pushdate": "2010-02-20 01:24:42", - "desc": "bustage fix for Bug 461199: rename global var 'link' in test_IHistory.cpp to avoid bustage due to ambiguity w/ 'link()' function in unistd.h" - } - }, - { - "bug_id": 461199, - "inducing_commit": { - "node": "4b65b09154807116b0f7ea552851b7adbf86ce12", - "pushdate": "2010-02-17 22:38:03", - "desc": "Bug 461199 (Part 22) - Call ResetLinkState if given eLinkState_Unknown\nIf consumers tell mozilla::dom::Link::SetLinkState that its new state is\neLinkState_Unknown, call mozilla::dom::Link::ResetLinkState and return.\nr=bz" - }, - "backout_commit": { - "node": "b0e6ec8c5565d451bb50ccb22bb564b5cd150e40", - "pushdate": "2010-02-18 18:30:33", - "desc": "Backed out changeset 4b65b0915480" - }, - "fixing_commit": { - "node": "c6567e3efafb6eb3c97c175accb8fcd1d87103d0", - "pushdate": "2010-02-20 01:24:42", - "desc": "bustage fix for Bug 461199: rename global var 'link' in test_IHistory.cpp to avoid bustage due to ambiguity w/ 'link()' function in unistd.h" - } - }, - { - "bug_id": 461199, - "inducing_commit": { - "node": "b387c724bda4698656b21e7caafa8a91db6850dc", - "pushdate": "2010-02-17 22:38:03", - "desc": "Bug 461199 (Part 23) - Remove no longer needed code in ns[I]Document.[cpp|h]\nr=bz" - }, - "backout_commit": { - "node": "5bf5eaedf481858ff80e6430959735e75b2d7352", - "pushdate": "2010-02-18 18:30:33", - "desc": "Backed out changeset b387c724bda4" - }, - "fixing_commit": { - "node": "c6567e3efafb6eb3c97c175accb8fcd1d87103d0", - "pushdate": "2010-02-20 01:24:42", - "desc": "bustage fix for Bug 461199: rename global var 'link' in test_IHistory.cpp to avoid bustage due to ambiguity w/ 'link()' function in unistd.h" - } - }, - { - "bug_id": 461199, - "inducing_commit": { - "node": "26f7974bf6ef823fa96a6b00e95069134d348db2", - "pushdate": "2010-02-17 22:38:03", - "desc": "Bug 461199 (Part 24) - Update docshell tests to work with the new async isVisited API\nr=bz" - }, - "backout_commit": { - "node": "7313258e36fab1b1b2cb6483e756481583a0b15d", - "pushdate": "2010-02-18 18:30:33", - "desc": "Backed out changeset 26f7974bf6ef" - }, - "fixing_commit": { - "node": "c6567e3efafb6eb3c97c175accb8fcd1d87103d0", - "pushdate": "2010-02-20 01:24:42", - "desc": "bustage fix for Bug 461199: rename global var 'link' in test_IHistory.cpp to avoid bustage due to ambiguity w/ 'link()' function in unistd.h" - } - }, - { - "bug_id": 461199, - "inducing_commit": { - "node": "fa7f3d18510d9aea5805cc1e8d2eebcf1c84c2c6", - "pushdate": "2010-02-17 22:38:03", - "desc": "Bug 461199 (Part 25) - Fix layout reftests to work with the new async isVisited API\nr=jwatt" - }, - "backout_commit": { - "node": "4ba23b6e4b3d50aeb9c3281b447f0f995b6ac4fe", - "pushdate": "2010-02-18 18:30:33", - "desc": "Backed out changeset fa7f3d18510d" - }, - "fixing_commit": { - "node": "c6567e3efafb6eb3c97c175accb8fcd1d87103d0", - "pushdate": "2010-02-20 01:24:42", - "desc": "bustage fix for Bug 461199: rename global var 'link' in test_IHistory.cpp to avoid bustage due to ambiguity w/ 'link()' function in unistd.h" - } - }, - { - "bug_id": 461199, - "inducing_commit": { - "node": "1c37899b532ee7cf699ac3dd26921485f1abc515", - "pushdate": "2010-02-17 22:38:03", - "desc": "Bug 461199 (Part 28) - Tell the document that we are a style relevant link\nAdds the needed calls to inform the document if we are a style relevant link,\nand when we no longer are.\nr=bz" - }, - "backout_commit": { - "node": "1072173c59acbc1041352db720825023ba0e50c1", - "pushdate": "2010-02-18 18:30:33", - "desc": "Backed out changeset 1c37899b532e" - }, - "fixing_commit": { - "node": "c6567e3efafb6eb3c97c175accb8fcd1d87103d0", - "pushdate": "2010-02-20 01:24:42", - "desc": "bustage fix for Bug 461199: rename global var 'link' in test_IHistory.cpp to avoid bustage due to ambiguity w/ 'link()' function in unistd.h" - } - }, - { - "bug_id": 461199, - "inducing_commit": { - "node": "2bd2f67e8f5e2c0f01f0d5537673c95a348afcad", - "pushdate": "2010-02-17 22:38:03", - "desc": "Bug 461199 (Part 26) - Update content tests to work with the new async isVisited API" - }, - "backout_commit": { - "node": "ef33df18ff0e3e18f44f893ddea9729cdb495e2f", - "pushdate": "2010-02-18 18:30:33", - "desc": "Backed out changeset 2bd2f67e8f5e" - }, - "fixing_commit": { - "node": "c6567e3efafb6eb3c97c175accb8fcd1d87103d0", - "pushdate": "2010-02-20 01:24:42", - "desc": "bustage fix for Bug 461199: rename global var 'link' in test_IHistory.cpp to avoid bustage due to ambiguity w/ 'link()' function in unistd.h" - } - }, - { - "bug_id": 461199, - "inducing_commit": { - "node": "b0c9f8e500573ce8cae005c08216a42ead29ced9", - "pushdate": "2010-02-17 22:38:03", - "desc": "Bug 461199 (Part 27) - Fix test_visited_pref.html so it passes with the new async isVisited API\nr?dbaron" - }, - "backout_commit": { - "node": "be7abf642e28e1347dcdd03788f8c74ead3a00ed", - "pushdate": "2010-02-18 18:30:33", - "desc": "Backed out changeset b0c9f8e50057" - }, - "fixing_commit": { - "node": "c6567e3efafb6eb3c97c175accb8fcd1d87103d0", - "pushdate": "2010-02-20 01:24:42", - "desc": "bustage fix for Bug 461199: rename global var 'link' in test_IHistory.cpp to avoid bustage due to ambiguity w/ 'link()' function in unistd.h" - } - }, - { - "bug_id": 542592, - "inducing_commit": { - "node": "018b79b00cacb45c3bfc00aae7e99781f1bb9aa0", - "pushdate": "2010-02-17 22:38:03", - "desc": "Bug 542592 - Change how we use/store nsDocument::mLinkMap\nThis makes changes nsDocument::mLinkMap in a number of ways:\n1) renamed to mStyledLinks to better reflect its new nature.\n2) change it to an nsTHashtable of Link*. It no longer has a strong reference\n3) add some assertions to make sure we call ForgetLink and AddStyleRelevantLink\n in pairs.\nThis also makes mozilla::dom::Link::ResetLinkState take a boolean indicating if\nwe should notify or not.\nr=bz" - }, - "backout_commit": { - "node": "fe54a627f26489dcb0cb8ee9d4c042f68152a6fd", - "pushdate": "2010-02-18 18:30:33", - "desc": "Backed out changeset 018b79b00cac" - }, - "fixing_commit": { - "node": "40f19060d4c59683c40408f808adee2e91d1c35d", - "pushdate": "2010-02-24 17:05:48", - "desc": "Bug 542592 - Change how we use/store nsDocument::mLinkMap\nThis makes changes nsDocument::mLinkMap in a number of ways:\n1) renamed to mStyledLinks to better reflect its new nature.\n2) change it to an nsTHashtable of Link*. It no longer has a strong reference\n3) add some assertions to make sure we call ForgetLink and AddStyleRelevantLink\n in pairs.\nThis also makes mozilla::dom::Link::ResetLinkState take a boolean indicating if\nwe should notify or not.\nr=bz" - } - }, - { - "bug_id": 542632, - "inducing_commit": { - "node": "42bf809ee4139db521da9a8b620a04d9774e3a62", - "pushdate": "2010-02-17 22:38:03", - "desc": "Bug 542632 - Protect nsGenericHTMLElement::GetHrefURIForAnchors\nAlso makes DNS prefetching take mozilla::dom::Link instead of nsIContent.\nr=bz" - }, - "backout_commit": { - "node": "988eb5f4836715178716d5e60c9fc32f027fbb23", - "pushdate": "2010-02-18 18:30:33", - "desc": "Backed out changeset 42bf809ee413" - }, - "fixing_commit": { - "node": "2777f7baaaad4a40773b4030c317294b91c16b65", - "pushdate": "2010-02-24 17:05:48", - "desc": "Bug 542632 - Protect nsGenericHTMLElement::GetHrefURIForAnchors\nAlso makes DNS prefetching take mozilla::dom::Link instead of nsIContent.\nr=bz" - } - }, - { - "bug_id": 461199, - "inducing_commit": { - "node": "5607b8b76949e4a1c84cbc766367cbd9e0fdbedc", - "pushdate": "2010-02-17 22:38:03", - "desc": "Bug 461199 (Part 29) - Fix dom tests.\nr=sicking" - }, - "backout_commit": { - "node": "fec999d5f66684f208eae549a0cb307d0cad8676", - "pushdate": "2010-02-18 18:30:33", - "desc": "Backed out changeset 5607b8b76949" - }, - "fixing_commit": { - "node": "c6567e3efafb6eb3c97c175accb8fcd1d87103d0", - "pushdate": "2010-02-20 01:24:42", - "desc": "bustage fix for Bug 461199: rename global var 'link' in test_IHistory.cpp to avoid bustage due to ambiguity w/ 'link()' function in unistd.h" - } - }, - { - "bug_id": 461199, - "inducing_commit": { - "node": "550a4379468fe8ed06d39a220cf6769710142a89", - "pushdate": "2010-02-17 22:38:03", - "desc": "Bug 461199 (Part 30) - Fixes invalidation issues when changing the href attribute.\nr=bz" - }, - "backout_commit": { - "node": "5097032775f48cb3d42996f92aeec21cc1a02bcc", - "pushdate": "2010-02-18 18:30:33", - "desc": "Backed out changeset 550a4379468f" - }, - "fixing_commit": { - "node": "c6567e3efafb6eb3c97c175accb8fcd1d87103d0", - "pushdate": "2010-02-20 01:24:42", - "desc": "bustage fix for Bug 461199: rename global var 'link' in test_IHistory.cpp to avoid bustage due to ambiguity w/ 'link()' function in unistd.h" - } - }, - { - "bug_id": 221820, - "inducing_commit": { - "node": "70b1ccb14325c4c1c52347eec9968baab74a5a12", - "pushdate": "2010-02-18 20:27:20", - "desc": "Bug 221820 - Part 1: Call EnsureEditorInitialized from all places where editor needs to exist; r=bzbarsky" - }, - "backout_commit": { - "node": "03a61f4254a3f9d6da20514c32e9537c0145c5d1", - "pushdate": "2010-02-19 00:06:37", - "desc": "Backed out changeset 70b1ccb14325" - }, - "fixing_commit": { - "node": "0a2f12f042446fa718dda3ebab4061872650f2ef", - "pushdate": "2010-04-06 20:46:58", - "desc": "Bug 221820 - Part 1: Call EnsureEditorInitialized from all places where editor needs to exist; r=bzbarsky" - } - }, - { - "bug_id": 253889, - "inducing_commit": { - "node": "4b8936ac4a314150498aade04c074e20930017bf", - "pushdate": "2010-03-28 23:22:05", - "desc": "Bug 253889: More deCOMtamination of nsIPresShell. r=roc" - }, - "backout_commit": { - "node": "9ba741f58e4f330983955d58586ee41c05372147", - "pushdate": "2010-03-30 23:58:01", - "desc": "Backed out changeset 4b8936ac4a31" - }, - "fixing_commit": { - "node": "14e0caf9f9c3a8a7241049f2e23ae5569199d216", - "pushdate": "2010-03-31 13:01:40", - "desc": "Bug 253889: DeCOMtaminate nsIPresShell - make some methods const. r=roc" - } - }, - { - "bug_id": 253889, - "inducing_commit": { - "node": "90a30ea68797df6e64b029477106cd9ba163a08f", - "pushdate": "2010-03-28 23:57:34", - "desc": "Bug 253889: Windows bustage fix." - }, - "backout_commit": { - "node": "68b78595d5e5550684c18d5754bea795ba9e92e6", - "pushdate": "2010-03-30 23:58:01", - "desc": "Backed out changeset 90a30ea68797" - }, - "fixing_commit": { - "node": "14e0caf9f9c3a8a7241049f2e23ae5569199d216", - "pushdate": "2010-03-31 13:01:40", - "desc": "Bug 253889: DeCOMtaminate nsIPresShell - make some methods const. r=roc" - } - }, - { - "bug_id": 542605, - "inducing_commit": { - "node": "9480726de986979132443714b9f9d6e89f0b4720", - "pushdate": "2010-04-08 03:13:24", - "desc": "Bug 542605. Update cairo to 12d521df8acc483b2daa844d4f05dc2fe2765ba6. r=vlad,jwatt,bas\n\nReland after fixing quartz related clipping bug." - }, - "backout_commit": { - "node": "733e8efbaf26d971261753110a4ce482d6b8524b", - "pushdate": "2010-04-08 13:45:18", - "desc": "Backed out changeset 9480726de986\n\nRendering/Invalidation problems showed up." - }, - "fixing_commit": { - "node": "1ae178ed2e2006ba065a2c0e803ec168b924f403", - "pushdate": "2010-04-16 14:49:54", - "desc": "Bug 542605. Add a test for a clipping problem shown by the cairo update." - } - }, - { - "bug_id": 545632, - "inducing_commit": { - "node": "85335f212ac3e5211e2d64b4b4294ce4297a95ab", - "pushdate": "2010-06-11 04:40:13", - "desc": "Bug 545632 - Add 16bpp format support for cairo image surface type. r=jmuizelaar" - }, - "backout_commit": { - "node": "ef1a401774530fa9a91a7b6a7196e8ffe049d9ed", - "pushdate": "2010-06-11 07:38:37", - "desc": "Backed out changeset 85335f212ac3, attempt to fix oranges" - }, - "fixing_commit": { - "node": "2c8fee6f7f533dc6132b5d17a0bd2848f812404c", - "pushdate": "2010-06-11 19:48:36", - "desc": "Bug 545632 - Add 16bpp format support for cairo image surface type. r=jmuizelaar" - } - }, - { - "bug_id": 545632, - "inducing_commit": { - "node": "2959eddcd018a727398f249432abaa47157710a3", - "pushdate": "2010-06-11 04:40:13", - "desc": "Bug 545632 - Add 16bpp format support enabler. r=jmuizelaar" - }, - "backout_commit": { - "node": "1c935e7bb91a4142002f1c7ec065199bfacff250", - "pushdate": "2010-06-11 07:38:37", - "desc": "Backed out changeset 2959eddcd018, to fix oranges" - }, - "fixing_commit": { - "node": "2c8fee6f7f533dc6132b5d17a0bd2848f812404c", - "pushdate": "2010-06-11 19:48:36", - "desc": "Bug 545632 - Add 16bpp format support for cairo image surface type. r=jmuizelaar" - } - }, - { - "bug_id": 550936, - "inducing_commit": { - "node": "c8dc4dd369ee9b8668685d3a2011473cde7390f1", - "pushdate": "2010-08-16 20:43:55", - "desc": "Bug 550936 - Make InstallTrigger support cross-process communication r=Mossop a=blocking-beta4+,blocking-fennec2.0a1+" - }, - "backout_commit": { - "node": "fafc537889901eff93e3a287bbbeb646e6764684", - "pushdate": "2010-08-17 05:10:33", - "desc": "Backed out changeset c8dc4dd369ee" - }, - "fixing_commit": { - "node": "3d4ba021c4dd91c2691431635dba6e05910016fc", - "pushdate": "2010-08-18 03:24:45", - "desc": "Bug 550936 - Make InstallTrigger support cross-process communication r=Mossop a=blocking-beta4+,blocking-fennec2.0a1+" - } - }, - { - "bug_id": 584615, - "inducing_commit": { - "node": "96b74fec2915294ec65b8ed489b6503dc10c130b", - "pushdate": "2010-09-11 05:50:23", - "desc": "Bug 584615 - Make media progress events be 'simple' Events, not 'progress' Events - r=roc,cpearce,dolske,kinetik a=blocking2.0" - }, - "backout_commit": { - "node": "f085aacfb4d201d974c72885a9ad9261d89bdcca", - "pushdate": "2010-09-11 09:19:34", - "desc": "Backed out changeset 96b74fec2915" - }, - "fixing_commit": { - "node": "3da55bab77965d879d6e43134ae47919f71fd740", - "pushdate": "2010-09-14 05:24:25", - "desc": "Bug 584615 - Make media progress events be 'simple' Events, not 'progress' Events - r=roc,cpearce,dolske,kinetik a=blocking2.0" - } - }, - { - "bug_id": 464398, - "inducing_commit": { - "node": "963d95181b4beab18bdca39bdfcb84f87faf404c", - "pushdate": "2010-09-11 05:50:23", - "desc": "Bug 464398 - Stop HTML media elements from firing events in bfcache - r=roc a=blocking2.0" - }, - "backout_commit": { - "node": "ebf786d2bcd5d8997fea5373629701d60aa2fceb", - "pushdate": "2010-09-11 09:19:34", - "desc": "Backed out changeset 963d95181b4b" - }, - "fixing_commit": { - "node": "33f5bd4797359ee632d739c76af957cfa2d5cdd2", - "pushdate": "2010-09-14 05:24:25", - "desc": "Bug 464398 - Stop HTML media elements from firing events in bfcache - r=roc a=blocking2.0" - } - }, - { - "bug_id": 571822, - "inducing_commit": { - "node": "3d42767d964ddb7bad16648289b0fe3eced7b097", - "pushdate": "2010-09-11 05:50:23", - "desc": "Bug 571822 - Fire timeupdate event less frequently than once per frame - r=kinetik a=blocking2.0" - }, - "backout_commit": { - "node": "e29874ead8b3b57b0045ff07bdf43fbd5c778f12", - "pushdate": "2010-09-11 09:19:34", - "desc": "Backed out changeset 3d42767d964d" - }, - "fixing_commit": { - "node": "7aab2563411442606053043d5f217327202be35f", - "pushdate": "2010-09-14 05:24:25", - "desc": "Bug 571822 - Fire timeupdate event less frequently than once per frame - r=kinetik a=blocking2.0" - } - }, - { - "bug_id": 594821, - "inducing_commit": { - "node": "6714a0c929d43948a936926243dcd085ae705427", - "pushdate": "2010-10-18 14:24:44", - "desc": "Bug 594821 - Trigger a sync paint on intial window show. r=roc, a=final." - }, - "backout_commit": { - "node": "7e705944dee373f6a0a5e03e85bb9faad2274876", - "pushdate": "2010-10-18 17:53:03", - "desc": "Backout changeset 6714a0c929d4 due to paint assertions, a=bustage." - }, - "fixing_commit": { - "node": "fc87245c91c0c0017d47206e20a60cb10e38e781", - "pushdate": "2011-02-09 22:38:13", - "desc": "Bug 594821 - Sync update top level windows when they are first shown. r=roc, a=final." - } - }, - { - "bug_id": 609976, - "inducing_commit": { - "node": "53952ab4a5449cf7455cf63a21016e93053f6736", - "pushdate": "2010-11-22 00:42:01", - "desc": "Bug 609976: Fold js back into libxul on Windows now that PGO seems less grumpy. r=ted a=ted" - }, - "backout_commit": { - "node": "e5bb8cabb5e904a3411fdc7b6dad11e5f6e58f43", - "pushdate": "2010-11-22 15:59:30", - "desc": "Backed out changeset 53952ab4a544" - }, - "fixing_commit": { - "node": "a758ca998666c4c3f385ad2b69a393ebf09d5f32", - "pushdate": "2014-10-17 14:25:58", - "desc": "Bug 609976 - Fold mozjs.dll back into xul.dll. r=ehsan" - } - }, - { - "bug_id": 632781, - "inducing_commit": { - "node": "f3d13890fbe34902c093950ca80a20e61e2a5f7c", - "pushdate": "2011-02-15 16:40:39", - "desc": "Bug 632781 - Scroll non-accelerated canvases correctly with the content; r=matt,joe,roc a=blocking-betaN" - }, - "backout_commit": { - "node": "9ed6bef2a9aca99ff8a9dae5a6fefb424e3191a7", - "pushdate": "2011-02-15 18:32:33", - "desc": "Back out changeset f3d13890fbe3 because of Windows reftest orange; a=orange" - }, - "fixing_commit": { - "node": "b6dc8964dea823ede0cb5d54ff42f211abab4a28", - "pushdate": "2011-02-15 19:49:53", - "desc": "Bug 632781 - Scroll non-accelerated canvases correctly with the content; r=matt,joe,roc a=blocking-betaN" - } - }, - { - "bug_id": 610305, - "inducing_commit": { - "node": "c1a7c1bc1aebf0c45092426dfc317b9105238a5b", - "pushdate": "2011-04-21 08:13:26", - "desc": "Bug 610305: decom nsEventStateManager r=smaug" - }, - "backout_commit": { - "node": "be6f4759e82736e21e24e46d22701e7d90a71f91", - "pushdate": "2011-04-21 08:13:26", - "desc": "Backed out changeset c1a7c1bc1aeb due to busted build." - }, - "fixing_commit": { - "node": "aaa99fe3ee29e21313a574dc9795d2ab825dc0e3", - "pushdate": "2011-04-22 13:27:10", - "desc": "Bug 610305: decom nsEventStateManager r=smaug" - } - }, - { - "bug_id": 650723, - "inducing_commit": { - "node": "d34dd7156b4dd893a20cb0dc8c4c97ec8f5098a9", - "pushdate": "2011-05-09 05:59:46", - "desc": "Bug 650723. Add ClearType parameter data to about:support. r=gavin,jrmuizel" - }, - "backout_commit": { - "node": "34e7b390a99bd4cf400171c42cd2161cac46eab1", - "pushdate": "2011-05-09 06:25:30", - "desc": "Backed out changeset d34dd7156b4d" - }, - "fixing_commit": { - "node": "0ed4f22648e3e1811f84223e5cbea0cf1ad4bfcc", - "pushdate": "2011-05-11 00:34:01", - "desc": "Bug 650723. Add ClearType parameter data to about:support. r=gavin,jrmuizel" - } - }, - { - "bug_id": 668953, - "inducing_commit": { - "node": "57446cb82caaa789542c3c90c767d8eb8f15bd4a", - "pushdate": "2011-08-06 09:36:25", - "desc": "Bug 668953 - [10.7] Support new back/forward gestures in OSX Lion; r=smichaud" - }, - "backout_commit": { - "node": "9c74f840758b8dca339d7b265e7c4f3ad40e8d3f", - "pushdate": "2011-08-06 09:36:25", - "desc": "Backout changesets 57446cb82caa, 1c136ef5cac2 due to Tp5 regression on OSX." - }, - "fixing_commit": { - "node": "1ca50e8b3d3780837065b31bae3fc75cc7ef3da5", - "pushdate": "2011-08-08 12:19:50", - "desc": "Bug 668953 - [10.7] Support new back/forward gestures in OSX Lion; r=smichaud" - } - }, - { - "bug_id": 672756, - "inducing_commit": { - "node": "884efa9dcbf9895c228e46bff9881dc428e124aa", - "pushdate": "2011-08-15 14:34:51", - "desc": "Bug 672756 - Allow to populate startupcache on xulrunner applications built with the SDK. r=ted" - }, - "backout_commit": { - "node": "22af0a57b683f4be8a8f128107bb5ccb33db36f4", - "pushdate": "2011-08-15 14:34:51", - "desc": "Backed out changeset 884efa9dcbf9 due to OSX debug orange" - }, - "fixing_commit": { - "node": "85b5d609a73cddbf7f09e4b708266975c24e7731", - "pushdate": "2011-08-16 10:55:53", - "desc": "Bug 672756 - Allow to populate startupcache on xulrunner applications built with the SDK. r=ted" - } - }, - { - "bug_id": 685258, - "inducing_commit": { - "node": "8e9aea2febedf77752562fd7ab21ddccfae022ea", - "pushdate": "2011-09-08 20:54:46", - "desc": "Bug 685258 - Pulse audio backend does not check provided playback and crashes r=derf" - }, - "backout_commit": { - "node": "f4e1e9d38bc0b80983ca2fecd0c20f45360308b7", - "pushdate": "2011-09-08 20:54:46", - "desc": "Backout changesets 8e9aea2febed, 604544452285 and 9f150c4e1a48 because of Mac OS X 32-bit reftest orange" - }, - "fixing_commit": { - "node": "8e9aea2febedf77752562fd7ab21ddccfae022ea", - "pushdate": "2011-09-08 20:54:46", - "desc": "Bug 685258 - Pulse audio backend does not check provided playback and crashes r=derf" - } - }, - { - "bug_id": 700199, - "inducing_commit": { - "node": "34b8fe0283576a3771e804b6d0c1d609eb1013c1", - "pushdate": "2011-12-08 15:13:43", - "desc": "Bug 700199 EventUtils.js should use synthesized events for sendKey(), sendChar() and sendString() rather than untrusted events r=ehsan+smaug+enndeakin+dolske" - }, - "backout_commit": { - "node": "0c0b9724b1ada8550c34805926e57f41195250b4", - "pushdate": "2011-12-08 15:13:43", - "desc": "backout 34b8fe028357" - }, - "fixing_commit": { - "node": "f720be43486d77d085411307852b7702c00a0960", - "pushdate": "2011-12-17 17:01:50", - "desc": "Bug 700199 EventUtils.js should use synthesized events for sendKey(), sendChar() and sendString() rather than untrusted events r=smaug+ehsan+dolske+enndeakin" - } - }, - { - "bug_id": 734691, - "inducing_commit": { - "node": "a76566398d36a8768f4c397bb2e835cbedbfbded", - "pushdate": "2012-03-12 02:41:18", - "desc": "Bug 734691 - Part 1: Rename Stack/Profile to imply their thread specific. r=mstange" - }, - "backout_commit": { - "node": "801514b8c35f1fa3968933122e2b7ad947940636", - "pushdate": "2012-03-12 02:41:18", - "desc": "Backout changeset a76566398d36" - }, - "fixing_commit": { - "node": "16e0066edea646a7e22c88f9dc0815ef7e3edb31", - "pushdate": "2012-03-13 10:17:55", - "desc": "Bug 734691 - Rename Stack/Profile to imply their thread specific. r=mstange" - } - }, - { - "bug_id": 734691, - "inducing_commit": { - "node": "5f5fc6a1133e42289efc32e32de6068d44c7b003", - "pushdate": "2012-03-12 02:41:18", - "desc": "Bug 734691 - Part 2: Move Stack to ThreadProfile since it's thread specific. r=mstange" - }, - "backout_commit": { - "node": "4db15a238ba4eeb53890f9d88b9e074051239ba7", - "pushdate": "2012-03-12 02:41:18", - "desc": "Backed out changeset 5f5fc6a1133e" - }, - "fixing_commit": { - "node": "16e0066edea646a7e22c88f9dc0815ef7e3edb31", - "pushdate": "2012-03-13 10:17:55", - "desc": "Bug 734691 - Rename Stack/Profile to imply their thread specific. r=mstange" - } - }, - { - "bug_id": 607417, - "inducing_commit": { - "node": "d1a44d2ec5c36f19fe78d2a982065754bd0d91ba", - "pushdate": "2012-05-24 14:48:49", - "desc": "Bug 607417 - Fix reverse translation of shadow layer clip rects. r=\n\nWhen asynchronous scrolling happens and the translation is compensated for,\nthis was incorrectly applied to the clip rects of shadow layers." - }, - "backout_commit": { - "node": "856e995bc57300dd5e5d18f0f121dbcafce640cd", - "pushdate": "2012-05-24 14:48:49", - "desc": "Backout d1a44d2ec5c3 due to missing r=" - }, - "fixing_commit": { - "node": "1fa2ea5986524db86ac7eeab79b4be76e10a44a3", - "pushdate": "2012-05-24 14:48:49", - "desc": "Bug 607417 - Reconcile async scrolling for fixed position layers. r=ajuma\n\nUntranslate fixed position layers when doing async scrolling so that they don't\njump about as content re-renders them in the correct place." - } - }, - { - "bug_id": 711793, - "inducing_commit": { - "node": "25663e7d7f56f5c0b085e470d29ab49e29e7a1c2", - "pushdate": "2012-06-29 07:42:23", - "desc": "Bug 711793 - Delay websocket reconnection after abnormal termination. r=mcmanus" - }, - "backout_commit": { - "node": "ebd6773acf2aa1bef051f0105704ade9d27faeaa", - "pushdate": "2012-06-29 07:42:23", - "desc": "Backed out changeset 25663e7d7f56 a=memory leak" - }, - "fixing_commit": { - "node": "25663e7d7f56f5c0b085e470d29ab49e29e7a1c2", - "pushdate": "2012-06-29 07:42:23", - "desc": "Bug 711793 - Delay websocket reconnection after abnormal termination. r=mcmanus" - } - }, - { - "bug_id": 706179, - "inducing_commit": { - "node": "f4f5189b1d0ca5b0c3d53d710c886a00cad1fdd7", - "pushdate": "2012-07-24 09:54:00", - "desc": "Bug 706179: Add support for animations to the Layers API r=roc, dbaron, cjones" - }, - "backout_commit": { - "node": "442e36401b38aa8bc8e8889c973503d4e0ee38cb", - "pushdate": "2012-07-24 09:54:00", - "desc": "Back out f4f5189b1d0c, 3b4f0606c547, b8a5a1ab8a5f, 5078933d6954, 7e0260c45de9 (bug 768440, bug 755084, bug 706179) because of reftest failures" - }, - "fixing_commit": { - "node": "876726b632c04fec7ea5b726a9aad030290fb672", - "pushdate": "2012-07-26 12:04:56", - "desc": "Bug 706179: Add support for animations to the Layers API r=roc, dbaron, cjones" - } - }, - { - "bug_id": 706179, - "inducing_commit": { - "node": "169ff207ed19ed2761784511ef568ee2764609a6", - "pushdate": "2012-07-28 21:54:39", - "desc": "Bug 706179: Add support for animations to the Layers API r=roc, dbaron, cjones" - }, - "backout_commit": { - "node": "9d2a7a8ca1c7a1440b9ab7cdbb7ab8a43449bf8d", - "pushdate": "2012-07-30 18:37:34", - "desc": "Backout 169ff207ed19, a34baed70c1b, f9ccdd490bd7, 39550ed860e6, 2194a2dd66b2, 908eb2e26843, a76e0a267f26 due to mobile viewport bustage (bug 778580)" - }, - "fixing_commit": { - "node": "a76e0a267f2673952a0e50952a56bac8aaaffbad", - "pushdate": "2012-07-28 21:54:39", - "desc": "Bug 706179 Part 2: Add a BaseTransform to layers r=roc" - } - }, - { - "bug_id": 775463, - "inducing_commit": { - "node": "e0e33c1c7c17aeff411248076b5280011a138d26", - "pushdate": "2012-07-28 21:54:39", - "desc": "Bug 775463: Recognize double tap gestures while still supporting single taps" - }, - "backout_commit": { - "node": "02d63f48e7526de741d9f02610ec9e8f53d0fa6d", - "pushdate": "2012-07-28 21:54:39", - "desc": "Backout e0e33c1c7c17 and 3d0fb7ac961a (bug 775463) due to bustage." - }, - "fixing_commit": { - "node": "3d0fb7ac961a4bcd988c3b5aa2d3f0a70f8e1962", - "pushdate": "2012-07-28 21:54:39", - "desc": "Bug 775463: Fix a mistake in a comment r=none DONTBUILD" - } - }, - { - "bug_id": 696045, - "inducing_commit": { - "node": "52120672ee11dd5bc24637f7e65cb072589e6d80", - "pushdate": "2012-09-12 20:51:15", - "desc": "Bug 696045 - Implement Mac backend for Battery API. r=BenWa, mounir" - }, - "backout_commit": { - "node": "d28e07f4bec6c16b32ae4743eaeeae2a9e2f6381", - "pushdate": "2012-09-12 20:51:15", - "desc": "Backout 52120672ee11 due to OSX opt bustage." - }, - "fixing_commit": { - "node": "294643a303c1b9fa4351a793406daf1ec7b8f0cf", - "pushdate": "2012-09-22 12:28:38", - "desc": "Bug 696045 - Implement Mac backend for Battery API. r=BenWa,mounir" - } - }, - { - "bug_id": 788073, - "inducing_commit": { - "node": "a5dbfe84e1783b3208a86f45235ff49a6e50b915", - "pushdate": "2012-10-19 14:23:49", - "desc": "Bug 788073 - Use platform touch fluffing on Android. r=kats" - }, - "backout_commit": { - "node": "e0d611217c39b7d10cd1e8be3a8acf24a9a8511a", - "pushdate": "2012-10-19 14:23:49", - "desc": "backout a5dbfe84e178 and 1adde03021f9" - }, - "fixing_commit": { - "node": "c8e8e389d84fc0171cf743938861613edbe6282c", - "pushdate": "2014-09-23 01:26:08", - "desc": "Bug 788073 - Use platform touch redirection. r=kats,wesj" - } - }, - { - "bug_id": 623380, - "inducing_commit": { - "node": "dd103ec4c44ba305cc5a08350e1352a7afcdb8ce", - "pushdate": "2013-02-20 12:07:46", - "desc": "b=623380 destroy XtClient child window on unrealize r=stransky" - }, - "backout_commit": { - "node": "e8c8d9373eba3573dfaaf5ce90419eb574ac4722", - "pushdate": "2013-02-20 12:07:46", - "desc": "Back out dd103ec4c44b through fba3a342a530 because of B2G test failures on a CLOSED TREE" - }, - "fixing_commit": { - "node": "caf862ef5cf2d5fd48c73d78fe9771be3fa748bb", - "pushdate": "2013-02-20 12:07:46", - "desc": "b=623380 destroy XtClient child window on unrealize r=stransky" - } - }, - { - "bug_id": 716140, - "inducing_commit": { - "node": "275cd395f9fadaa42da633e20780d39193d817db", - "pushdate": "2013-03-24 15:38:48", - "desc": "Bug 716140 - Implement multithreaded decoding using a thread pool. r=seth" - }, - "backout_commit": { - "node": "aab4a115f06c7ef349c357c5e18c6868721ccc97", - "pushdate": "2013-03-25 00:58:18", - "desc": "backout 275cd395f9fa and 9e4b22851976 bug 716140 for breaking linux tp on a CLOSED TREE" - }, - "fixing_commit": { - "node": "9e4b22851976625f7e4d44b01a18f6400040903d", - "pushdate": "2013-03-24 15:38:48", - "desc": "Bug 716140 - Control multithreaded encoding with a pref. r=seth" - } - }, - { - "bug_id": 842130, - "inducing_commit": { - "node": "9eb6532ccfc3f0072dbaac5e60a6c62e3b587e11", - "pushdate": "2013-03-30 23:31:27", - "desc": "Bug 842130 - Fix fullscreen video which currently isn't working. r=mbrubeck" - }, - "backout_commit": { - "node": "85eedb253f255e287b80074668a8675435577529", - "pushdate": "2013-03-30 23:31:27", - "desc": "Backout 9eb6532ccfc3 for bustage on some slaves. r=me" - }, - "fixing_commit": { - "node": "0cfcf56f7b4ef5d80fc4d952f015b09be46c8264", - "pushdate": "2013-04-05 00:57:47", - "desc": "Bug 842130 - Fix fullscreen video which currently isn't working. r=mbrubeck" - } - }, - { - "bug_id": 788073, - "inducing_commit": { - "node": "bf050e52851f1fcd9037a0bf1700b829e92848a8", - "pushdate": "2013-08-06 21:06:42", - "desc": "Bug 788073 - Use platform touch fluffing on Android. r=kats" - }, - "backout_commit": { - "node": "1fb5d14e8348b16014fafa5d746e0a8823df8187", - "pushdate": "2013-08-06 21:06:42", - "desc": "Backed out 2 changesets (bug 901151, bug 788073) for suspected robocop-2 orange.\n\nBacked out changeset 6e7a45127e07 (bug 901151)\nBacked out changeset bf050e52851f (bug 788073)" - }, - "fixing_commit": { - "node": "c8e8e389d84fc0171cf743938861613edbe6282c", - "pushdate": "2014-09-23 01:26:08", - "desc": "Bug 788073 - Use platform touch redirection. r=kats,wesj" - } - }, - { - "bug_id": 853388, - "inducing_commit": { - "node": "74673d1b1718167b95069ab65d5e55ed7bc329f8", - "pushdate": "2013-08-11 07:28:28", - "desc": "Bug 853388: Upgrade existing SQLITE databases to JSON" - }, - "backout_commit": { - "node": "d673c2622b84c67b4f2aa97548e60b6fdc0ea99d", - "pushdate": "2013-08-11 07:28:28", - "desc": "Back out 74673d1b1718 for missing reviewer" - }, - "fixing_commit": { - "node": "acba57ca53b8eea32719dffb07b5cfb31908332c", - "pushdate": "2013-08-11 07:28:28", - "desc": "Bug 853388: Upgrade existing SQLITE databases to JSON; r=unfocused" - } - }, - { - "bug_id": 853388, - "inducing_commit": { - "node": "2015a41cdf709050c5c140ff3135ed43f82b6ef6", - "pushdate": "2013-08-11 07:28:28", - "desc": "Bug 853388: Remove transaction model of database flush control and implement async save of database" - }, - "backout_commit": { - "node": "12a2e6d1fe972bf3f82c205fa80f2bea6a582bc7", - "pushdate": "2013-08-11 07:28:28", - "desc": "Back out 2015a41cdf70 for missing reviewer" - }, - "fixing_commit": { - "node": "acba57ca53b8eea32719dffb07b5cfb31908332c", - "pushdate": "2013-08-11 07:28:28", - "desc": "Bug 853388: Upgrade existing SQLITE databases to JSON; r=unfocused" - } - }, - { - "bug_id": 853388, - "inducing_commit": { - "node": "816af0c07c46ab7b503127335276a06d8c06f44a", - "pushdate": "2013-08-11 07:28:28", - "desc": "Bug 853388: Trigger XPI database conversion from SQLITE based on schema version preference" - }, - "backout_commit": { - "node": "90b96c49dbfb7b6d28a9002ba9a38da6dd9e2648", - "pushdate": "2013-08-11 07:28:28", - "desc": "Back out 816af0c07c46 for missing reviewer" - }, - "fixing_commit": { - "node": "acba57ca53b8eea32719dffb07b5cfb31908332c", - "pushdate": "2013-08-11 07:28:28", - "desc": "Bug 853388: Upgrade existing SQLITE databases to JSON; r=unfocused" - } - }, - { - "bug_id": 853388, - "inducing_commit": { - "node": "629a3e8bd2b1850a62b6e5e0f37a0a7d17f7117b", - "pushdate": "2013-08-11 07:28:28", - "desc": "Bug 853388: Load JSON database asynchronously outside of startup" - }, - "backout_commit": { - "node": "28be87cdc09bf84a65f84d0c1482a150190a98cd", - "pushdate": "2013-08-11 07:28:28", - "desc": "Back out 629a3e8bd2b1 for missing reviewer" - }, - "fixing_commit": { - "node": "acba57ca53b8eea32719dffb07b5cfb31908332c", - "pushdate": "2013-08-11 07:28:28", - "desc": "Bug 853388: Upgrade existing SQLITE databases to JSON; r=unfocused" - } - }, - { - "bug_id": 853388, - "inducing_commit": { - "node": "20d83a7220ca36140d4edeb7444f05312c84d097", - "pushdate": "2013-08-11 07:28:28", - "desc": "Bug 853388: Keep trying to save JSON even if read or save fails" - }, - "backout_commit": { - "node": "3211c723d9fd81025c162d82cab75865d4506c6a", - "pushdate": "2013-08-11 07:28:28", - "desc": "Back out 20d83a7220ca for missing reviewer" - }, - "fixing_commit": { - "node": "acba57ca53b8eea32719dffb07b5cfb31908332c", - "pushdate": "2013-08-11 07:28:28", - "desc": "Bug 853388: Upgrade existing SQLITE databases to JSON; r=unfocused" - } - }, - { - "bug_id": 790923, - "inducing_commit": { - "node": "9a57f0f347e3fdb8b6b38c07eeaa5eff5a4049be", - "pushdate": "2013-08-13 10:34:53", - "desc": "Bug 790923: Adds seccomp-bfp sandboxing support for B2G. r=agal, r=dhylands, r=dkeeler, r=imelven, a=kang." - }, - "backout_commit": { - "node": "ca193619b815531e5afae4b4b596889cc3479aa1", - "pushdate": "2013-08-13 19:37:08", - "desc": "Backout changeset 9a57f0f347e3 for insufficient review." - }, - "fixing_commit": { - "node": "ded622a6ad19ed076e90aabae618c4966b1c20cb", - "pushdate": "2013-08-16 08:28:16", - "desc": "Bug 790923: Adds seccomp-bfp sandboxing support for B2G. r=khuey, r=gerv, r=agal, r=dhylands, r=keeler, r=imelven, a=kang." - } - }, - { - "bug_id": 666816, - "inducing_commit": { - "node": "3734bebc9bfbd96727c6694248d21e16f7e6b8df", - "pushdate": "2013-09-13 20:07:11", - "desc": "Bug 666816 - Support findbar in e10s. r=mikedeboer" - }, - "backout_commit": { - "node": "32b0c06568e924acb9dad8b929719f8e4a39a29d", - "pushdate": "2013-09-13 20:07:11", - "desc": "backout changeset 3734bebc9bfb, because bad commit message and missed nit" - }, - "fixing_commit": { - "node": "295578d99074504f455e2b268c11df934b368d3a", - "pushdate": "2013-09-13 20:07:11", - "desc": "Bug 666816 - Refactor findbar to use a result listener and move most of the logic into a JSM. r=mikedeboer" - } - }, - { - "bug_id": 673875, - "inducing_commit": { - "node": "751bcb37cdb6404b8d4582aad47f96af8fcd4839", - "pushdate": "2013-10-11 19:39:21", - "desc": "Bug 673875: Reproduce the bounce behavior when reaching the top/bottom of the page on OSX. r=smichaud,felipe,masayuki" - }, - "backout_commit": { - "node": "1e935a380fb253c7bdb59c21914e392c33106258", - "pushdate": "2013-10-11 19:39:21", - "desc": "Backout 751bcb37cdb6 for bustage on a CLOSED TREE. r=me" - }, - "fixing_commit": { - "node": "b784c6dafa7da581970d474fe8f35685a140c5a1", - "pushdate": "2013-10-12 01:50:20", - "desc": "Bug 673875: Reproduce the bounce behavior when reaching the top/bottom of the page on OSX. r=smichaud,felipe,masayuki" - } - }, - { - "bug_id": 879668, - "inducing_commit": { - "node": "1395d2a596985cef64497bfff650560c7d8df869", - "pushdate": "2014-01-19 20:40:59", - "desc": "Bug 879668 - Part 1: Make CreateMutedFrame static. r=roc" - }, - "backout_commit": { - "node": "7b655cd5cce89a49d6e76e5da12c74561b88cf52", - "pushdate": "2014-01-19 20:40:59", - "desc": "Backed out changeset 1395d2a59698 (bug 879668) for landing without review." - }, - "fixing_commit": { - "node": "ab65363c73e3ddd8b43c9458ef17e3a96eabefd7", - "pushdate": "2014-01-19 20:40:59", - "desc": "Bug 879668 - Part 2: Add utility function to convert codec data from OMX AVC/H.264 encoder for MP4 container writer. r=roc" - } - }, - { - "bug_id": 789096, - "inducing_commit": { - "node": "38b25d5e6cf93b3f7f781df32c01b436b5eb2b3e", - "pushdate": "2014-05-26 12:37:49", - "desc": "Add a WritingMode argument to nsHTMLReflowMetrics::ISize() and BSize(). Bug 789096, r=jfkthame" - }, - "backout_commit": { - "node": "94af2dca5c0cdd14c8f34c0eded48b662349437e", - "pushdate": "2014-05-26 12:37:49", - "desc": "Backout 38b25d5e6cf9 because assertions" - }, - "fixing_commit": { - "node": "2d9924eaa36c8b47bebb25d7932fa97773825c6f", - "pushdate": "2014-06-06 01:31:27", - "desc": "Add a WritingMode argument to nsHTMLReflowMetrics::ISize() and BSize(). Bug 789096, r=jfkthame" - } - }, - { - "bug_id": 949617, - "inducing_commit": { - "node": "daa9c46d19dc577fd034486dcd0b6003d0119beb", - "pushdate": "2014-06-25 01:13:54", - "desc": "Bug 949617 - Make the login manager work in e10s. r=dolske" - }, - "backout_commit": { - "node": "6f291b1b47c79117c8d6bfa4a9b6227b8fe8872f", - "pushdate": "2014-06-25 01:13:54", - "desc": "Backed out 5 changesets (bug 993197, bug 949617, bug 995489, bug 1029128) for Android test failures.\n\nBacked out changeset 033d6271fd19 (bug 1029128)\nBacked out changeset f568b1dc9880 (bug 1029128)\nBacked out changeset daa9c46d19dc (bug 949617)\nBacked out changeset 2baf5c61cbf5 (bug 995489)\nBacked out changeset 654c1f0c88bc (bug 993197)" - }, - "fixing_commit": { - "node": "8c1ee05fbbd6eabaaa438703b7018443a0e86fb3", - "pushdate": "2014-06-26 12:15:07", - "desc": "Bug 949617 - Make the login manager work in e10s. r=dolske" - } - }, - { - "bug_id": 1027713, - "inducing_commit": { - "node": "e0bba6f4966fe87744e042273d404a67f3d8225e", - "pushdate": "2014-07-25 22:59:38", - "desc": "Bug 1027713 - Part 1 - Add a volume API in cubeb and use it instead of doing our own soft gain. r=kinetik" - }, - "backout_commit": { - "node": "5dc0231d0153ba0326f6fdb81d74356547103dee", - "pushdate": "2014-07-25 22:59:38", - "desc": "Backed out 8 changesets (bug 1023947, bug 1027713) for frequent Cppunit test failures\n\nBacked out changeset 03edb1ab3182 (bug 1027713)\nBacked out changeset ad05dc816fa0 (bug 1023947)\nBacked out changeset a56aad94c7c9 (bug 1023947)\nBacked out changeset 63af4528bd9c (bug 1023947)\nBacked out changeset b6bb38846333 (bug 1027713)\nBacked out changeset c0045bb1849e (bug 1027713)\nBacked out changeset 274b2b25d167 (bug 1027713)\nBacked out changeset e0bba6f4966f (bug 1027713)" - }, - "fixing_commit": { - "node": "bf4ed2946c45eb7929063705f9356f327cc59b1f", - "pushdate": "2014-07-30 00:01:50", - "desc": "Bug 1027713 - Part 1 - Add a volume API in cubeb and use it instead of doing our own soft gain. r=kinetik" - } - }, - { - "bug_id": 1027713, - "inducing_commit": { - "node": "274b2b25d167f8fccfd0d4dc034e5392f09cec9f", - "pushdate": "2014-07-25 22:59:38", - "desc": "Bug 1027713 - Part 2 - Add a cubeb API to query the name of the audio output device in use. r=kinetik" - }, - "backout_commit": { - "node": "5dc0231d0153ba0326f6fdb81d74356547103dee", - "pushdate": "2014-07-25 22:59:38", - "desc": "Backed out 8 changesets (bug 1023947, bug 1027713) for frequent Cppunit test failures\n\nBacked out changeset 03edb1ab3182 (bug 1027713)\nBacked out changeset ad05dc816fa0 (bug 1023947)\nBacked out changeset a56aad94c7c9 (bug 1023947)\nBacked out changeset 63af4528bd9c (bug 1023947)\nBacked out changeset b6bb38846333 (bug 1027713)\nBacked out changeset c0045bb1849e (bug 1027713)\nBacked out changeset 274b2b25d167 (bug 1027713)\nBacked out changeset e0bba6f4966f (bug 1027713)" - }, - "fixing_commit": { - "node": "bf4ed2946c45eb7929063705f9356f327cc59b1f", - "pushdate": "2014-07-30 00:01:50", - "desc": "Bug 1027713 - Part 1 - Add a volume API in cubeb and use it instead of doing our own soft gain. r=kinetik" - } - }, - { - "bug_id": 1027713, - "inducing_commit": { - "node": "c0045bb1849ed7cbe7e06c92318a8e7b01314428", - "pushdate": "2014-07-25 22:59:38", - "desc": "Bug 1027713 - Part 3 - Add a cubeb API to signal that the output device changed. r=kinetik\n\nThe reentrant mutex is needed so that users can call back into cubeb's API from\nthe callback." - }, - "backout_commit": { - "node": "5dc0231d0153ba0326f6fdb81d74356547103dee", - "pushdate": "2014-07-25 22:59:38", - "desc": "Backed out 8 changesets (bug 1023947, bug 1027713) for frequent Cppunit test failures\n\nBacked out changeset 03edb1ab3182 (bug 1027713)\nBacked out changeset ad05dc816fa0 (bug 1023947)\nBacked out changeset a56aad94c7c9 (bug 1023947)\nBacked out changeset 63af4528bd9c (bug 1023947)\nBacked out changeset b6bb38846333 (bug 1027713)\nBacked out changeset c0045bb1849e (bug 1027713)\nBacked out changeset 274b2b25d167 (bug 1027713)\nBacked out changeset e0bba6f4966f (bug 1027713)" - }, - "fixing_commit": { - "node": "bf4ed2946c45eb7929063705f9356f327cc59b1f", - "pushdate": "2014-07-30 00:01:50", - "desc": "Bug 1027713 - Part 1 - Add a volume API in cubeb and use it instead of doing our own soft gain. r=kinetik" - } - }, - { - "bug_id": 1027713, - "inducing_commit": { - "node": "b6bb388463335a6129c386b3a3d0cc82a2725a00", - "pushdate": "2014-07-25 22:59:38", - "desc": "Bug 1027713 - Part 4 - Pan audio to the right when we are using gUM and outputing sound using MacBookPro speakers. r=jesup" - }, - "backout_commit": { - "node": "5dc0231d0153ba0326f6fdb81d74356547103dee", - "pushdate": "2014-07-25 22:59:38", - "desc": "Backed out 8 changesets (bug 1023947, bug 1027713) for frequent Cppunit test failures\n\nBacked out changeset 03edb1ab3182 (bug 1027713)\nBacked out changeset ad05dc816fa0 (bug 1023947)\nBacked out changeset a56aad94c7c9 (bug 1023947)\nBacked out changeset 63af4528bd9c (bug 1023947)\nBacked out changeset b6bb38846333 (bug 1027713)\nBacked out changeset c0045bb1849e (bug 1027713)\nBacked out changeset 274b2b25d167 (bug 1027713)\nBacked out changeset e0bba6f4966f (bug 1027713)" - }, - "fixing_commit": { - "node": "bf4ed2946c45eb7929063705f9356f327cc59b1f", - "pushdate": "2014-07-30 00:01:50", - "desc": "Bug 1027713 - Part 1 - Add a volume API in cubeb and use it instead of doing our own soft gain. r=kinetik" - } - }, - { - "bug_id": 1027713, - "inducing_commit": { - "node": "03edb1ab3182d06ec5730582e03b9bd8196953ab", - "pushdate": "2014-07-25 22:59:38", - "desc": "Bug 1027713 - Part 5 - Trigger the panning logic on stream creation. r=jesup\n\nUpdateStreamOrder is not called often because it's expensive (it's called only\nwhen the graph topology changed), and it's earlier in the MSG loop than the\naudio stream creation, so we need to tell the newly created AudioStream that a\nmicrophone is active on creation as well.\n\nThe panning logic is also now triggered on stream start, because it is async." - }, - "backout_commit": { - "node": "5dc0231d0153ba0326f6fdb81d74356547103dee", - "pushdate": "2014-07-25 22:59:38", - "desc": "Backed out 8 changesets (bug 1023947, bug 1027713) for frequent Cppunit test failures\n\nBacked out changeset 03edb1ab3182 (bug 1027713)\nBacked out changeset ad05dc816fa0 (bug 1023947)\nBacked out changeset a56aad94c7c9 (bug 1023947)\nBacked out changeset 63af4528bd9c (bug 1023947)\nBacked out changeset b6bb38846333 (bug 1027713)\nBacked out changeset c0045bb1849e (bug 1027713)\nBacked out changeset 274b2b25d167 (bug 1027713)\nBacked out changeset e0bba6f4966f (bug 1027713)" - }, - "fixing_commit": { - "node": "bf4ed2946c45eb7929063705f9356f327cc59b1f", - "pushdate": "2014-07-30 00:01:50", - "desc": "Bug 1027713 - Part 1 - Add a volume API in cubeb and use it instead of doing our own soft gain. r=kinetik" - } - }, - { - "bug_id": 1069421, - "inducing_commit": { - "node": "942aec7a1572dca9e2f5ebecf84a879d0eb354b9", - "pushdate": "2014-11-11 21:49:17", - "desc": "Bug 1069421 - Add a memory graph to the timeline, r=pbrosset,paul" - }, - "backout_commit": { - "node": "8aa568ca5527eaa0a8537653b40dd039b5106668", - "pushdate": "2014-11-11 21:49:17", - "desc": "Backed out changeset 942aec7a1572 for mochitest-dt failures, r=me" - }, - "fixing_commit": { - "node": "5e58c0e599649cb6134e59219533d5ada3464af4", - "pushdate": "2014-11-13 20:41:25", - "desc": "Bug 1069421 - Add a memory graph to the timeline, r=pbrosset,paul" - } - } -] From 49570ac8716ad23e67eab671452c833eade97cb5 Mon Sep 17 00:00:00 2001 From: Benjamin Mah Date: Mon, 6 May 2024 10:56:24 -0400 Subject: [PATCH 09/38] Added cache for processed dictionaries, removed unused fields, simplified code --- scripts/backout_data_collection.py | 97 +++++++++++++++++++----------- 1 file changed, 63 insertions(+), 34 deletions(-) diff --git a/scripts/backout_data_collection.py b/scripts/backout_data_collection.py index 3900452ad1..d047879390 100644 --- a/scripts/backout_data_collection.py +++ b/scripts/backout_data_collection.py @@ -20,46 +20,73 @@ def download_databases() -> None: assert db.download(repository.COMMITS_DB, support_files_too=True) -def preprocess_commits_and_bugs(): - logger.info("Preprocessing commits") - commit_dict = {} - bug_to_commit_dict = {} - - # store commits with their hashes and bug IDs as keys - for commit in tqdm( - repository.get_commits( - include_no_bug=True, include_backouts=True, include_ignored=True - ), - desc="Processing commits", - ): - commit_dict[commit["node"]] = commit +def save_dict_to_file(data_dict, file_path): + with open(file_path, "w") as file: + json.dump(data_dict, file, indent=4) + - if commit["bug_id"] not in bug_to_commit_dict: - bug_to_commit_dict[commit["bug_id"]] = [commit] - else: - bug_to_commit_dict[commit["bug_id"]].append(commit) +def load_dict_from_file(file_path): + with open(file_path, "r") as file: + return json.load(file) - logger.info("Preprocessing bugs") - bug_dict = {} - num_lines = sum(1 for line in open(bugzilla.BUGS_DB, "r")) +def preprocess_commits_and_bugs(): + cache_path_commit = "dataset/cache_commit_dict.json" + cache_path_bug_to_commit = "dataset/cache_bug_to_commit_dict.json" + cache_path_bug = "dataset/cache_bug_dict.json" + + if ( + os.path.exists(cache_path_commit) + and os.path.exists(cache_path_bug_to_commit) + and os.path.exists(cache_path_bug) + ): + logger.info("Loading cached data...") + commit_dict = load_dict_from_file(cache_path_commit) + bug_to_commit_dict = load_dict_from_file(cache_path_bug_to_commit) + bug_dict = load_dict_from_file(cache_path_bug) + + else: + logger.info("Preprocessing commits and bugs...") + commit_dict = {} + bug_to_commit_dict = {} + + # store commits with their hashes and bug IDs as keys + for commit in tqdm( + repository.get_commits( + include_no_bug=True, include_backouts=True, include_ignored=True + ), + desc="Processing commits", + ): + commit_dict[commit["node"]] = { + "node": commit["node"], + "bug_id": commit["bug_id"], + "desc": commit["desc"], + "pushdate": commit["pushdate"], + "backedoutby": commit["backedoutby"], + "backsout": commit["backsout"], + } - # store bugs with their bug IDs as keys - with open(bugzilla.BUGS_DB, "r") as f: - for line in tqdm(f, total=num_lines, desc="Processing bugs"): - bug = json.loads(line) - bug_dict[bug.get("id")] = bug + if commit_dict[commit["node"]]["bug_id"] not in bug_to_commit_dict: + bug_to_commit_dict[commit["bug_id"]] = [commit_dict[commit["node"]]] + else: + bug_to_commit_dict[commit["bug_id"]].append(commit_dict[commit["node"]]) - return commit_dict, bug_to_commit_dict, bug_dict + logger.info("Preprocessing bugs") + bug_dict = {} + num_lines = sum(1 for line in open(bugzilla.BUGS_DB, "r")) -def is_bug_fixed(bug_id: int, bug_dict: dict) -> bool: - bug = bug_dict.get(bug_id) + # store bugs with their bug IDs as keys + with open(bugzilla.BUGS_DB, "r") as f: + for line in tqdm(f, total=num_lines, desc="Processing bugs"): + bug = json.loads(line) + bug_dict[bug.get("id")] = bug["resolution"] - if bug: - return bug.get("resolution") == "FIXED" + save_dict_to_file(commit_dict, cache_path_commit) + save_dict_to_file(bug_to_commit_dict, cache_path_bug_to_commit) + save_dict_to_file(bug_dict, cache_path_bug) - return False + return commit_dict, bug_to_commit_dict, bug_dict def filter_commits( @@ -79,8 +106,10 @@ def filter_commits( include_no_bug=False, include_backouts=True, include_ignored=False ): # add commit if it was backed out and the bug is fixed - if len(commit["backedoutby"]) > 0 and is_bug_fixed( - bug_id=commit["bug_id"], bug_dict=bug_dict + if ( + bug_dict.get(str(commit["bug_id"])) + and commit["backedoutby"] + and bug_dict[str(commit["bug_id"])] == "FIXED" ): fixing_commit = find_next_commit( commit["bug_id"], bug_to_commit_dict, commit["node"] @@ -138,7 +167,7 @@ def filter_commits( def find_next_commit(bug_id: int, bug_to_commit_dict: dict, inducing_node: str) -> dict: inducing_commit_found = False - for commit in bug_to_commit_dict[bug_id]: + for commit in bug_to_commit_dict[str(bug_id)]: # if the inducing commit has been found, find next commit that has not been backed out if inducing_commit_found: if len(commit["backedoutby"]) == 0: From fc379409cff97401b3f1328cf138162fff4399ce Mon Sep 17 00:00:00 2001 From: Benjamin Mah Date: Mon, 6 May 2024 14:31:49 -0400 Subject: [PATCH 10/38] Split up function `filter_commits` to handle saving to directory and files separately --- scripts/backout_data_collection.py | 119 +++++++++++++++++------------ 1 file changed, 69 insertions(+), 50 deletions(-) diff --git a/scripts/backout_data_collection.py b/scripts/backout_data_collection.py index d047879390..a09ca65de9 100644 --- a/scripts/backout_data_collection.py +++ b/scripts/backout_data_collection.py @@ -20,30 +20,35 @@ def download_databases() -> None: assert db.download(repository.COMMITS_DB, support_files_too=True) -def save_dict_to_file(data_dict, file_path): +def save_dict_to_file(data_dict, file_path) -> None: with open(file_path, "w") as file: json.dump(data_dict, file, indent=4) -def load_dict_from_file(file_path): +def load_dict_from_file(file_path) -> dict: with open(file_path, "r") as file: return json.load(file) -def preprocess_commits_and_bugs(): - cache_path_commit = "dataset/cache_commit_dict.json" - cache_path_bug_to_commit = "dataset/cache_bug_to_commit_dict.json" - cache_path_bug = "dataset/cache_bug_dict.json" +def preprocess_commits_and_bugs( + directory_path: str, + commit_cache_filename: str, + bug_to_commit_cache_filename: str, + bug_cache_filename: str, +) -> tuple[dict, dict, dict]: + commit_cache_filepath = directory_path + "/" + commit_cache_filename + bug_to_commit_cache_filepath = directory_path + "/" + bug_to_commit_cache_filename + bug_cache_filepath = directory_path + "/" + bug_cache_filename if ( - os.path.exists(cache_path_commit) - and os.path.exists(cache_path_bug_to_commit) - and os.path.exists(cache_path_bug) + os.path.exists(commit_cache_filepath) + and os.path.exists(bug_to_commit_cache_filepath) + and os.path.exists(bug_cache_filepath) ): logger.info("Loading cached data...") - commit_dict = load_dict_from_file(cache_path_commit) - bug_to_commit_dict = load_dict_from_file(cache_path_bug_to_commit) - bug_dict = load_dict_from_file(cache_path_bug) + commit_dict = load_dict_from_file(commit_cache_filepath) + bug_to_commit_dict = load_dict_from_file(bug_to_commit_cache_filepath) + bug_dict = load_dict_from_file(bug_cache_filepath) else: logger.info("Preprocessing commits and bugs...") @@ -82,35 +87,49 @@ def preprocess_commits_and_bugs(): bug = json.loads(line) bug_dict[bug.get("id")] = bug["resolution"] - save_dict_to_file(commit_dict, cache_path_commit) - save_dict_to_file(bug_to_commit_dict, cache_path_bug_to_commit) - save_dict_to_file(bug_dict, cache_path_bug) + save_dict_to_file(commit_dict, commit_cache_filepath) + save_dict_to_file(bug_to_commit_dict, bug_to_commit_cache_filepath) + save_dict_to_file(bug_dict, bug_cache_filepath) return commit_dict, bug_to_commit_dict, bug_dict +def ensure_directory_exists(directory_path: str) -> None: + if not os.path.exists(directory_path): + os.makedirs(directory_path) + logger.info(f"Directory {directory_path} created") + + +def save_dataset(directory_path: str, filename: str, filtered_list: list) -> None: + json_data = json.dumps(filtered_list, indent=4) + + with open(directory_path + "/" + filename, "w") as file: + file.write(json_data) + + logger.info(f"Data successfully saved to {directory_path + '/' + filename}") + + def filter_commits( - directory_path: str, - destination_filepath: str, - count_limit: int, - bug_dict: dict, + commit_limit: int, commit_dict: dict, bug_to_commit_dict: dict, -) -> None: + bug_dict: dict, +) -> list: filtered_list = [] counter = 0 + commit_limit = min(commit_limit, 709458) - pbar = tqdm(total=count_limit, desc="Filtering commits") + pbar = tqdm(total=commit_limit, desc="Filtering commits") for commit in repository.get_commits( - include_no_bug=False, include_backouts=True, include_ignored=False + include_no_bug=True, include_backouts=True, include_ignored=True ): # add commit if it was backed out and the bug is fixed - if ( - bug_dict.get(str(commit["bug_id"])) - and commit["backedoutby"] - and bug_dict[str(commit["bug_id"])] == "FIXED" - ): + bug_info = bug_dict.get(str(commit["bug_id"])) + + counter += 1 + pbar.update(1) + if commit["backedoutby"] and bug_info == "FIXED": fixing_commit = find_next_commit( commit["bug_id"], bug_to_commit_dict, commit["node"] ) @@ -120,7 +139,6 @@ def filter_commits( fixing_commit["node"] == commit["backedoutby"] or len(fixing_commit["backsout"]) > 0 ): - counter += 1 continue # add the hashes of the bug-inducing commit, the back out commit, and the fixing commit @@ -145,24 +163,11 @@ def filter_commits( } filtered_list.append(list_entry) - counter += 1 - pbar.update(1) - if counter >= count_limit: - break + if counter >= commit_limit: + break - json_data = json.dumps(filtered_list, indent=4) - - if not os.path.exists(directory_path): - os.makedirs(directory_path) - print(f"Directory {directory_path} created") - - with open(destination_filepath, "w") as file: - file.write(json_data) - - logger.info(f"Data successfully saved to {destination_filepath}") - - return + return filtered_list def find_next_commit(bug_id: int, bug_to_commit_dict: dict, inducing_node: str) -> dict: @@ -179,18 +184,32 @@ def find_next_commit(bug_id: int, bug_to_commit_dict: dict, inducing_node: str) return commit +DIRECTORY = "dataset" + + def main(): download_databases() - commit_dict, bug_to_commit_dict, bug_dict = preprocess_commits_and_bugs() + ensure_directory_exists(directory_path=DIRECTORY) - filter_commits( - directory_path="dataset", - destination_filepath="dataset/backout_dataset.json", - count_limit=500, - bug_dict=bug_dict, + commit_dict, bug_to_commit_dict, bug_dict = preprocess_commits_and_bugs( + directory_path=DIRECTORY, + commit_cache_filename="commit_cache.json", + bug_to_commit_cache_filename="bug_to_commit_cache.json", + bug_cache_filename="bug_cache.json", + ) + + filtered_list = filter_commits( + commit_limit=1000000, commit_dict=commit_dict, bug_to_commit_dict=bug_to_commit_dict, + bug_dict=bug_dict, + ) + + save_dataset( + directory_path=DIRECTORY, + filename="backout_dataset.json", + filtered_list=filtered_list, ) From 10314dd25aa65577b023bfbe79a776dc75fa6166 Mon Sep 17 00:00:00 2001 From: Benjamin Mah Date: Mon, 6 May 2024 16:54:58 -0400 Subject: [PATCH 11/38] Replaced list with generator, stylized code to match standard coding practices --- scripts/backout_data_collection.py | 239 ++++++++++++++++------------- 1 file changed, 134 insertions(+), 105 deletions(-) diff --git a/scripts/backout_data_collection.py b/scripts/backout_data_collection.py index a09ca65de9..0f71e2922c 100644 --- a/scripts/backout_data_collection.py +++ b/scripts/backout_data_collection.py @@ -1,11 +1,9 @@ import json import logging import os -import sys from tqdm import tqdm -sys.path.append("../bugbug") from bugbug import bugzilla, db, repository logging.basicConfig(level=logging.INFO) @@ -20,93 +18,118 @@ def download_databases() -> None: assert db.download(repository.COMMITS_DB, support_files_too=True) -def save_dict_to_file(data_dict, file_path) -> None: - with open(file_path, "w") as file: - json.dump(data_dict, file, indent=4) - - -def load_dict_from_file(file_path) -> dict: - with open(file_path, "r") as file: - return json.load(file) - +def preprocess_commits_and_bugs() -> tuple[dict, dict, dict]: + logger.info("Preprocessing commits and bugs...") + commit_dict = {} + bug_to_commit_dict = {} -def preprocess_commits_and_bugs( - directory_path: str, - commit_cache_filename: str, - bug_to_commit_cache_filename: str, - bug_cache_filename: str, -) -> tuple[dict, dict, dict]: - commit_cache_filepath = directory_path + "/" + commit_cache_filename - bug_to_commit_cache_filepath = directory_path + "/" + bug_to_commit_cache_filename - bug_cache_filepath = directory_path + "/" + bug_cache_filename - - if ( - os.path.exists(commit_cache_filepath) - and os.path.exists(bug_to_commit_cache_filepath) - and os.path.exists(bug_cache_filepath) + # store commits with their hashes and bug IDs as keys + for commit in tqdm( + repository.get_commits( + include_no_bug=True, include_backouts=True, include_ignored=True + ), + desc="Processing commits", ): - logger.info("Loading cached data...") - commit_dict = load_dict_from_file(commit_cache_filepath) - bug_to_commit_dict = load_dict_from_file(bug_to_commit_cache_filepath) - bug_dict = load_dict_from_file(bug_cache_filepath) - - else: - logger.info("Preprocessing commits and bugs...") - commit_dict = {} - bug_to_commit_dict = {} - - # store commits with their hashes and bug IDs as keys - for commit in tqdm( - repository.get_commits( - include_no_bug=True, include_backouts=True, include_ignored=True - ), - desc="Processing commits", - ): - commit_dict[commit["node"]] = { - "node": commit["node"], - "bug_id": commit["bug_id"], - "desc": commit["desc"], - "pushdate": commit["pushdate"], - "backedoutby": commit["backedoutby"], - "backsout": commit["backsout"], - } - - if commit_dict[commit["node"]]["bug_id"] not in bug_to_commit_dict: - bug_to_commit_dict[commit["bug_id"]] = [commit_dict[commit["node"]]] - else: - bug_to_commit_dict[commit["bug_id"]].append(commit_dict[commit["node"]]) - - logger.info("Preprocessing bugs") - bug_dict = {} - - num_lines = sum(1 for line in open(bugzilla.BUGS_DB, "r")) - - # store bugs with their bug IDs as keys - with open(bugzilla.BUGS_DB, "r") as f: - for line in tqdm(f, total=num_lines, desc="Processing bugs"): - bug = json.loads(line) - bug_dict[bug.get("id")] = bug["resolution"] - - save_dict_to_file(commit_dict, commit_cache_filepath) - save_dict_to_file(bug_to_commit_dict, bug_to_commit_cache_filepath) - save_dict_to_file(bug_dict, bug_cache_filepath) + commit_dict[commit["node"]] = { + "node": commit["node"], + "bug_id": commit["bug_id"], + "desc": commit["desc"], + "pushdate": commit["pushdate"], + "backedoutby": commit["backedoutby"], + "backsout": commit["backsout"], + } + + if commit_dict[commit["node"]]["bug_id"] not in bug_to_commit_dict: + bug_to_commit_dict[commit["bug_id"]] = [commit_dict[commit["node"]]] + else: + bug_to_commit_dict[commit["bug_id"]].append(commit_dict[commit["node"]]) + + logger.info("Preprocessing bugs") + bug_dict = {} + + num_lines = sum(1 for line in open(bugzilla.BUGS_DB, "r")) + + # store bugs with their bug IDs as keys + with open(bugzilla.BUGS_DB, "r") as f: + for line in tqdm(f, total=num_lines, desc="Processing bugs"): + bug = json.loads(line) + bug_dict[bug.get("id")] = bug["resolution"] return commit_dict, bug_to_commit_dict, bug_dict -def ensure_directory_exists(directory_path: str) -> None: - if not os.path.exists(directory_path): - os.makedirs(directory_path) - logger.info(f"Directory {directory_path} created") - - -def save_dataset(directory_path: str, filename: str, filtered_list: list) -> None: - json_data = json.dumps(filtered_list, indent=4) - - with open(directory_path + "/" + filename, "w") as file: - file.write(json_data) - - logger.info(f"Data successfully saved to {directory_path + '/' + filename}") +# def save_dataset(directory_path: str, filename: str, filtered_list: list) -> None: +# if not os.path.exists(directory_path): +# os.makedirs(directory_path) +# logger.info(f"Directory {directory_path} created") + +# json_data = json.dumps(filtered_list, indent=4) + +# with open(directory_path + "/" + filename, "w") as file: +# file.write(json_data) + +# logger.info(f"Data successfully saved to {directory_path + '/' + filename}") + + +# def filter_commits( +# commit_limit: int, +# commit_dict: dict, +# bug_to_commit_dict: dict, +# bug_dict: dict, +# ) -> list: +# filtered_list = [] +# counter = 0 +# commit_limit = min(commit_limit, 709458) + +# pbar = tqdm(total=commit_limit, desc="Filtering commits") + +# for commit in repository.get_commits( +# include_no_bug=True, include_backouts=True, include_ignored=True +# ): +# # add commit if it was backed out and the bug is fixed +# bug_info = bug_dict.get(str(commit["bug_id"])) + +# counter += 1 +# pbar.update(1) +# if commit["backedoutby"] and bug_info == "FIXED": +# fixing_commit = find_next_commit( +# commit["bug_id"], bug_to_commit_dict, commit["node"] +# ) + +# # if fixing commit could not be found or is another backing out commit, do not add it to dataset +# if ( +# fixing_commit["node"] == commit["backedoutby"] +# or len(fixing_commit["backsout"]) > 0 +# ): +# continue + +# # add the hashes of the bug-inducing commit, the back out commit, and the fixing commit +# # include metadata such as push date and description for further context +# list_entry = { +# "bug_id": commit["bug_id"], +# "inducing_commit": { +# "node": commit["node"], +# "pushdate": commit["pushdate"], +# "desc": commit["desc"], +# }, +# "backout_commit": { +# "node": commit["backedoutby"], +# "pushdate": commit_dict[commit["backedoutby"]]["pushdate"], +# "desc": commit_dict[commit["backedoutby"]]["desc"], +# }, +# "fixing_commit": { +# "node": fixing_commit["node"], +# "pushdate": fixing_commit["pushdate"], +# "desc": fixing_commit["desc"], +# }, +# } + +# filtered_list.append(list_entry) + +# if counter >= commit_limit: +# break + +# return filtered_list def filter_commits( @@ -114,18 +137,16 @@ def filter_commits( commit_dict: dict, bug_to_commit_dict: dict, bug_dict: dict, -) -> list: - filtered_list = [] +): counter = 0 commit_limit = min(commit_limit, 709458) - pbar = tqdm(total=commit_limit, desc="Filtering commits") for commit in repository.get_commits( include_no_bug=True, include_backouts=True, include_ignored=True ): # add commit if it was backed out and the bug is fixed - bug_info = bug_dict.get(str(commit["bug_id"])) + bug_info = bug_dict.get(commit["bug_id"]) counter += 1 pbar.update(1) @@ -137,13 +158,13 @@ def filter_commits( # if fixing commit could not be found or is another backing out commit, do not add it to dataset if ( fixing_commit["node"] == commit["backedoutby"] - or len(fixing_commit["backsout"]) > 0 + or fixing_commit["backsout"] ): continue # add the hashes of the bug-inducing commit, the back out commit, and the fixing commit # include metadata such as push date and description for further context - list_entry = { + yield { "bug_id": commit["bug_id"], "inducing_commit": { "node": commit["node"], @@ -162,17 +183,15 @@ def filter_commits( }, } - filtered_list.append(list_entry) - if counter >= commit_limit: break - return filtered_list + pbar.close() def find_next_commit(bug_id: int, bug_to_commit_dict: dict, inducing_node: str) -> dict: inducing_commit_found = False - for commit in bug_to_commit_dict[str(bug_id)]: + for commit in bug_to_commit_dict[bug_id]: # if the inducing commit has been found, find next commit that has not been backed out if inducing_commit_found: if len(commit["backedoutby"]) == 0: @@ -184,22 +203,32 @@ def find_next_commit(bug_id: int, bug_to_commit_dict: dict, inducing_node: str) return commit -DIRECTORY = "dataset" +def save_dataset(directory_path: str, filename: str, data_generator): + if not os.path.exists(directory_path): + os.makedirs(directory_path) + logger.info(f"Directory {directory_path} created") + + file_path = os.path.join(directory_path, filename) + with open(file_path, "w") as file: + file.write("[\n") + first = True + for item in data_generator: + if not first: + file.write(",\n") + json_data = json.dumps(item, indent=4) + file.write(json_data) + first = False + file.write("\n]") + + logger.info(f"Data successfully saved to {file_path}") def main(): download_databases() - ensure_directory_exists(directory_path=DIRECTORY) - - commit_dict, bug_to_commit_dict, bug_dict = preprocess_commits_and_bugs( - directory_path=DIRECTORY, - commit_cache_filename="commit_cache.json", - bug_to_commit_cache_filename="bug_to_commit_cache.json", - bug_cache_filename="bug_cache.json", - ) + commit_dict, bug_to_commit_dict, bug_dict = preprocess_commits_and_bugs() - filtered_list = filter_commits( + data_generator = filter_commits( commit_limit=1000000, commit_dict=commit_dict, bug_to_commit_dict=bug_to_commit_dict, @@ -207,9 +236,9 @@ def main(): ) save_dataset( - directory_path=DIRECTORY, + directory_path="dataset", filename="backout_dataset.json", - filtered_list=filtered_list, + data_generator=data_generator, ) From 943eb40ebb016acbb307ac6bb93bc65a8efa530c Mon Sep 17 00:00:00 2001 From: Benjamin Mah Date: Mon, 6 May 2024 16:56:34 -0400 Subject: [PATCH 12/38] Removed commented out code --- scripts/backout_data_collection.py | 74 ------------------------------ 1 file changed, 74 deletions(-) diff --git a/scripts/backout_data_collection.py b/scripts/backout_data_collection.py index 0f71e2922c..9bb450d1e1 100644 --- a/scripts/backout_data_collection.py +++ b/scripts/backout_data_collection.py @@ -58,80 +58,6 @@ def preprocess_commits_and_bugs() -> tuple[dict, dict, dict]: return commit_dict, bug_to_commit_dict, bug_dict -# def save_dataset(directory_path: str, filename: str, filtered_list: list) -> None: -# if not os.path.exists(directory_path): -# os.makedirs(directory_path) -# logger.info(f"Directory {directory_path} created") - -# json_data = json.dumps(filtered_list, indent=4) - -# with open(directory_path + "/" + filename, "w") as file: -# file.write(json_data) - -# logger.info(f"Data successfully saved to {directory_path + '/' + filename}") - - -# def filter_commits( -# commit_limit: int, -# commit_dict: dict, -# bug_to_commit_dict: dict, -# bug_dict: dict, -# ) -> list: -# filtered_list = [] -# counter = 0 -# commit_limit = min(commit_limit, 709458) - -# pbar = tqdm(total=commit_limit, desc="Filtering commits") - -# for commit in repository.get_commits( -# include_no_bug=True, include_backouts=True, include_ignored=True -# ): -# # add commit if it was backed out and the bug is fixed -# bug_info = bug_dict.get(str(commit["bug_id"])) - -# counter += 1 -# pbar.update(1) -# if commit["backedoutby"] and bug_info == "FIXED": -# fixing_commit = find_next_commit( -# commit["bug_id"], bug_to_commit_dict, commit["node"] -# ) - -# # if fixing commit could not be found or is another backing out commit, do not add it to dataset -# if ( -# fixing_commit["node"] == commit["backedoutby"] -# or len(fixing_commit["backsout"]) > 0 -# ): -# continue - -# # add the hashes of the bug-inducing commit, the back out commit, and the fixing commit -# # include metadata such as push date and description for further context -# list_entry = { -# "bug_id": commit["bug_id"], -# "inducing_commit": { -# "node": commit["node"], -# "pushdate": commit["pushdate"], -# "desc": commit["desc"], -# }, -# "backout_commit": { -# "node": commit["backedoutby"], -# "pushdate": commit_dict[commit["backedoutby"]]["pushdate"], -# "desc": commit_dict[commit["backedoutby"]]["desc"], -# }, -# "fixing_commit": { -# "node": fixing_commit["node"], -# "pushdate": fixing_commit["pushdate"], -# "desc": fixing_commit["desc"], -# }, -# } - -# filtered_list.append(list_entry) - -# if counter >= commit_limit: -# break - -# return filtered_list - - def filter_commits( commit_limit: int, commit_dict: dict, From 8ed0784a99cc0e80d7661ce3a2a7d5e12a717e41 Mon Sep 17 00:00:00 2001 From: Benjamin Mah Date: Tue, 7 May 2024 10:03:07 -0400 Subject: [PATCH 13/38] Added new file to log commits that do not have a fix commit, used `bugzilla.get_bugs`, removed a few tqdm lines --- scripts/backout_data_collection.py | 139 +++++++++++++++++++---------- 1 file changed, 94 insertions(+), 45 deletions(-) diff --git a/scripts/backout_data_collection.py b/scripts/backout_data_collection.py index 9bb450d1e1..de6a1ee284 100644 --- a/scripts/backout_data_collection.py +++ b/scripts/backout_data_collection.py @@ -1,6 +1,7 @@ import json import logging import os +from typing import Any, Dict, Generator, Tuple from tqdm import tqdm @@ -18,7 +19,7 @@ def download_databases() -> None: assert db.download(repository.COMMITS_DB, support_files_too=True) -def preprocess_commits_and_bugs() -> tuple[dict, dict, dict]: +def preprocess_commits_and_bugs() -> Tuple[Dict, Dict, Dict]: logger.info("Preprocessing commits and bugs...") commit_dict = {} bug_to_commit_dict = {} @@ -28,7 +29,7 @@ def preprocess_commits_and_bugs() -> tuple[dict, dict, dict]: repository.get_commits( include_no_bug=True, include_backouts=True, include_ignored=True ), - desc="Processing commits", + desc="Preprocessing commits", ): commit_dict[commit["node"]] = { "node": commit["node"], @@ -47,13 +48,9 @@ def preprocess_commits_and_bugs() -> tuple[dict, dict, dict]: logger.info("Preprocessing bugs") bug_dict = {} - num_lines = sum(1 for line in open(bugzilla.BUGS_DB, "r")) - # store bugs with their bug IDs as keys - with open(bugzilla.BUGS_DB, "r") as f: - for line in tqdm(f, total=num_lines, desc="Processing bugs"): - bug = json.loads(line) - bug_dict[bug.get("id")] = bug["resolution"] + for bug in tqdm(bugzilla.get_bugs(include_invalid=True), desc="Preprocessing bugs"): + bug_dict[bug.get("id")] = bug["resolution"] return commit_dict, bug_to_commit_dict, bug_dict @@ -63,34 +60,50 @@ def filter_commits( commit_dict: dict, bug_to_commit_dict: dict, bug_dict: dict, -): +) -> Generator[Dict[str, Any], None, None]: counter = 0 commit_limit = min(commit_limit, 709458) - pbar = tqdm(total=commit_limit, desc="Filtering commits") + logger.info("Filtering commits...") for commit in repository.get_commits( include_no_bug=True, include_backouts=True, include_ignored=True ): - # add commit if it was backed out and the bug is fixed bug_info = bug_dict.get(commit["bug_id"]) counter += 1 - pbar.update(1) + + # add commit if it was backed out and the bug is fixed if commit["backedoutby"] and bug_info == "FIXED": fixing_commit = find_next_commit( - commit["bug_id"], bug_to_commit_dict, commit["node"] + commit["bug_id"], + bug_to_commit_dict, + commit["node"], + commit["backedoutby"], ) - # if fixing commit could not be found or is another backing out commit, do not add it to dataset - if ( - fixing_commit["node"] == commit["backedoutby"] - or fixing_commit["backsout"] - ): + # if fixing commit could not be found, do not add to the dataset + # instead, will log and add to separate file + if not fixing_commit: + yield { + "fix_found": False, + "bug_id": commit["bug_id"], + "inducing_commit": { + "node": commit["node"], + "pushdate": commit["pushdate"], + "desc": commit["desc"], + }, + "backout_commit": { + "node": commit["backedoutby"], + "pushdate": commit_dict[commit["backedoutby"]]["pushdate"], + "desc": commit_dict[commit["backedoutby"]]["desc"], + }, + } continue - # add the hashes of the bug-inducing commit, the back out commit, and the fixing commit + # generate the hashes of the bug-inducing commit, the backout commit, and the fixing commit # include metadata such as push date and description for further context yield { + "fix_found": True, "bug_id": commit["bug_id"], "inducing_commit": { "node": commit["node"], @@ -112,41 +125,76 @@ def filter_commits( if counter >= commit_limit: break - pbar.close() +def find_next_commit( + bug_id: int, bug_to_commit_dict: dict, inducing_node: str, backout_node: str +) -> Dict: + backout_commit_found = False + fixing_commit = None -def find_next_commit(bug_id: int, bug_to_commit_dict: dict, inducing_node: str) -> dict: - inducing_commit_found = False for commit in bug_to_commit_dict[bug_id]: - # if the inducing commit has been found, find next commit that has not been backed out - if inducing_commit_found: - if len(commit["backedoutby"]) == 0: - return commit - - if commit["node"] == inducing_node: - inducing_commit_found = True + # if the backout commit is found, find the next commit that isn't backed out by any other commit + if backout_commit_found: + if not commit["backedoutby"]: + fixing_commit = commit + break + + if commit["node"] == backout_node: + backout_commit_found = True + + if ( + not fixing_commit + or fixing_commit["node"] == inducing_node + or fixing_commit["node"] == backout_node + ): + return {} - return commit + return fixing_commit -def save_dataset(directory_path: str, filename: str, data_generator): +def save_datasets( + directory_path: str, + dataset_filename: str, + no_fix_commit_filename: str, + data_generator, +) -> None: if not os.path.exists(directory_path): os.makedirs(directory_path) logger.info(f"Directory {directory_path} created") - file_path = os.path.join(directory_path, filename) - with open(file_path, "w") as file: - file.write("[\n") - first = True - for item in data_generator: - if not first: - file.write(",\n") - json_data = json.dumps(item, indent=4) - file.write(json_data) - first = False - file.write("\n]") + dataset_filepath = os.path.join(directory_path, dataset_filename) + no_fix_commit_filepath = os.path.join(directory_path, no_fix_commit_filename) + + with open(dataset_filepath, "w") as file1, open( + no_fix_commit_filepath, "w" + ) as file2: + file1.write("[\n") + first1 = True - logger.info(f"Data successfully saved to {file_path}") + file2.write("[\n") + first2 = True + + for item in data_generator: + if item["fix_found"]: + item.pop("fix_found", None) + if not first1: + file1.write(",\n") + json_data = json.dumps(item, indent=4) + file1.write(json_data) + first1 = False + else: + item.pop("fix_found", None) + if not first2: + file2.write(",\n") + json_data = json.dumps(item, indent=4) + file2.write(json_data) + first2 = False + + file1.write("\n]") + file2.write("\n]") + + logger.info(f"Dataset successfully saved to {dataset_filepath}") + logger.info(f"Commits without a fix successfully saved to {no_fix_commit_filepath}") def main(): @@ -161,9 +209,10 @@ def main(): bug_dict=bug_dict, ) - save_dataset( + save_datasets( directory_path="dataset", - filename="backout_dataset.json", + dataset_filename="backout_dataset.json", + no_fix_commit_filename="no_fix_dataset.json", data_generator=data_generator, ) From 39ab450df1fd0fe5625d5a4dec444d6290651415 Mon Sep 17 00:00:00 2001 From: Benjamin Mah Date: Wed, 8 May 2024 09:57:10 -0400 Subject: [PATCH 14/38] Added metric collection for number of fixes found, number of no fixes found, and number of commits with multiple non backed out commits following it --- scripts/backout_data_collection.py | 36 +++++++++++++++++++++++++----- 1 file changed, 30 insertions(+), 6 deletions(-) diff --git a/scripts/backout_data_collection.py b/scripts/backout_data_collection.py index de6a1ee284..d25977fa1a 100644 --- a/scripts/backout_data_collection.py +++ b/scripts/backout_data_collection.py @@ -63,6 +63,7 @@ def filter_commits( ) -> Generator[Dict[str, Any], None, None]: counter = 0 commit_limit = min(commit_limit, 709458) + logger.info("Filtering commits...") for commit in repository.get_commits( @@ -74,7 +75,7 @@ def filter_commits( # add commit if it was backed out and the bug is fixed if commit["backedoutby"] and bug_info == "FIXED": - fixing_commit = find_next_commit( + fixing_commit, non_backed_out_commits = find_next_commit( commit["bug_id"], bug_to_commit_dict, commit["node"], @@ -85,6 +86,7 @@ def filter_commits( # instead, will log and add to separate file if not fixing_commit: yield { + "non_backed_out_commits": non_backed_out_commits, "fix_found": False, "bug_id": commit["bug_id"], "inducing_commit": { @@ -103,6 +105,7 @@ def filter_commits( # generate the hashes of the bug-inducing commit, the backout commit, and the fixing commit # include metadata such as push date and description for further context yield { + "non_backed_out_commits": non_backed_out_commits, "fix_found": True, "bug_id": commit["bug_id"], "inducing_commit": { @@ -128,16 +131,20 @@ def filter_commits( def find_next_commit( bug_id: int, bug_to_commit_dict: dict, inducing_node: str, backout_node: str -) -> Dict: +) -> Tuple[Dict, int]: backout_commit_found = False fixing_commit = None + non_backed_out_counter = 0 + for commit in bug_to_commit_dict[bug_id]: # if the backout commit is found, find the next commit that isn't backed out by any other commit if backout_commit_found: - if not commit["backedoutby"]: + if not commit["backedoutby"] and not fixing_commit: fixing_commit = commit - break + non_backed_out_counter += 1 + elif not commit["backedoutby"]: + non_backed_out_counter += 1 if commit["node"] == backout_node: backout_commit_found = True @@ -147,9 +154,9 @@ def find_next_commit( or fixing_commit["node"] == inducing_node or fixing_commit["node"] == backout_node ): - return {} + return {}, non_backed_out_counter - return fixing_commit + return fixing_commit, non_backed_out_counter def save_datasets( @@ -165,6 +172,10 @@ def save_datasets( dataset_filepath = os.path.join(directory_path, dataset_filename) no_fix_commit_filepath = os.path.join(directory_path, no_fix_commit_filename) + fix_found_counter = 0 + no_fix_found_counter = 0 + backed_out_counter = 0 + with open(dataset_filepath, "w") as file1, open( no_fix_commit_filepath, "w" ) as file2: @@ -175,6 +186,11 @@ def save_datasets( first2 = True for item in data_generator: + if item["non_backed_out_commits"] > 1: + backed_out_counter += 1 + + item.pop("non_backed_out_commits", None) + if item["fix_found"]: item.pop("fix_found", None) if not first1: @@ -182,6 +198,7 @@ def save_datasets( json_data = json.dumps(item, indent=4) file1.write(json_data) first1 = False + fix_found_counter += 1 else: item.pop("fix_found", None) if not first2: @@ -189,6 +206,7 @@ def save_datasets( json_data = json.dumps(item, indent=4) file2.write(json_data) first2 = False + no_fix_found_counter += 1 file1.write("\n]") file2.write("\n]") @@ -196,6 +214,12 @@ def save_datasets( logger.info(f"Dataset successfully saved to {dataset_filepath}") logger.info(f"Commits without a fix successfully saved to {no_fix_commit_filepath}") + logger.info(f"Number of commits with fix found saved: {fix_found_counter}") + logger.info(f"Number of commits with no fix found saved: {no_fix_found_counter}") + logger.info( + f"Number of commits with multiple non backed out commits following it: {backed_out_counter}" + ) + def main(): download_databases() From fe8114b55eeac42c126c1ab8edef370c552bfc76 Mon Sep 17 00:00:00 2001 From: Benjamin Mah Date: Wed, 8 May 2024 10:48:46 -0400 Subject: [PATCH 15/38] Added condition to only append to dataset if the number of non backed out commits is <= 2 --- scripts/backout_data_collection.py | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/scripts/backout_data_collection.py b/scripts/backout_data_collection.py index d25977fa1a..888898748d 100644 --- a/scripts/backout_data_collection.py +++ b/scripts/backout_data_collection.py @@ -24,6 +24,7 @@ def preprocess_commits_and_bugs() -> Tuple[Dict, Dict, Dict]: commit_dict = {} bug_to_commit_dict = {} + logger.info("Preprocessing commits...") # store commits with their hashes and bug IDs as keys for commit in tqdm( repository.get_commits( @@ -45,7 +46,7 @@ def preprocess_commits_and_bugs() -> Tuple[Dict, Dict, Dict]: else: bug_to_commit_dict[commit["bug_id"]].append(commit_dict[commit["node"]]) - logger.info("Preprocessing bugs") + logger.info("Preprocessing bugs...") bug_dict = {} # store bugs with their bug IDs as keys @@ -140,7 +141,11 @@ def find_next_commit( for commit in bug_to_commit_dict[bug_id]: # if the backout commit is found, find the next commit that isn't backed out by any other commit if backout_commit_found: - if not commit["backedoutby"] and not fixing_commit: + if ( + not commit["backedoutby"] + and not fixing_commit + and not commit["backsout"] + ): fixing_commit = commit non_backed_out_counter += 1 elif not commit["backedoutby"]: @@ -189,9 +194,9 @@ def save_datasets( if item["non_backed_out_commits"] > 1: backed_out_counter += 1 - item.pop("non_backed_out_commits", None) + # item.pop("non_backed_out_commits", None) - if item["fix_found"]: + if item["fix_found"] and item["non_backed_out_commits"] <= 2: item.pop("fix_found", None) if not first1: file1.write(",\n") @@ -199,7 +204,7 @@ def save_datasets( file1.write(json_data) first1 = False fix_found_counter += 1 - else: + elif not item["fix_found"]: item.pop("fix_found", None) if not first2: file2.write(",\n") From 74939f2b269084c5838072e86491a29ebaafa909 Mon Sep 17 00:00:00 2001 From: Benjamin Mah Date: Fri, 10 May 2024 15:01:10 -0400 Subject: [PATCH 16/38] Added the diff between the original commit and the fixing commit in the dataset, separated by filename and split into `added_lines` and `removed_line`. --- bugbug/repository.py | 53 +++++++++++++- scripts/backout_data_collection.py | 107 +++++++++++++++-------------- 2 files changed, 106 insertions(+), 54 deletions(-) diff --git a/bugbug/repository.py b/bugbug/repository.py index 341115b1c7..6bce578848 100644 --- a/bugbug/repository.py +++ b/bugbug/repository.py @@ -20,7 +20,7 @@ import threading from datetime import datetime from functools import lru_cache -from typing import Collection, Iterable, Iterator, NewType, Set, Union +from typing import Collection, Dict, Iterable, Iterator, List, NewType, Set, Union import hglib import lmdb @@ -1543,6 +1543,57 @@ def trigger_pull() -> None: trigger_pull() +def parse_diff(diff_output): + parsed_diff = {"added_lines": [], "removed_lines": []} + current_file = None + lines = diff_output.decode("utf-8", errors="replace").split("\n") + + for line in lines: + if line.startswith("diff"): + current_file = line.split()[-1] + elif line.startswith("+") and not line.startswith("+++"): + parsed_diff["added_lines"].append( + {"line_content": line[1:], "file": current_file} + ) + elif line.startswith("-") and not line.startswith("---"): + parsed_diff["removed_lines"].append( + {"line_content": line[1:], "file": current_file} + ) + + return parsed_diff + + +def get_diff(repo_dir: str, hash_a, hash_b) -> Dict[str, Dict[str, List[str]]]: + """Fetch the diff between two specific commits. + + Args: + repo_dir: The path to the directory of the cloned Mercurial repository. + commit_hash1: The hash of the first commit. + commit_hash2: The hash of the second commit. + + Returns: + Dictionary of the diff between the two commits, separated by filename and broken up into added_lines and deleted_lines. + """ + hg_client = hglib.open(repo_dir) + + diff_output = hg_client.diff(revs=[hash_a, hash_b]) + + parsed_diff = parse_diff(diff_output) + + file_changes: Dict[str, Dict[str, List[str]]] = {} + for change_type in ["added_lines", "removed_lines"]: + for line in parsed_diff[change_type]: + file = line["file"] + if file not in file_changes: + file_changes[file] = {"additions": [], "deletions": []} + if change_type == "added_lines": + file_changes[file]["additions"].append(line["line_content"]) + else: + file_changes[file]["deletions"].append(line["line_content"]) + + return file_changes + + if __name__ == "__main__": parser = argparse.ArgumentParser() parser.add_argument("repository_dir", help="Path to the repository", action="store") diff --git a/scripts/backout_data_collection.py b/scripts/backout_data_collection.py index 888898748d..dd23bf1e8e 100644 --- a/scripts/backout_data_collection.py +++ b/scripts/backout_data_collection.py @@ -12,6 +12,9 @@ def download_databases() -> None: + logger.info("Cloning Mercurial database...") + repository.clone(repo_dir="hg_dir") + logger.info("Downloading bugs database...") assert db.download(bugzilla.BUGS_DB) @@ -21,11 +24,8 @@ def download_databases() -> None: def preprocess_commits_and_bugs() -> Tuple[Dict, Dict, Dict]: logger.info("Preprocessing commits and bugs...") - commit_dict = {} - bug_to_commit_dict = {} + commit_dict, bug_to_commit_dict, bug_dict = {}, {}, {} - logger.info("Preprocessing commits...") - # store commits with their hashes and bug IDs as keys for commit in tqdm( repository.get_commits( include_no_bug=True, include_backouts=True, include_ignored=True @@ -46,26 +46,24 @@ def preprocess_commits_and_bugs() -> Tuple[Dict, Dict, Dict]: else: bug_to_commit_dict[commit["bug_id"]].append(commit_dict[commit["node"]]) - logger.info("Preprocessing bugs...") - bug_dict = {} - - # store bugs with their bug IDs as keys + # We only require the bug's resolution (to check if it is 'FIXED'). for bug in tqdm(bugzilla.get_bugs(include_invalid=True), desc="Preprocessing bugs"): bug_dict[bug.get("id")] = bug["resolution"] return commit_dict, bug_to_commit_dict, bug_dict -def filter_commits( +def generate_datapoints( commit_limit: int, commit_dict: dict, bug_to_commit_dict: dict, bug_dict: dict, + repo_dir: str, ) -> Generator[Dict[str, Any], None, None]: counter = 0 commit_limit = min(commit_limit, 709458) - logger.info("Filtering commits...") + logger.info("Generating datapoints...") for commit in repository.get_commits( include_no_bug=True, include_backouts=True, include_ignored=True @@ -74,40 +72,22 @@ def filter_commits( counter += 1 - # add commit if it was backed out and the bug is fixed - if commit["backedoutby"] and bug_info == "FIXED": - fixing_commit, non_backed_out_commits = find_next_commit( - commit["bug_id"], - bug_to_commit_dict, - commit["node"], - commit["backedoutby"], - ) - - # if fixing commit could not be found, do not add to the dataset - # instead, will log and add to separate file - if not fixing_commit: - yield { - "non_backed_out_commits": non_backed_out_commits, - "fix_found": False, - "bug_id": commit["bug_id"], - "inducing_commit": { - "node": commit["node"], - "pushdate": commit["pushdate"], - "desc": commit["desc"], - }, - "backout_commit": { - "node": commit["backedoutby"], - "pushdate": commit_dict[commit["backedoutby"]]["pushdate"], - "desc": commit_dict[commit["backedoutby"]]["desc"], - }, - } - continue - - # generate the hashes of the bug-inducing commit, the backout commit, and the fixing commit - # include metadata such as push date and description for further context + if not commit["backedoutby"] or bug_info != "FIXED": + continue + + # We only add the commit if it has been backed out and the bug it is for is FIXED. + fixing_commit, non_backed_out_commits = find_next_commit( + commit["bug_id"], + bug_to_commit_dict, + commit["node"], + commit["backedoutby"], + ) + + # If the fixing commit could not be found, omit from dataset. Add to a separate file for logging purposes. + if not fixing_commit: yield { "non_backed_out_commits": non_backed_out_commits, - "fix_found": True, + "fix_found": False, "bug_id": commit["bug_id"], "inducing_commit": { "node": commit["node"], @@ -119,12 +99,33 @@ def filter_commits( "pushdate": commit_dict[commit["backedoutby"]]["pushdate"], "desc": commit_dict[commit["backedoutby"]]["desc"], }, - "fixing_commit": { - "node": fixing_commit["node"], - "pushdate": fixing_commit["pushdate"], - "desc": fixing_commit["desc"], - }, } + continue + + commit_diff = repository.get_diff( + repo_dir, commit["node"], fixing_commit["node"] + ) + yield { + "non_backed_out_commits": non_backed_out_commits, + "fix_found": True, + "bug_id": commit["bug_id"], + "inducing_commit": { + "node": commit["node"], + "pushdate": commit["pushdate"], + "desc": commit["desc"], + }, + "backout_commit": { + "node": commit["backedoutby"], + "pushdate": commit_dict[commit["backedoutby"]]["pushdate"], + "desc": commit_dict[commit["backedoutby"]]["desc"], + }, + "fixing_commit": { + "node": fixing_commit["node"], + "pushdate": fixing_commit["pushdate"], + "desc": fixing_commit["desc"], + }, + "commit_diff": commit_diff, + } if counter >= commit_limit: break @@ -139,7 +140,8 @@ def find_next_commit( non_backed_out_counter = 0 for commit in bug_to_commit_dict[bug_id]: - # if the backout commit is found, find the next commit that isn't backed out by any other commit + # If the backout commit has been found in the bug's commit history, + # find the next commit that has not been backed out or backs out other commits. if backout_commit_found: if ( not commit["backedoutby"] @@ -194,9 +196,7 @@ def save_datasets( if item["non_backed_out_commits"] > 1: backed_out_counter += 1 - # item.pop("non_backed_out_commits", None) - - if item["fix_found"] and item["non_backed_out_commits"] <= 2: + if item["fix_found"] and item["non_backed_out_commits"] <= 1: item.pop("fix_found", None) if not first1: file1.write(",\n") @@ -231,11 +231,12 @@ def main(): commit_dict, bug_to_commit_dict, bug_dict = preprocess_commits_and_bugs() - data_generator = filter_commits( - commit_limit=1000000, + data_generator = generate_datapoints( + commit_limit=10000, commit_dict=commit_dict, bug_to_commit_dict=bug_to_commit_dict, bug_dict=bug_dict, + repo_dir="hg_dir", ) save_datasets( From be10d51b9c163a34216ff42ae9649a8879b11b11 Mon Sep 17 00:00:00 2001 From: Benjamin Mah Date: Fri, 10 May 2024 16:56:29 -0400 Subject: [PATCH 17/38] Removed separating by `added_lines` and `removed_lines`, storing raw diff. --- bugbug/repository.py | 48 +++++------------------------- scripts/backout_data_collection.py | 20 ++++++------- 2 files changed, 16 insertions(+), 52 deletions(-) diff --git a/bugbug/repository.py b/bugbug/repository.py index 6bce578848..884867ade5 100644 --- a/bugbug/repository.py +++ b/bugbug/repository.py @@ -20,7 +20,7 @@ import threading from datetime import datetime from functools import lru_cache -from typing import Collection, Dict, Iterable, Iterator, List, NewType, Set, Union +from typing import Collection, Iterable, Iterator, NewType, Set, Union import hglib import lmdb @@ -1543,55 +1543,21 @@ def trigger_pull() -> None: trigger_pull() -def parse_diff(diff_output): - parsed_diff = {"added_lines": [], "removed_lines": []} - current_file = None - lines = diff_output.decode("utf-8", errors="replace").split("\n") - - for line in lines: - if line.startswith("diff"): - current_file = line.split()[-1] - elif line.startswith("+") and not line.startswith("+++"): - parsed_diff["added_lines"].append( - {"line_content": line[1:], "file": current_file} - ) - elif line.startswith("-") and not line.startswith("---"): - parsed_diff["removed_lines"].append( - {"line_content": line[1:], "file": current_file} - ) - - return parsed_diff - - -def get_diff(repo_dir: str, hash_a, hash_b) -> Dict[str, Dict[str, List[str]]]: - """Fetch the diff between two specific commits. +def get_diff(repo_dir: str, hash_a: str, hash_b: str) -> str: + """Fetch and parse the diff between two specific commits. Args: repo_dir: The path to the directory of the cloned Mercurial repository. - commit_hash1: The hash of the first commit. - commit_hash2: The hash of the second commit. + hash_a: The hash of the first commit. + hash_b: The hash of the second commit. Returns: - Dictionary of the diff between the two commits, separated by filename and broken up into added_lines and deleted_lines. + A structured and readable diff between the two commits. """ hg_client = hglib.open(repo_dir) - diff_output = hg_client.diff(revs=[hash_a, hash_b]) - parsed_diff = parse_diff(diff_output) - - file_changes: Dict[str, Dict[str, List[str]]] = {} - for change_type in ["added_lines", "removed_lines"]: - for line in parsed_diff[change_type]: - file = line["file"] - if file not in file_changes: - file_changes[file] = {"additions": [], "deletions": []} - if change_type == "added_lines": - file_changes[file]["additions"].append(line["line_content"]) - else: - file_changes[file]["deletions"].append(line["line_content"]) - - return file_changes + return str(diff_output) if __name__ == "__main__": diff --git a/scripts/backout_data_collection.py b/scripts/backout_data_collection.py index dd23bf1e8e..4fd6eb8b58 100644 --- a/scripts/backout_data_collection.py +++ b/scripts/backout_data_collection.py @@ -3,8 +3,6 @@ import os from typing import Any, Dict, Generator, Tuple -from tqdm import tqdm - from bugbug import bugzilla, db, repository logging.basicConfig(level=logging.INFO) @@ -26,11 +24,8 @@ def preprocess_commits_and_bugs() -> Tuple[Dict, Dict, Dict]: logger.info("Preprocessing commits and bugs...") commit_dict, bug_to_commit_dict, bug_dict = {}, {}, {} - for commit in tqdm( - repository.get_commits( - include_no_bug=True, include_backouts=True, include_ignored=True - ), - desc="Preprocessing commits", + for commit in repository.get_commits( + include_no_bug=True, include_backouts=True, include_ignored=True ): commit_dict[commit["node"]] = { "node": commit["node"], @@ -41,13 +36,14 @@ def preprocess_commits_and_bugs() -> Tuple[Dict, Dict, Dict]: "backsout": commit["backsout"], } - if commit_dict[commit["node"]]["bug_id"] not in bug_to_commit_dict: - bug_to_commit_dict[commit["bug_id"]] = [commit_dict[commit["node"]]] + bug_id = commit["bug_id"] + if bug_id not in bug_to_commit_dict: + bug_to_commit_dict[bug_id] = [commit_dict[commit["node"]]] else: - bug_to_commit_dict[commit["bug_id"]].append(commit_dict[commit["node"]]) + bug_to_commit_dict[bug_id].append(commit_dict[commit["node"]]) # We only require the bug's resolution (to check if it is 'FIXED'). - for bug in tqdm(bugzilla.get_bugs(include_invalid=True), desc="Preprocessing bugs"): + for bug in bugzilla.get_bugs(include_invalid=True): bug_dict[bug.get("id")] = bug["resolution"] return commit_dict, bug_to_commit_dict, bug_dict @@ -105,6 +101,7 @@ def generate_datapoints( commit_diff = repository.get_diff( repo_dir, commit["node"], fixing_commit["node"] ) + yield { "non_backed_out_commits": non_backed_out_commits, "fix_found": True, @@ -192,6 +189,7 @@ def save_datasets( file2.write("[\n") first2 = True + logger.info("Populating dataset...") for item in data_generator: if item["non_backed_out_commits"] > 1: backed_out_counter += 1 From 3a406efbef5da153e79f80aaf402804c463a3916 Mon Sep 17 00:00:00 2001 From: Benjamin Mah Date: Mon, 13 May 2024 11:13:14 -0400 Subject: [PATCH 18/38] Added threshold for number of changes and separated diffs by file. --- bugbug/repository.py | 54 ++++++++++++++++++++++++++++-- scripts/backout_data_collection.py | 10 ++++-- 2 files changed, 59 insertions(+), 5 deletions(-) diff --git a/bugbug/repository.py b/bugbug/repository.py index 884867ade5..c0d6781b6e 100644 --- a/bugbug/repository.py +++ b/bugbug/repository.py @@ -20,7 +20,17 @@ import threading from datetime import datetime from functools import lru_cache -from typing import Collection, Iterable, Iterator, NewType, Set, Union +from typing import ( + Collection, + Dict, + Iterable, + Iterator, + List, + NewType, + Set, + Tuple, + Union, +) import hglib import lmdb @@ -1543,7 +1553,45 @@ def trigger_pull() -> None: trigger_pull() -def get_diff(repo_dir: str, hash_a: str, hash_b: str) -> str: +def parse_diff(diff: bytes) -> Tuple[Dict[str, Dict[str, List[str]]], int]: + """Parse the raw diff bytes into a dictionary, grouped by file, and calculate total number of changes. + + Args: + diff: The byte output from hglib's diff command. + + Returns: + A tuple containing the dictionary with file paths as keys and two lists of changes, and the total number of changes. + """ + diff_text = diff.decode("utf-8", errors="replace") + files = {} + current_file = None + additions: List[str] = [] + removals: List[str] = [] + total_changes = 0 + + diff_lines = diff_text.split("\n") + for line in diff_lines: + if line.startswith("diff --git"): + if current_file is not None: + files[current_file] = {"additions": additions, "removals": removals} + total_changes += len(additions) + len(removals) + current_file = line.split()[-1][2:] # Parse the file path + additions, removals = [], [] + elif line.startswith("+") and not line.startswith("+++"): + additions.append(line[1:]) + elif line.startswith("-") and not line.startswith("---"): + removals.append(line[1:]) + + if current_file is not None: + files[current_file] = {"additions": additions, "removals": removals} + total_changes += len(additions) + len(removals) + + return files, total_changes + + +def get_diff( + repo_dir: str, hash_a: str, hash_b: str +) -> Tuple[Dict[str, Dict[str, List[str]]], int]: """Fetch and parse the diff between two specific commits. Args: @@ -1557,7 +1605,7 @@ def get_diff(repo_dir: str, hash_a: str, hash_b: str) -> str: hg_client = hglib.open(repo_dir) diff_output = hg_client.diff(revs=[hash_a, hash_b]) - return str(diff_output) + return parse_diff(diff_output) if __name__ == "__main__": diff --git a/scripts/backout_data_collection.py b/scripts/backout_data_collection.py index 4fd6eb8b58..f8dbc38e43 100644 --- a/scripts/backout_data_collection.py +++ b/scripts/backout_data_collection.py @@ -55,6 +55,7 @@ def generate_datapoints( bug_to_commit_dict: dict, bug_dict: dict, repo_dir: str, + change_threshold: int = 100, ) -> Generator[Dict[str, Any], None, None]: counter = 0 commit_limit = min(commit_limit, 709458) @@ -98,10 +99,13 @@ def generate_datapoints( } continue - commit_diff = repository.get_diff( + commit_diff, num_changes = repository.get_diff( repo_dir, commit["node"], fixing_commit["node"] ) + if num_changes > change_threshold: + continue + yield { "non_backed_out_commits": non_backed_out_commits, "fix_found": True, @@ -121,6 +125,7 @@ def generate_datapoints( "pushdate": fixing_commit["pushdate"], "desc": fixing_commit["desc"], }, + "num_changes": num_changes, "commit_diff": commit_diff, } @@ -230,11 +235,12 @@ def main(): commit_dict, bug_to_commit_dict, bug_dict = preprocess_commits_and_bugs() data_generator = generate_datapoints( - commit_limit=10000, + commit_limit=50000, commit_dict=commit_dict, bug_to_commit_dict=bug_to_commit_dict, bug_dict=bug_dict, repo_dir="hg_dir", + change_threshold=100, ) save_datasets( From bc23a22bc0ce56828460a0429862c7f87f139ab8 Mon Sep 17 00:00:00 2001 From: Benjamin Mah Date: Tue, 14 May 2024 16:51:03 -0400 Subject: [PATCH 19/38] Added support for hglib grafting from `repository.py` --- scripts/backout_data_collection.py | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/scripts/backout_data_collection.py b/scripts/backout_data_collection.py index f8dbc38e43..b2a7953060 100644 --- a/scripts/backout_data_collection.py +++ b/scripts/backout_data_collection.py @@ -3,6 +3,8 @@ import os from typing import Any, Dict, Generator, Tuple +from tqdm import tqdm + from bugbug import bugzilla, db, repository logging.basicConfig(level=logging.INFO) @@ -62,8 +64,10 @@ def generate_datapoints( logger.info("Generating datapoints...") - for commit in repository.get_commits( - include_no_bug=True, include_backouts=True, include_ignored=True + for commit in tqdm( + repository.get_commits( + include_no_bug=True, include_backouts=True, include_ignored=True + ) ): bug_info = bug_dict.get(commit["bug_id"]) @@ -103,7 +107,7 @@ def generate_datapoints( repo_dir, commit["node"], fixing_commit["node"] ) - if num_changes > change_threshold: + if num_changes > change_threshold or num_changes == -1: continue yield { @@ -235,12 +239,12 @@ def main(): commit_dict, bug_to_commit_dict, bug_dict = preprocess_commits_and_bugs() data_generator = generate_datapoints( - commit_limit=50000, + commit_limit=100000, commit_dict=commit_dict, bug_to_commit_dict=bug_to_commit_dict, bug_dict=bug_dict, repo_dir="hg_dir", - change_threshold=100, + change_threshold=1000000, ) save_datasets( @@ -253,3 +257,5 @@ def main(): if __name__ == "__main__": main() + # test, test2 = repository.get_diff("hg_dir", "e63a23edb90c92f0cd591e0507906f14978a1f4f", "44853b2a5fc227fe6cbac4e89ab5d44db14ee81e") + # print(test2) From 60583050675f806793b726e6d4848e7cf28f1f4e Mon Sep 17 00:00:00 2001 From: Benjamin Mah Date: Tue, 14 May 2024 16:55:27 -0400 Subject: [PATCH 20/38] Added grafting support to apply original commit to parent commit of the fix commit to extract the exact fix. --- bugbug/repository.py | 73 ++++++++++++++++++++++++++++++++++++++------ 1 file changed, 63 insertions(+), 10 deletions(-) diff --git a/bugbug/repository.py b/bugbug/repository.py index c0d6781b6e..4f1aa49a8a 100644 --- a/bugbug/repository.py +++ b/bugbug/repository.py @@ -1575,7 +1575,7 @@ def parse_diff(diff: bytes) -> Tuple[Dict[str, Dict[str, List[str]]], int]: if current_file is not None: files[current_file] = {"additions": additions, "removals": removals} total_changes += len(additions) + len(removals) - current_file = line.split()[-1][2:] # Parse the file path + current_file = line.split()[-1][2:] additions, removals = [], [] elif line.startswith("+") and not line.startswith("+++"): additions.append(line[1:]) @@ -1590,22 +1590,75 @@ def parse_diff(diff: bytes) -> Tuple[Dict[str, Dict[str, List[str]]], int]: def get_diff( - repo_dir: str, hash_a: str, hash_b: str + repo_path, original_hash, fix_hash ) -> Tuple[Dict[str, Dict[str, List[str]]], int]: - """Fetch and parse the diff between two specific commits. + client = hglib.open(repo_path) + + current_rev = client.identify(id=True) + + try: + client.rawcommand([b"shelve"]) + except Exception: + pass + + parents = client.parents(rev=fix_hash) + parent_of_fix = parents[0][1] + client.update(rev=parent_of_fix, clean=True) + + print(f"OG HASH: {original_hash}, FIX HASH: {fix_hash}") + graft_result = graft( + client, revs=[original_hash], no_commit=True, force=True, c=False + ) + + if not graft_result: + return {}, -1 + + final_diff = client.diff( + revs=[fix_hash], ignoreallspace=True, ignorespacechange=True + ) + + client.update(rev=current_rev, clean=True) + + return parse_diff(final_diff) + + +global counter +counter = 0 + + +def graft(client, revs, no_commit=False, force=False, c=False) -> bool: + """Graft changesets specified by revs into the current repository state. Args: - repo_dir: The path to the directory of the cloned Mercurial repository. - hash_a: The hash of the first commit. - hash_b: The hash of the second commit. + client: The hglib client. + revs: A list of the hashes of the commits to be applied to the current repository state. + no_commit: If True, does not commit and just applies changes in working directory. + force: If True, forces the grafts even if the revs are ancestors of the current repository state. + c: If True, resumes interrupted grafts. Returns: - A structured and readable diff between the two commits. + Boolean of graft operation result (True for success, False for failure). """ - hg_client = hglib.open(repo_dir) - diff_output = hg_client.diff(revs=[hash_a, hash_b]) + global counter + counter += 1 + print(f"COUNTER: {counter}") + args = hglib.util.cmdbuilder( + str.encode("graft"), r=revs, no_commit=no_commit, f=force, c=c + ) + + print(f"ARGS: {args}") + + eh = hglib.util.reterrorhandler(args) + + client.rawcommand(args, eh=eh, prompt=auto_resolve_conflict_prompt) + + return True + - return parse_diff(diff_output) +def auto_resolve_conflict_prompt(max_bytes, current_output): + if b"was deleted in" in current_output: + return b"c\n" # Return 'c' to use the changed version + return b"\n" # Default to doing nothing, just proceed if __name__ == "__main__": From e666c2e8dae589ad13543916f3ffe57094b39489 Mon Sep 17 00:00:00 2001 From: Benjamin Mah Date: Wed, 15 May 2024 11:14:41 -0400 Subject: [PATCH 21/38] Cleaned up code --- bugbug/repository.py | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/bugbug/repository.py b/bugbug/repository.py index 4f1aa49a8a..f995501371 100644 --- a/bugbug/repository.py +++ b/bugbug/repository.py @@ -1605,7 +1605,6 @@ def get_diff( parent_of_fix = parents[0][1] client.update(rev=parent_of_fix, clean=True) - print(f"OG HASH: {original_hash}, FIX HASH: {fix_hash}") graft_result = graft( client, revs=[original_hash], no_commit=True, force=True, c=False ) @@ -1622,10 +1621,6 @@ def get_diff( return parse_diff(final_diff) -global counter -counter = 0 - - def graft(client, revs, no_commit=False, force=False, c=False) -> bool: """Graft changesets specified by revs into the current repository state. @@ -1639,18 +1634,16 @@ def graft(client, revs, no_commit=False, force=False, c=False) -> bool: Returns: Boolean of graft operation result (True for success, False for failure). """ - global counter - counter += 1 - print(f"COUNTER: {counter}") args = hglib.util.cmdbuilder( str.encode("graft"), r=revs, no_commit=no_commit, f=force, c=c ) - print(f"ARGS: {args}") - eh = hglib.util.reterrorhandler(args) - client.rawcommand(args, eh=eh, prompt=auto_resolve_conflict_prompt) + try: + client.rawcommand(args, eh=eh, prompt=auto_resolve_conflict_prompt) + except Exception: + return False return True From 40bbe1be6fac4265b9f36982172cd1d8ceece499 Mon Sep 17 00:00:00 2001 From: Benjamin Mah Date: Wed, 15 May 2024 11:15:59 -0400 Subject: [PATCH 22/38] Removed storing bugs without fixes, limited bugs to be within the last 2 years. Added batch file writing to reduce memory load. --- scripts/backout_data_collection.py | 108 +++++++++++------------------ 1 file changed, 41 insertions(+), 67 deletions(-) diff --git a/scripts/backout_data_collection.py b/scripts/backout_data_collection.py index b2a7953060..01ad4562cb 100644 --- a/scripts/backout_data_collection.py +++ b/scripts/backout_data_collection.py @@ -1,6 +1,7 @@ import json import logging import os +from datetime import datetime, timedelta from typing import Any, Dict, Generator, Tuple from tqdm import tqdm @@ -69,9 +70,14 @@ def generate_datapoints( include_no_bug=True, include_backouts=True, include_ignored=True ) ): + counter += 1 + bug_info = bug_dict.get(commit["bug_id"]) - counter += 1 + pushdate = datetime.strptime(commit["pushdate"], "%Y-%m-%d %H:%M:%S") + + if (datetime.now() - pushdate) > timedelta(days=730): + continue if not commit["backedoutby"] or bug_info != "FIXED": continue @@ -84,30 +90,14 @@ def generate_datapoints( commit["backedoutby"], ) - # If the fixing commit could not be found, omit from dataset. Add to a separate file for logging purposes. - if not fixing_commit: - yield { - "non_backed_out_commits": non_backed_out_commits, - "fix_found": False, - "bug_id": commit["bug_id"], - "inducing_commit": { - "node": commit["node"], - "pushdate": commit["pushdate"], - "desc": commit["desc"], - }, - "backout_commit": { - "node": commit["backedoutby"], - "pushdate": commit_dict[commit["backedoutby"]]["pushdate"], - "desc": commit_dict[commit["backedoutby"]]["desc"], - }, - } + if not fixing_commit or non_backed_out_commits > 1: continue commit_diff, num_changes = repository.get_diff( repo_dir, commit["node"], fixing_commit["node"] ) - if num_changes > change_threshold or num_changes == -1: + if num_changes > change_threshold or num_changes < 0: continue yield { @@ -173,64 +163,51 @@ def find_next_commit( def save_datasets( - directory_path: str, - dataset_filename: str, - no_fix_commit_filename: str, - data_generator, + directory_path: str, dataset_filename: str, data_generator, batch_size: int = 10 ) -> None: if not os.path.exists(directory_path): os.makedirs(directory_path) logger.info(f"Directory {directory_path} created") dataset_filepath = os.path.join(directory_path, dataset_filename) - no_fix_commit_filepath = os.path.join(directory_path, no_fix_commit_filename) fix_found_counter = 0 - no_fix_found_counter = 0 - backed_out_counter = 0 - - with open(dataset_filepath, "w") as file1, open( - no_fix_commit_filepath, "w" - ) as file2: - file1.write("[\n") - first1 = True + fix_batch = [] - file2.write("[\n") - first2 = True + with open(dataset_filepath, "w") as file: + file.write("[\n") + first = True logger.info("Populating dataset...") for item in data_generator: - if item["non_backed_out_commits"] > 1: - backed_out_counter += 1 - - if item["fix_found"] and item["non_backed_out_commits"] <= 1: - item.pop("fix_found", None) - if not first1: - file1.write(",\n") - json_data = json.dumps(item, indent=4) - file1.write(json_data) - first1 = False - fix_found_counter += 1 - elif not item["fix_found"]: - item.pop("fix_found", None) - if not first2: - file2.write(",\n") - json_data = json.dumps(item, indent=4) - file2.write(json_data) - first2 = False - no_fix_found_counter += 1 - - file1.write("\n]") - file2.write("\n]") + item.pop("fix_found", None) + fix_batch.append(item) + fix_found_counter += 1 + + if len(fix_batch) >= batch_size: + if not first: + file.write(",\n") + else: + first = False + + json_data = ",\n".join(json.dumps(i, indent=4) for i in fix_batch) + file.write(json_data) + file.flush() + os.fsync(file.fileno()) + fix_batch = [] + + if fix_batch: + if not first: + file.write(",\n") + json_data = ",\n".join(json.dumps(i, indent=4) for i in fix_batch) + file.write(json_data) + file.flush() + os.fsync(file.fileno()) + + file.write("\n]") logger.info(f"Dataset successfully saved to {dataset_filepath}") - logger.info(f"Commits without a fix successfully saved to {no_fix_commit_filepath}") - logger.info(f"Number of commits with fix found saved: {fix_found_counter}") - logger.info(f"Number of commits with no fix found saved: {no_fix_found_counter}") - logger.info( - f"Number of commits with multiple non backed out commits following it: {backed_out_counter}" - ) def main(): @@ -239,23 +216,20 @@ def main(): commit_dict, bug_to_commit_dict, bug_dict = preprocess_commits_and_bugs() data_generator = generate_datapoints( - commit_limit=100000, + commit_limit=1000000, commit_dict=commit_dict, bug_to_commit_dict=bug_to_commit_dict, bug_dict=bug_dict, repo_dir="hg_dir", - change_threshold=1000000, + change_threshold=1000, ) save_datasets( directory_path="dataset", dataset_filename="backout_dataset.json", - no_fix_commit_filename="no_fix_dataset.json", data_generator=data_generator, ) if __name__ == "__main__": main() - # test, test2 = repository.get_diff("hg_dir", "e63a23edb90c92f0cd591e0507906f14978a1f4f", "44853b2a5fc227fe6cbac4e89ab5d44db14ee81e") - # print(test2) From a4c5bff8d180c855c66e9dc1f638b1c8b95f148e Mon Sep 17 00:00:00 2001 From: Benjamin Mah Date: Wed, 15 May 2024 11:54:57 -0400 Subject: [PATCH 23/38] Reverted to storing the raw diff as a utf-8 encoded string. --- bugbug/repository.py | 47 ++---------------------------- scripts/backout_data_collection.py | 12 ++++---- 2 files changed, 9 insertions(+), 50 deletions(-) diff --git a/bugbug/repository.py b/bugbug/repository.py index f995501371..274ed38447 100644 --- a/bugbug/repository.py +++ b/bugbug/repository.py @@ -22,13 +22,10 @@ from functools import lru_cache from typing import ( Collection, - Dict, Iterable, Iterator, - List, NewType, Set, - Tuple, Union, ) @@ -1553,45 +1550,7 @@ def trigger_pull() -> None: trigger_pull() -def parse_diff(diff: bytes) -> Tuple[Dict[str, Dict[str, List[str]]], int]: - """Parse the raw diff bytes into a dictionary, grouped by file, and calculate total number of changes. - - Args: - diff: The byte output from hglib's diff command. - - Returns: - A tuple containing the dictionary with file paths as keys and two lists of changes, and the total number of changes. - """ - diff_text = diff.decode("utf-8", errors="replace") - files = {} - current_file = None - additions: List[str] = [] - removals: List[str] = [] - total_changes = 0 - - diff_lines = diff_text.split("\n") - for line in diff_lines: - if line.startswith("diff --git"): - if current_file is not None: - files[current_file] = {"additions": additions, "removals": removals} - total_changes += len(additions) + len(removals) - current_file = line.split()[-1][2:] - additions, removals = [], [] - elif line.startswith("+") and not line.startswith("+++"): - additions.append(line[1:]) - elif line.startswith("-") and not line.startswith("---"): - removals.append(line[1:]) - - if current_file is not None: - files[current_file] = {"additions": additions, "removals": removals} - total_changes += len(additions) + len(removals) - - return files, total_changes - - -def get_diff( - repo_path, original_hash, fix_hash -) -> Tuple[Dict[str, Dict[str, List[str]]], int]: +def get_diff(repo_path, original_hash, fix_hash) -> bytes: client = hglib.open(repo_path) current_rev = client.identify(id=True) @@ -1610,7 +1569,7 @@ def get_diff( ) if not graft_result: - return {}, -1 + return b"" final_diff = client.diff( revs=[fix_hash], ignoreallspace=True, ignorespacechange=True @@ -1618,7 +1577,7 @@ def get_diff( client.update(rev=current_rev, clean=True) - return parse_diff(final_diff) + return final_diff def graft(client, revs, no_commit=False, force=False, c=False) -> bool: diff --git a/scripts/backout_data_collection.py b/scripts/backout_data_collection.py index 01ad4562cb..480c1edbd7 100644 --- a/scripts/backout_data_collection.py +++ b/scripts/backout_data_collection.py @@ -58,7 +58,6 @@ def generate_datapoints( bug_to_commit_dict: dict, bug_dict: dict, repo_dir: str, - change_threshold: int = 100, ) -> Generator[Dict[str, Any], None, None]: counter = 0 commit_limit = min(commit_limit, 709458) @@ -93,13 +92,15 @@ def generate_datapoints( if not fixing_commit or non_backed_out_commits > 1: continue - commit_diff, num_changes = repository.get_diff( + commit_diff = repository.get_diff( repo_dir, commit["node"], fixing_commit["node"] ) - if num_changes > change_threshold or num_changes < 0: + if not commit_diff: continue + commit_diff_encoded = commit_diff.decode("utf-8") + yield { "non_backed_out_commits": non_backed_out_commits, "fix_found": True, @@ -119,8 +120,7 @@ def generate_datapoints( "pushdate": fixing_commit["pushdate"], "desc": fixing_commit["desc"], }, - "num_changes": num_changes, - "commit_diff": commit_diff, + "commit_diff": commit_diff_encoded, } if counter >= commit_limit: @@ -221,13 +221,13 @@ def main(): bug_to_commit_dict=bug_to_commit_dict, bug_dict=bug_dict, repo_dir="hg_dir", - change_threshold=1000, ) save_datasets( directory_path="dataset", dataset_filename="backout_dataset.json", data_generator=data_generator, + batch_size=10, ) From f133041bf1a445ca81f32154023fed61cb613657 Mon Sep 17 00:00:00 2001 From: Benjamin Mah Date: Tue, 21 May 2024 15:26:39 -0400 Subject: [PATCH 24/38] Removed unnecessary fields when populating dataset, extract correct diff from fix commit --- bugbug/repository.py | 2 +- scripts/backout_data_collection.py | 21 ++++----------------- 2 files changed, 5 insertions(+), 18 deletions(-) diff --git a/bugbug/repository.py b/bugbug/repository.py index 274ed38447..dbe1d6d157 100644 --- a/bugbug/repository.py +++ b/bugbug/repository.py @@ -1572,7 +1572,7 @@ def get_diff(repo_path, original_hash, fix_hash) -> bytes: return b"" final_diff = client.diff( - revs=[fix_hash], ignoreallspace=True, ignorespacechange=True + revs=[fix_hash], ignoreallspace=True, ignorespacechange=True, reverse=True ) client.update(rev=current_rev, clean=True) diff --git a/scripts/backout_data_collection.py b/scripts/backout_data_collection.py index 480c1edbd7..769ddadc54 100644 --- a/scripts/backout_data_collection.py +++ b/scripts/backout_data_collection.py @@ -33,7 +33,6 @@ def preprocess_commits_and_bugs() -> Tuple[Dict, Dict, Dict]: commit_dict[commit["node"]] = { "node": commit["node"], "bug_id": commit["bug_id"], - "desc": commit["desc"], "pushdate": commit["pushdate"], "backedoutby": commit["backedoutby"], "backsout": commit["backsout"], @@ -105,21 +104,9 @@ def generate_datapoints( "non_backed_out_commits": non_backed_out_commits, "fix_found": True, "bug_id": commit["bug_id"], - "inducing_commit": { - "node": commit["node"], - "pushdate": commit["pushdate"], - "desc": commit["desc"], - }, - "backout_commit": { - "node": commit["backedoutby"], - "pushdate": commit_dict[commit["backedoutby"]]["pushdate"], - "desc": commit_dict[commit["backedoutby"]]["desc"], - }, - "fixing_commit": { - "node": fixing_commit["node"], - "pushdate": fixing_commit["pushdate"], - "desc": fixing_commit["desc"], - }, + "inducing_commit": commit["node"], + "backout_commit": commit["backedoutby"], + "fixing_commit": fixing_commit["node"], "commit_diff": commit_diff_encoded, } @@ -227,7 +214,7 @@ def main(): directory_path="dataset", dataset_filename="backout_dataset.json", data_generator=data_generator, - batch_size=10, + batch_size=1, ) From d202b0b4b6dbca2b3d522ec8ac31178bd5aa60a5 Mon Sep 17 00:00:00 2001 From: Benjamin Mah Date: Wed, 22 May 2024 10:24:41 -0400 Subject: [PATCH 25/38] Fixed type hinting --- scripts/backout_data_collection.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/backout_data_collection.py b/scripts/backout_data_collection.py index 769ddadc54..9754adcc21 100644 --- a/scripts/backout_data_collection.py +++ b/scripts/backout_data_collection.py @@ -1,8 +1,8 @@ import json import logging import os +from collections.abc import Generator from datetime import datetime, timedelta -from typing import Any, Dict, Generator, Tuple from tqdm import tqdm @@ -23,7 +23,7 @@ def download_databases() -> None: assert db.download(repository.COMMITS_DB, support_files_too=True) -def preprocess_commits_and_bugs() -> Tuple[Dict, Dict, Dict]: +def preprocess_commits_and_bugs() -> tuple[dict, dict, dict]: logger.info("Preprocessing commits and bugs...") commit_dict, bug_to_commit_dict, bug_dict = {}, {}, {} @@ -57,7 +57,7 @@ def generate_datapoints( bug_to_commit_dict: dict, bug_dict: dict, repo_dir: str, -) -> Generator[Dict[str, Any], None, None]: +) -> Generator[dict, None, None]: counter = 0 commit_limit = min(commit_limit, 709458) @@ -116,7 +116,7 @@ def generate_datapoints( def find_next_commit( bug_id: int, bug_to_commit_dict: dict, inducing_node: str, backout_node: str -) -> Tuple[Dict, int]: +) -> tuple[dict, int]: backout_commit_found = False fixing_commit = None @@ -214,7 +214,7 @@ def main(): directory_path="dataset", dataset_filename="backout_dataset.json", data_generator=data_generator, - batch_size=1, + batch_size=10, ) From 79152a381bfa04a7e3339ffafa895b6889ecd562 Mon Sep 17 00:00:00 2001 From: Benjamin Mah Date: Wed, 22 May 2024 15:12:41 -0400 Subject: [PATCH 26/38] Added `hg merge-tool` for automatically resolving conflicts when grafting --- bugbug/repository.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bugbug/repository.py b/bugbug/repository.py index dbe1d6d157..ac62ce4f62 100644 --- a/bugbug/repository.py +++ b/bugbug/repository.py @@ -1565,7 +1565,7 @@ def get_diff(repo_path, original_hash, fix_hash) -> bytes: client.update(rev=parent_of_fix, clean=True) graft_result = graft( - client, revs=[original_hash], no_commit=True, force=True, c=False + client, revs=[original_hash], no_commit=True, force=True, tool=":mergediff" ) if not graft_result: @@ -1580,7 +1580,7 @@ def get_diff(repo_path, original_hash, fix_hash) -> bytes: return final_diff -def graft(client, revs, no_commit=False, force=False, c=False) -> bool: +def graft(client, revs, no_commit=False, force=False, tool=":mergediff") -> bool: """Graft changesets specified by revs into the current repository state. Args: @@ -1594,7 +1594,7 @@ def graft(client, revs, no_commit=False, force=False, c=False) -> bool: Boolean of graft operation result (True for success, False for failure). """ args = hglib.util.cmdbuilder( - str.encode("graft"), r=revs, no_commit=no_commit, f=force, c=c + str.encode("graft"), r=revs, no_commit=no_commit, f=force, tool=tool ) eh = hglib.util.reterrorhandler(args) From 474019652b3565e29125e145a98798a937a724b1 Mon Sep 17 00:00:00 2001 From: Benjamin Mah Date: Wed, 22 May 2024 16:41:05 -0400 Subject: [PATCH 27/38] Fixed docstring for function `graft` --- bugbug/repository.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bugbug/repository.py b/bugbug/repository.py index ac62ce4f62..b2cb3b15b9 100644 --- a/bugbug/repository.py +++ b/bugbug/repository.py @@ -1588,7 +1588,7 @@ def graft(client, revs, no_commit=False, force=False, tool=":mergediff") -> bool revs: A list of the hashes of the commits to be applied to the current repository state. no_commit: If True, does not commit and just applies changes in working directory. force: If True, forces the grafts even if the revs are ancestors of the current repository state. - c: If True, resumes interrupted grafts. + tool: A string representing a merge tool (see `hg help merge-tools`). Returns: Boolean of graft operation result (True for success, False for failure). From 38d6cf80e45203287010840e11e0a36bd3de423e Mon Sep 17 00:00:00 2001 From: Benjamin Mah Date: Thu, 23 May 2024 13:44:34 -0400 Subject: [PATCH 28/38] Added check to omit any diff containing conflicts --- bugbug/repository.py | 4 ++-- scripts/backout_data_collection.py | 11 ++++++++++- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/bugbug/repository.py b/bugbug/repository.py index b2cb3b15b9..61a20e0710 100644 --- a/bugbug/repository.py +++ b/bugbug/repository.py @@ -1565,7 +1565,7 @@ def get_diff(repo_path, original_hash, fix_hash) -> bytes: client.update(rev=parent_of_fix, clean=True) graft_result = graft( - client, revs=[original_hash], no_commit=True, force=True, tool=":mergediff" + client, revs=[original_hash], no_commit=True, force=True, tool=":merge" ) if not graft_result: @@ -1580,7 +1580,7 @@ def get_diff(repo_path, original_hash, fix_hash) -> bytes: return final_diff -def graft(client, revs, no_commit=False, force=False, tool=":mergediff") -> bool: +def graft(client, revs, no_commit=False, force=False, tool=":merge") -> bool: """Graft changesets specified by revs into the current repository state. Args: diff --git a/scripts/backout_data_collection.py b/scripts/backout_data_collection.py index 9754adcc21..43151c7ea0 100644 --- a/scripts/backout_data_collection.py +++ b/scripts/backout_data_collection.py @@ -51,6 +51,12 @@ def preprocess_commits_and_bugs() -> tuple[dict, dict, dict]: return commit_dict, bug_to_commit_dict, bug_dict +def has_conflicts(diff: str) -> bool: + """Return True if the diff contains any conflict markers. Used with merge-tool ':fail'.""" + conflict_markers = ["<<<<<<<", "=======", ">>>>>>>"] + return any(marker in diff for marker in conflict_markers) + + def generate_datapoints( commit_limit: int, commit_dict: dict, @@ -100,6 +106,9 @@ def generate_datapoints( commit_diff_encoded = commit_diff.decode("utf-8") + if has_conflicts(commit_diff_encoded): + continue + yield { "non_backed_out_commits": non_backed_out_commits, "fix_found": True, @@ -214,7 +223,7 @@ def main(): directory_path="dataset", dataset_filename="backout_dataset.json", data_generator=data_generator, - batch_size=10, + batch_size=1, ) From 9fc018c32facf8ee151724f525085c0d3388e214 Mon Sep 17 00:00:00 2001 From: Benjamin Mah Date: Mon, 27 May 2024 16:44:42 -0400 Subject: [PATCH 29/38] Made code more Pythonic --- scripts/backout_data_collection.py | 29 ++++++++++++----------------- 1 file changed, 12 insertions(+), 17 deletions(-) diff --git a/scripts/backout_data_collection.py b/scripts/backout_data_collection.py index 43151c7ea0..24cd8dac57 100644 --- a/scripts/backout_data_collection.py +++ b/scripts/backout_data_collection.py @@ -25,28 +25,24 @@ def download_databases() -> None: def preprocess_commits_and_bugs() -> tuple[dict, dict, dict]: logger.info("Preprocessing commits and bugs...") - commit_dict, bug_to_commit_dict, bug_dict = {}, {}, {} + commit_dict, bug_dict = {}, {} + bug_to_commit_dict: dict[int, list] = {} for commit in repository.get_commits( include_no_bug=True, include_backouts=True, include_ignored=True ): - commit_dict[commit["node"]] = { - "node": commit["node"], - "bug_id": commit["bug_id"], - "pushdate": commit["pushdate"], - "backedoutby": commit["backedoutby"], - "backsout": commit["backsout"], + commit_data = { + key: commit[key] + for key in ["node", "bug_id", "pushdate", "backedoutby", "backsout"] } + commit_dict[commit["node"]] = commit_data - bug_id = commit["bug_id"] - if bug_id not in bug_to_commit_dict: - bug_to_commit_dict[bug_id] = [commit_dict[commit["node"]]] - else: - bug_to_commit_dict[bug_id].append(commit_dict[commit["node"]]) + bug_to_commit_dict.setdefault(commit["bug_id"], []).append(commit_data) # We only require the bug's resolution (to check if it is 'FIXED'). - for bug in bugzilla.get_bugs(include_invalid=True): - bug_dict[bug.get("id")] = bug["resolution"] + bug_dict = { + bug["id"]: bug["resolution"] for bug in bugzilla.get_bugs(include_invalid=True) + } return commit_dict, bug_to_commit_dict, bug_dict @@ -161,9 +157,8 @@ def find_next_commit( def save_datasets( directory_path: str, dataset_filename: str, data_generator, batch_size: int = 10 ) -> None: - if not os.path.exists(directory_path): - os.makedirs(directory_path) - logger.info(f"Directory {directory_path} created") + os.makedirs(directory_path, exist_ok=True) + logger.info(f"Directory {directory_path} created") dataset_filepath = os.path.join(directory_path, dataset_filename) From 846210fc435eeb8f4438b237fe813fdff71164ac Mon Sep 17 00:00:00 2001 From: Benjamin Mah Date: Mon, 3 Jun 2024 10:08:52 -0400 Subject: [PATCH 30/38] Changed standard collections to generic types --- bugbug/repository.py | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/bugbug/repository.py b/bugbug/repository.py index 61a20e0710..3eab6a49dc 100644 --- a/bugbug/repository.py +++ b/bugbug/repository.py @@ -18,16 +18,10 @@ import subprocess import sys import threading +from collections.abc import Collection, Iterable, Iterator from datetime import datetime from functools import lru_cache -from typing import ( - Collection, - Iterable, - Iterator, - NewType, - Set, - Union, -) +from typing import NewType, Union import hglib import lmdb @@ -203,7 +197,7 @@ def __init__( self.source_code_deleted = 0 self.other_deleted = 0 self.test_deleted = 0 - self.types: Set[str] = set() + self.types: set[str] = set() self.functions: dict[str, list[dict]] = {} self.seniority_author = 0.0 self.total_source_code_file_size = 0 From ae28dcffba2c5594a1f8a184c6688c2d8d35f41b Mon Sep 17 00:00:00 2001 From: Benjamin Mah Date: Mon, 3 Jun 2024 10:32:46 -0400 Subject: [PATCH 31/38] Implemented logging error when shelving changes --- bugbug/repository.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/bugbug/repository.py b/bugbug/repository.py index 3eab6a49dc..2cd731bfb8 100644 --- a/bugbug/repository.py +++ b/bugbug/repository.py @@ -1551,8 +1551,12 @@ def get_diff(repo_path, original_hash, fix_hash) -> bytes: try: client.rawcommand([b"shelve"]) - except Exception: - pass + except hglib.error.CommandError as e: + if b"nothing changed" in e.out: + logger.info(f"Nothing to shelve: {e}") + else: + logger.info(f"Error while shelving: {e}") + raise parents = client.parents(rev=fix_hash) parent_of_fix = parents[0][1] From c6f6a8f2b1ec563568dad499d1daa83e099cfd05 Mon Sep 17 00:00:00 2001 From: Benjamin Mah Date: Mon, 3 Jun 2024 10:36:23 -0400 Subject: [PATCH 32/38] Implemented logging error when grafting --- bugbug/repository.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bugbug/repository.py b/bugbug/repository.py index 2cd731bfb8..d91e4ca699 100644 --- a/bugbug/repository.py +++ b/bugbug/repository.py @@ -1599,7 +1599,8 @@ def graft(client, revs, no_commit=False, force=False, tool=":merge") -> bool: try: client.rawcommand(args, eh=eh, prompt=auto_resolve_conflict_prompt) - except Exception: + except hglib.error.CommandError as e: + logger.info(f"Error when grafting {e}") return False return True From 37c51b640aa4b5f38ab88e1fa1e4b4bd8fc525c3 Mon Sep 17 00:00:00 2001 From: Benjamin Mah Date: Mon, 3 Jun 2024 10:41:45 -0400 Subject: [PATCH 33/38] Renamed `bug_dict` and `bug_info` to `bug_resolution_map` and `bug_resolution` --- scripts/backout_data_collection.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/scripts/backout_data_collection.py b/scripts/backout_data_collection.py index 24cd8dac57..13b5d716d0 100644 --- a/scripts/backout_data_collection.py +++ b/scripts/backout_data_collection.py @@ -25,7 +25,7 @@ def download_databases() -> None: def preprocess_commits_and_bugs() -> tuple[dict, dict, dict]: logger.info("Preprocessing commits and bugs...") - commit_dict, bug_dict = {}, {} + commit_dict, bug_resolution_map = {}, {} bug_to_commit_dict: dict[int, list] = {} for commit in repository.get_commits( @@ -40,11 +40,11 @@ def preprocess_commits_and_bugs() -> tuple[dict, dict, dict]: bug_to_commit_dict.setdefault(commit["bug_id"], []).append(commit_data) # We only require the bug's resolution (to check if it is 'FIXED'). - bug_dict = { + bug_resolution_map = { bug["id"]: bug["resolution"] for bug in bugzilla.get_bugs(include_invalid=True) } - return commit_dict, bug_to_commit_dict, bug_dict + return commit_dict, bug_to_commit_dict, bug_resolution_map def has_conflicts(diff: str) -> bool: @@ -57,7 +57,7 @@ def generate_datapoints( commit_limit: int, commit_dict: dict, bug_to_commit_dict: dict, - bug_dict: dict, + bug_resolution_map: dict, repo_dir: str, ) -> Generator[dict, None, None]: counter = 0 @@ -72,14 +72,14 @@ def generate_datapoints( ): counter += 1 - bug_info = bug_dict.get(commit["bug_id"]) + bug_resolution = bug_resolution_map.get(commit["bug_id"]) pushdate = datetime.strptime(commit["pushdate"], "%Y-%m-%d %H:%M:%S") if (datetime.now() - pushdate) > timedelta(days=730): continue - if not commit["backedoutby"] or bug_info != "FIXED": + if not commit["backedoutby"] or bug_resolution != "FIXED": continue # We only add the commit if it has been backed out and the bug it is for is FIXED. @@ -204,13 +204,13 @@ def save_datasets( def main(): download_databases() - commit_dict, bug_to_commit_dict, bug_dict = preprocess_commits_and_bugs() + commit_dict, bug_to_commit_dict, bug_resolution_map = preprocess_commits_and_bugs() data_generator = generate_datapoints( commit_limit=1000000, commit_dict=commit_dict, bug_to_commit_dict=bug_to_commit_dict, - bug_dict=bug_dict, + bug_resolution_map=bug_resolution_map, repo_dir="hg_dir", ) From fad6df6b259846f3875165eed54bd7eefc8dff69 Mon Sep 17 00:00:00 2001 From: Benjamin Mah Date: Mon, 3 Jun 2024 10:47:57 -0400 Subject: [PATCH 34/38] Removed `commit_dict` --- scripts/backout_data_collection.py | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/scripts/backout_data_collection.py b/scripts/backout_data_collection.py index 13b5d716d0..3acd43106a 100644 --- a/scripts/backout_data_collection.py +++ b/scripts/backout_data_collection.py @@ -23,9 +23,9 @@ def download_databases() -> None: assert db.download(repository.COMMITS_DB, support_files_too=True) -def preprocess_commits_and_bugs() -> tuple[dict, dict, dict]: +def preprocess_commits_and_bugs() -> tuple[dict, dict]: logger.info("Preprocessing commits and bugs...") - commit_dict, bug_resolution_map = {}, {} + bug_resolution_map = {} bug_to_commit_dict: dict[int, list] = {} for commit in repository.get_commits( @@ -35,7 +35,6 @@ def preprocess_commits_and_bugs() -> tuple[dict, dict, dict]: key: commit[key] for key in ["node", "bug_id", "pushdate", "backedoutby", "backsout"] } - commit_dict[commit["node"]] = commit_data bug_to_commit_dict.setdefault(commit["bug_id"], []).append(commit_data) @@ -44,7 +43,7 @@ def preprocess_commits_and_bugs() -> tuple[dict, dict, dict]: bug["id"]: bug["resolution"] for bug in bugzilla.get_bugs(include_invalid=True) } - return commit_dict, bug_to_commit_dict, bug_resolution_map + return bug_to_commit_dict, bug_resolution_map def has_conflicts(diff: str) -> bool: @@ -55,7 +54,6 @@ def has_conflicts(diff: str) -> bool: def generate_datapoints( commit_limit: int, - commit_dict: dict, bug_to_commit_dict: dict, bug_resolution_map: dict, repo_dir: str, @@ -204,11 +202,10 @@ def save_datasets( def main(): download_databases() - commit_dict, bug_to_commit_dict, bug_resolution_map = preprocess_commits_and_bugs() + bug_to_commit_dict, bug_resolution_map = preprocess_commits_and_bugs() data_generator = generate_datapoints( commit_limit=1000000, - commit_dict=commit_dict, bug_to_commit_dict=bug_to_commit_dict, bug_resolution_map=bug_resolution_map, repo_dir="hg_dir", From fb7a17d182b9d718f50a838e6112d6447871ae80 Mon Sep 17 00:00:00 2001 From: Benjamin Mah Date: Tue, 4 Jun 2024 09:24:00 -0400 Subject: [PATCH 35/38] Changed `logger.info` to `logger.warning` when error encountered while grafting --- bugbug/repository.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bugbug/repository.py b/bugbug/repository.py index d91e4ca699..3c8fd48b43 100644 --- a/bugbug/repository.py +++ b/bugbug/repository.py @@ -1600,7 +1600,7 @@ def graft(client, revs, no_commit=False, force=False, tool=":merge") -> bool: try: client.rawcommand(args, eh=eh, prompt=auto_resolve_conflict_prompt) except hglib.error.CommandError as e: - logger.info(f"Error when grafting {e}") + logger.warning(f"Error when grafting {e}") return False return True From bfc77e43f0e13b4af29e38c3091d8b87ef78418e Mon Sep 17 00:00:00 2001 From: Benjamin Mah Date: Tue, 4 Jun 2024 09:39:27 -0400 Subject: [PATCH 36/38] Reverted importing standard collections --- bugbug/repository.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/bugbug/repository.py b/bugbug/repository.py index 3c8fd48b43..656a47f623 100644 --- a/bugbug/repository.py +++ b/bugbug/repository.py @@ -18,10 +18,9 @@ import subprocess import sys import threading -from collections.abc import Collection, Iterable, Iterator from datetime import datetime from functools import lru_cache -from typing import NewType, Union +from typing import Collection, Iterable, Iterator, NewType, Set, Union import hglib import lmdb @@ -197,7 +196,7 @@ def __init__( self.source_code_deleted = 0 self.other_deleted = 0 self.test_deleted = 0 - self.types: set[str] = set() + self.types: Set[str] = set() self.functions: dict[str, list[dict]] = {} self.seniority_author = 0.0 self.total_source_code_file_size = 0 From 66108ad83f3e2579af14ee983758cc3b5ff7fcf9 Mon Sep 17 00:00:00 2001 From: Benjamin Mah Date: Tue, 4 Jun 2024 09:40:03 -0400 Subject: [PATCH 37/38] Added raise-from when shelving --- bugbug/repository.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bugbug/repository.py b/bugbug/repository.py index 656a47f623..5574ca6b4c 100644 --- a/bugbug/repository.py +++ b/bugbug/repository.py @@ -1554,8 +1554,7 @@ def get_diff(repo_path, original_hash, fix_hash) -> bytes: if b"nothing changed" in e.out: logger.info(f"Nothing to shelve: {e}") else: - logger.info(f"Error while shelving: {e}") - raise + raise RuntimeError("Error occurred while shelving") from e parents = client.parents(rev=fix_hash) parent_of_fix = parents[0][1] From 0d83fa73a8732189cab7cad7bdbaf33df0b101e7 Mon Sep 17 00:00:00 2001 From: Benjamin Mah Date: Tue, 4 Jun 2024 09:43:29 -0400 Subject: [PATCH 38/38] Removed try-except when grafting --- bugbug/repository.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/bugbug/repository.py b/bugbug/repository.py index 5574ca6b4c..07d58c0031 100644 --- a/bugbug/repository.py +++ b/bugbug/repository.py @@ -1595,11 +1595,7 @@ def graft(client, revs, no_commit=False, force=False, tool=":merge") -> bool: eh = hglib.util.reterrorhandler(args) - try: - client.rawcommand(args, eh=eh, prompt=auto_resolve_conflict_prompt) - except hglib.error.CommandError as e: - logger.warning(f"Error when grafting {e}") - return False + client.rawcommand(args, eh=eh, prompt=auto_resolve_conflict_prompt) return True